Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 15, 2025

Note

Mend has cancelled the proposed renaming of the Renovate GitHub app being renamed to mend[bot].

This notice will be removed on 2025-10-07.


This PR contains the following updates:

Package Change Age Confidence
@payloadcms/db-mongodb (source) 3.37.0 -> 3.58.0 age confidence
@payloadcms/db-postgres (source) 3.37.0 -> 3.58.0 age confidence
@payloadcms/db-sqlite (source) 3.37.0 -> 3.58.0 age confidence
@payloadcms/email-nodemailer (source) 3.37.0 -> 3.58.0 age confidence
@payloadcms/richtext-lexical (source) 3.37.0 -> 3.58.0 age confidence
@payloadcms/storage-s3 (source) 3.37.0 -> 3.58.0 age confidence
@payloadcms/ui (source) 3.37.0 -> 3.58.0 age confidence

Release Notes

payloadcms/payload (@​payloadcms/db-mongodb)

v3.58.0

Compare Source

🚀 Features
Ecommerce plugin and template (#​8297) (ef4874b)

The Ecommerce Template and Plugin is now ready in beta, you can get started by running the Payload CPA command below

pnpx create-payload-app my-project -t ecommerce

Full docs are available on our website

Payload SDK package (#​9463) (92a5f07)

Allows querying Payload REST API in a fully type safe way. Has support for all necessary operations, including auth, type safe select, populate, joins properties and simplified file uploading. Its interface is very similar to the Local API.

import { PayloadSDK } from '@​payloadcms/sdk'
import type { Config } from './payload-types'

// Pass your config from generated types as generic
const sdk = new PayloadSDK<Config>({
  baseURL: 'https://example.com/api',
})

// Find operation
const posts = await sdk.find({
  collection: 'posts',
  draft: true,
  limit: 10,
  locale: 'en',
  page: 1,
  where: { _status: { equals: 'published' } },
})
New Cloudflare D1 SQLite adapter, R2 storage adapter and Cloudflare template (#​12537) (99043ee)

You can now deploy directly to Cloudflare using our 1-click template or click the deployment button below

Deploy to Cloudflare

🐛 Bug Fixes
  • ensure blocks filterOptions are awaited (#​13960) (41aa201)
  • sanitize collection labels to inherit defaults when only a partial config is provided (#​13944) (1752043)
  • avoid relying on Function.prototype.name to detect react components (#​13931) (4652bd0)
  • next: static live preview url corrupt after save (#​13949) (3c4f8a3)
  • plugin-multi-tenant: properly localize labels (#​13943) (2cc34d1)
  • richtext-lexical: editor re-mounting on save due to json key order not being preserved in postgres (#​13962) (6a2e814)
  • ui: query preset where field not displaying array values (#​13961) (9248fc4)
  • ui: move collection description below title in document view (#​13946) (ae34b6d)
⚙️ CI
🏡 Chores
🤝 Contributors

v3.57.0

Compare Source

🚀 Features
🐛 Bug Fixes
⚡ Performance
  • graphql: use depth 0 in auth/apiKey for graphQL requests (#​13895) (9a59562)
  • ui: use select API in RelationshipProvider to speed up load times in RelationshipCell (#​13832) (77cac30)
🛠 Refactors
📚 Documentation
⚙️ CI
  • remove v2 issue template (f39c7bf)
🏡 Chores
🤝 Contributors

v3.56.0

Compare Source

🚀 Features
🐛 Bug Fixes
  • add missed pagination property to findVersions and findGlobalVersions and handle it properly (#​13763) (a955392)
  • skip validation when trashing documents with empty required fields (#​13807) (3b13867)
  • versions created with incomplete data when using select parameter (#​13809) (faed3aa)
  • error accessing sanitizedPermissions during docAccess operation: "Cannot read properties of undefined" (#​13800) (c7795fa)
  • typo in the description of the isTemp field of query presets (#​13728) (e75bfb0)
  • fully sanitize unauthenticated client config (#​13785) (e2632c8)
  • client config context inheritance (#​13790) (dfb0021)
  • db-mongodb: support 2x and more relationship sorting (#​13819) (24ace70)
  • db-mongodb: localized arrays inside blocks with versions (#​13804) (09dec43)
  • examples: secure mt example users collection (#​13810) (9a841df)
  • live-preview: client-side live preview failed to populate localized fields (#​13794) (b34e5ea)
  • live-preview: reset cache per subscription and ignore invalid preview messages (#​13793) (b62a30a)
  • next: unnamed, unlabeled groups displayed without label in version view (#​13831) (8d3b146)
  • next: sparse block and arrays diffs were not rendered correctly (#​13829) (433c513)
  • next: exclude permissions from page response when unauthenticated (#​13796) (8113d3b)
  • next: richtext field is read-only for expired lock (#​13789) (4278e72)
  • next: login redirect crashes page (#​13786) (13af91f)
  • next: resolve filterOptions by path (#​13779) (8a7124a)
  • translations: use correct Dutch terms for "clear" and "close" (#​13748) (fce94d6)
  • ui: pass locale arg in query params for folder operations (#​13837) (c0684e3)
  • ui: correct field path in inline create drawer for auth fields (#​13815) (91e7f0c)
  • ui: populate nested fields for enableListViewSelectAPI (#​13827) (dc732b8)
  • ui: cross-domain server-side live preview throws postMessage error (#​13825) (731c4fb)
  • ui: undefined operators for virtual field with unsupported field types (#​13820) (5c02d17)
  • ui: prevent form validation after draft submit error (#​12918) (a2c31fa)
  • ui: show loading state in relationship field during search and pagination (#​13805) (555228b)
  • ui: safely access preferences when loading list view (#​13771) (4482eaf)
📚 Documentation
📝 Templates
  • fix experimental-build-mode compile generating invalid code (#​13828) (ba2ab2f)
⚙️ CI
  • adjust audit-dependencies cron time (898e937)
🤝 Contributors

v3.55.1

Compare Source

🐛 Bug Fixes
  • presentational-field types incorrectly exposing hooks (#​11514) (285fc8c)
  • graphql: pass collectionSlug to nested join fields in tabs, collapsible and group resolvers (#​13752) (e52b757)
  • next: error after logging in and navigating to different page in production (#​13758) (e40c821)
  • ui: listSearchableFields can resolve to multiple fields with the same name when using tabs (#​13668) (ffed540)
📝 Templates
  • ensure blank template installs matching react-dom version (#​13757) (15e462b)
🤝 Contributors

v3.55.0

Compare Source

🚀 Features
🐛 Bug Fixes
  • ensure client-side live preview correctly updates for globals (#​13718) (03f7102)
  • set X-Payload-HTTP-Method-Override as allowed cross origin header (#​13717) (a4a0298)
  • update user session on reset (#​13667) (d9e1832)
  • prevent enabling trash on folders (#​13675) (be47f65)
  • db-sqlite: convert Date to ISO 8601 string in queries (#​11694) (917c66f)
  • next: version diff view not handling all field permissions correctly (#​13721) (911f17a)
  • next: display deleted relations and uploads in version diff views (#​12955) (bbcdea5)
  • next: version diff view shows correct document title in step nav (#​13713) (794bf82)
  • plugin-multi-tenant: hide watchTenant column field (#​13740) (a0112d7)
  • plugin-multi-tenant: skip baseFilter if user has access to all tenants (#​13633) (65b3845)
  • plugin-nested-docs: prevent phantom breadcrumb row (#​13628) (a231a05)
  • plugin-nested-docs: crumbs not syncing on non-versioned collections (#​13629) (4600c94)
  • plugin-search: update with db adapter on create (#​13670) (1293019)
  • richtext-lexical: fix picture closing tag in html converter (#​13100) (24e436b)
  • richtext-lexical: add internationalization support for default style label in textStateFeature (#​13662) (0c44c3b)
  • storage-vercel-blob: filename is incorrectly stored encoded when addRandomSuffix is true (#​13746) (b2f9d4e)
  • templates: URI encode the cacheTag in getMediaUrl utility - Website template (#​13558) (008a52d)
  • ui: consistent searchbar across folders and lists (#​13712) (09e3174)
  • ui: cannot filter by virtual relationship fields in WhereBuilder (#​13686) (7e98fbf)
  • ui: undefined permissions passed in create-first-user view (#​13671) (5146fc8)
  • ui: don't populate on auto save (#​13649) (7794541)
  • ui: use consistent row ids when duplicating array and block rows (#​13679) (b8d7ccb)
  • ui: field.admin.condition data attribute missing document ID when document is being edited (#​13676) (a115868)
  • ui: await for publish success to update the UI (#​13673) (9b10933)
  • ui: sidebar missing sticky top offset (#​13652) (1c68ed5)
  • ui: should not show publish specific locale button when no localized fields exist (#​13459) (ac691b6)
  • ui: json field type ignoring editorOptions (#​13630) (426f99c)
⚡ Performance
📚 Documentation
🧪 Tests
⚙️ CI
  • deps: bump the github_actions group across 3 directories with 4 updates (#​13654) (cfb70f0)
🏡 Chores
🤝 Contributors

v3.54.0

Compare Source

🚀 Features
🐛 Bug Fixes
  • restore as draft function was passing a published status (#​13599) (a670438)
  • hide jobs stats global by default (#​13566) (a92c251)
  • deeply merge array and block rows from server form state (#​13551) (1e13474)
  • ensure updates to createdAt and updatedAt are respected (#​13335) (5c16443)
  • db-*: add delete version id for non-mongodb (#​10613) (ddb8ca4)
  • graphql: invalid enum names when values include brackets (#​13597) (1dc346a)
  • next: richtext fields not read-only for locked documents (#​13579) (344ad69)
  • next: update rest route handler types for Next.js 15.5 compatibility (#​13521) (763cb61)
  • plugin-multi-tenant: prevent duplicate filters on referenced blocks (#​13607) (03a00ca)
  • plugin-multi-tenant: autosave global documents not rendering (#​13552) (409dd56)
  • richtext-lexical: toolbar dropdown items are disabled when selecting via double-click (#​13544) (3bc1d08)
  • ui: prevent infinite redirect if no user (#​13615) (303381e)
  • ui: bulk edit overwriting fields within named tabs (#​13600) (138938e)
  • ui: autosave in document drawer overwrites local changes (#​13587) (bd81936)
  • ui: multiple logout requests being made in parallel (#​13595) (cf37433)
  • ui: auth-fields container renders despite no visible auth/API key/verify content (#​13554) (8101842)
  • ui: correctly pass query params to locked document requests (#​10802) (598ff4c)
🛠 Refactors
📚 Documentation
⚙️ CI
  • remove run-e2e-turbo flow (#​13611) (5c41966)
  • ignore template bump commits in release notes [skip ci] (60cfc31)
🤝 Contributors

v3.53.0

Compare Source

🚀 Features
  • add icelandic translations (#​13423) (2bdd669)
  • plugin-import-export: use groupBy as SortBy when present and sort is unset (#​13491) (a7ed88b)
  • plugin-import-export: adds sort order control and sync with sort-by field (#​13478) (efdf002)
  • plugin-multi-tenant: visible tenant field on documents (#​13379) (5cf215d)
🐛 Bug Fixes

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/payloadcms-monorepo branch from 21668ea to f4bca54 Compare May 22, 2025 16:46
@renovate renovate bot changed the title Update payloadcms monorepo to v3.38.0 Update payloadcms monorepo to v3.39.1 May 22, 2025
@renovate renovate bot force-pushed the renovate/payloadcms-monorepo branch from f4bca54 to 731d57f Compare May 29, 2025 21:29
@renovate renovate bot changed the title Update payloadcms monorepo to v3.39.1 Update payloadcms monorepo to v3.40.0 May 29, 2025
@renovate renovate bot force-pushed the renovate/payloadcms-monorepo branch from 731d57f to d73ada7 Compare June 5, 2025 23:20
@renovate renovate bot changed the title Update payloadcms monorepo to v3.40.0 Update payloadcms monorepo to v3.41.0 Jun 5, 2025
@renovate renovate bot force-pushed the renovate/payloadcms-monorepo branch from d73ada7 to 8b0c6aa Compare June 9, 2025 19:52
@renovate renovate bot changed the title Update payloadcms monorepo to v3.41.0 Update payloadcms monorepo to v3.42.0 Jun 9, 2025
@renovate renovate bot force-pushed the renovate/payloadcms-monorepo branch from 8b0c6aa to 79888f9 Compare June 16, 2025 22:06
@renovate renovate bot changed the title Update payloadcms monorepo to v3.42.0 Update payloadcms monorepo to v3.43.0 Jun 16, 2025
@renovate renovate bot force-pushed the renovate/payloadcms-monorepo branch from 79888f9 to 15464da Compare June 27, 2025 15:54
@renovate renovate bot changed the title Update payloadcms monorepo to v3.43.0 Update payloadcms monorepo to v3.44.0 Jun 27, 2025
@renovate renovate bot force-pushed the renovate/payloadcms-monorepo branch from 15464da to 4bd5787 Compare July 3, 2025 17:27
@renovate renovate bot changed the title Update payloadcms monorepo to v3.44.0 Update payloadcms monorepo to v3.45.0 Jul 3, 2025
@renovate renovate bot force-pushed the renovate/payloadcms-monorepo branch from 4bd5787 to d1ded1a Compare July 7, 2025 22:58
@renovate renovate bot changed the title Update payloadcms monorepo to v3.45.0 Update payloadcms monorepo to v3.46.0 Jul 7, 2025
@renovate renovate bot force-pushed the renovate/payloadcms-monorepo branch from d1ded1a to e85c927 Compare July 11, 2025 20:02
@renovate renovate bot changed the title Update payloadcms monorepo to v3.46.0 Update payloadcms monorepo to v3.47.0 Jul 11, 2025
@renovate renovate bot force-pushed the renovate/payloadcms-monorepo branch from e85c927 to 0bd3c3e Compare July 17, 2025 19:42
@renovate renovate bot changed the title Update payloadcms monorepo to v3.47.0 Update payloadcms monorepo to v3.48.0 Jul 17, 2025
@renovate renovate bot force-pushed the renovate/payloadcms-monorepo branch from 0bd3c3e to 7b68f9b Compare July 25, 2025 15:48
@renovate renovate bot changed the title Update payloadcms monorepo to v3.48.0 Update payloadcms monorepo to v3.49.0 Jul 25, 2025
@renovate renovate bot force-pushed the renovate/payloadcms-monorepo branch from 7b68f9b to 0be94ff Compare August 7, 2025 11:13
@renovate renovate bot changed the title Update payloadcms monorepo to v3.49.0 Update payloadcms monorepo to v3.50.0 Aug 7, 2025
@renovate renovate bot force-pushed the renovate/payloadcms-monorepo branch from 0be94ff to 9a2cba4 Compare August 13, 2025 17:14
@renovate renovate bot changed the title Update payloadcms monorepo to v3.50.0 Update payloadcms monorepo to v3.51.0 Aug 13, 2025
@renovate renovate bot force-pushed the renovate/payloadcms-monorepo branch from 9a2cba4 to c16c8c7 Compare August 15, 2025 17:44
@renovate renovate bot changed the title Update payloadcms monorepo to v3.51.0 Update payloadcms monorepo to v3.52.0 Aug 15, 2025
@renovate renovate bot force-pushed the renovate/payloadcms-monorepo branch from c16c8c7 to 61c921d Compare August 21, 2025 19:56
@renovate renovate bot changed the title Update payloadcms monorepo to v3.52.0 Update payloadcms monorepo to v3.53.0 Aug 21, 2025
@renovate renovate bot force-pushed the renovate/payloadcms-monorepo branch from 61c921d to 213bdbc Compare August 28, 2025 21:03
@renovate renovate bot changed the title Update payloadcms monorepo to v3.53.0 Update payloadcms monorepo to v3.54.0 Aug 28, 2025
@renovate renovate bot force-pushed the renovate/payloadcms-monorepo branch from 213bdbc to 4e39665 Compare August 31, 2025 08:57
@renovate renovate bot force-pushed the renovate/payloadcms-monorepo branch from 4e39665 to 8483e21 Compare September 9, 2025 17:27
@renovate renovate bot changed the title Update payloadcms monorepo to v3.54.0 Update payloadcms monorepo to v3.55.0 Sep 9, 2025
@renovate renovate bot force-pushed the renovate/payloadcms-monorepo branch from 8483e21 to fe8370d Compare September 10, 2025 22:34
@renovate renovate bot changed the title Update payloadcms monorepo to v3.55.0 Update payloadcms monorepo to v3.55.1 Sep 10, 2025
@renovate renovate bot force-pushed the renovate/payloadcms-monorepo branch from fe8370d to b4305f8 Compare September 17, 2025 18:06
@renovate renovate bot changed the title Update payloadcms monorepo to v3.55.1 Update payloadcms monorepo to v3.56.0 Sep 17, 2025
@renovate renovate bot force-pushed the renovate/payloadcms-monorepo branch from b4305f8 to 28ffbfc Compare September 25, 2025 20:17
@renovate renovate bot changed the title Update payloadcms monorepo to v3.56.0 Update payloadcms monorepo to v3.57.0 Sep 25, 2025
@renovate renovate bot force-pushed the renovate/payloadcms-monorepo branch from 28ffbfc to c40196a Compare September 30, 2025 19:45
@renovate renovate bot changed the title Update payloadcms monorepo to v3.57.0 Update payloadcms monorepo to v3.58.0 Sep 30, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants