Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Feb 9, 2025

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
@payloadcms/plugin-cloud-storage (source) 3.0.0-alpha.543.72.0 age confidence
payload (source) 3.0.0-alpha.543.72.0 age confidence

Release Notes

payloadcms/payload (@​payloadcms/plugin-cloud-storage)

v3.72.0

Compare Source

🚀 Features
  • adds experimental option localizeStatus and allows unpublish per-locale functionality (#​14667) (d77af00)
  • plugin-mcp: add depth parameter support to all MCP find resource tools (#​14931) (c979fb3)

Localized Status (Experimental) - Each locale can now track and manage its own publication status independently. Publish or unpublish individual locales without affecting others, with locale-aware UI and version history. Requires enabling at both config and collection level. #​14667

// payload.config.ts
export default buildConfig({
  experimental: {
    localizeStatus: true,
  },
  // ...
})

// collections/Posts.ts
export const Posts: CollectionConfig = {
  slug: 'posts',
  versions: {
    drafts: {
      localizeStatus: true,
    },
  },
}

⚠️ Migration Required: If you have existing version data, run the provided migration helper to convert _status fields from strings to locale objects. See PR #​14667 for full migration guide.


Depth Parameter Support (plugin-mcp) - MCP resource tools now support a depth parameter (0-10) to control relationship population depth. Use depth: 0 for lightweight ID-only responses or higher values for fully populated relationship data. Significantly reduces token count when reading documents. #​14931


🐛 Bug Fixes
  • thumbnailURL hook, virtually populate from thumbnail size (#​15232) (beeb269)
  • isValidID validation (#​15217) (4f452ac)
  • select in findByID with draft: true may return a wrong version (#​14742) (49c9fa9)
  • use window.location.origin as fallback for API URL copy (#​15220) (a46e3a2)
  • folder creation errors when collection uses translation function labels (#​15216) (1a3aeb8)
  • correct image size URLs in beforeChange (#​15214) (da12eed)
  • db-mongodb: hasMany relationship filtering with equals operator returns no results (#​15204) (1756c0d)
  • deps: bump undici to 7.18.2 to mitigate chained decompression (#​15221) (591f9d2)
  • plugin-ecommerce: issue with slug map ignoring variants and threading through cart data (#​15234) (4b6529f)
  • plugin-ecommerce: translations not being mapped correctly (#​15205) (3337403)
  • templates: prevent jobs run if secret unset (#​15207) (8f50f83)
  • translations: correct Russian translations for UI states in general section (#​14953) (454042e)
  • ui: truncates long JSON cells in list view (#​9214) (6827978)
📚 Documentation
  • fix beforeChange field hook documentation to reflect actual behaviour (#​14798) (533ae92)
🧪 Tests
  • fix race condition in language switcher helper (#​15206) (f98d915)
  • add @payloadcms/storage-s3 clientUploads integration test suite (#​15194) (4dce061)
  • fields with defaultValue ​​should not be overwritten in upsert (#​15197) (c684c6b)
⚙️ CI
🏡 Chores
🤝 Contributors

v3.71.1

Compare Source

🐛 Bug Fixes
🤝 Contributors

v3.71.0

Compare Source

🚀 Features
  • supersedes option to job queue concurrency controls (#​15179) (9aeb843)
  • add support for custom Status component in document controls (#​11154) (ef863e6)
  • add exclusive concurrency controls for workflows and tasks (#​15177) (35fe09d)
  • add bulkOperations.singleTransaction config option (#​14387) (92da9fa)
  • add support for additional IANA timezones, custom UTC offsets and overriding the timezone field (#​15120) (a8785ba)
  • ability to cancel current job from within workflow or task handlers (#​15119) (1bd3146)
  • add typescript.strictDraftTypes flag for opt-in draft query type safety (#​14388) (58faafd)
  • drizzle: include collection and global slugs in validation errors (#​15147) (910d274)
  • plugin-ecommerce: new hooks, cart logic moved to the server and fixed several bugs (#​15142) (dcd4030)
  • plugin-ecommerce: add new method refreshCart in useCart (#​14765) (#​14767) (529726e)
  • plugin-import-export: refactor plugin and add import functionality (#​14782) (13e6035)
  • plugin-mcp: add draft parameter support to MCP find resource tool (#​14924) (744a593)
  • plugin-mcp: adds tools that can find and update globals (#​15091) (f6d9873)
  • plugin-nested-docs: add req parameter to GenerateURL and GenerateLabel types in nested docs (#​14617) (6821a09)
  • plugin-redirects: add Japanese translations (#​15080) (c5b57f7)
  • plugin-search: enables skipping of document syncing (#​14928) (dfcf15c)
  • sdk: automatically fallback to generated types attempt (#​15167) (ae50d39)
  • sdk: add proper error handling (#​15148) (bfe2154)

Feature Details

Job Queue Concurrency Supersedes - Newer jobs can automatically delete older pending jobs with the same concurrency key. Enables "last queued wins" behavior for scenarios where only the latest state matters. #​15179

concurrency: {
  key: ({ input }) => `generate:${input.documentId}`,
  exclusive: true,
  supersedes: true,  // Newer jobs delete older pending ones (not yet completed and did not start processing yet)
}

Exclusive Concurrency Controls - Prevents race conditions when multiple jobs operate on the same resource. Jobs with the same concurrency key will not run in parallel. Requires enableConcurrencyControl: true (will default to true in v4.0). #​15177

export default buildConfig({
  jobs: {
    enableConcurrencyControl: true,
    workflows: [{
      slug: 'syncDocument',
      concurrency: ({ input }) => `sync:${input.documentId}`,
      handler: async ({ job }) => {
        // Only one job per documentId runs at a time
      }
    }]
  }
})

Job Cancellation from Handlers - Throw JobCancelledError from within a task or workflow handler to stop the job without retrying. #​15119

Custom Status Component - Replace the Status section in document or global edit views without replacing the entire Edit view. Useful for custom locale publishing logic or additional status indicators. #​11154

admin: {
  components: {
    edit: {
      Status: '/components/Status/index.tsx#Status',
    },
  },
},

Bulk Operations Single Transaction (db-mongodb) - Handle database transaction limitations when processing large numbers of documents in bulk operations. Useful for DocumentDB and Cosmos DB which have cursor limitations within transactions. #​14387

Additional IANA Timezones & Custom UTC Offsets - Support for additional IANA timezone names via DateTimeFormat API validation, custom UTC offsets in ±HH:mm format, and the ability to override the timezone field configuration. #​15120

{
  name: 'eventTime',
  type: 'date',
  timezone: {
    supportedTimezones: [
      { label: 'UTC+5:30 (India)', value: '+05:30' },
      { label: 'UTC-8 (Pacific)', value: '-08:00' },
      { label: 'UTC+0', value: '+00:00' },
    ],
  },
}

Override the timezone field:

{
  name: 'publishedAt',
  type: 'date',
  label: 'Published At',
  timezone: {
    override: ({ baseField }) => ({
      ...baseField,
      admin: {
        ...baseField.admin,
        disableListColumn: true, // Hide from list view columns
      },
    }),
  },
}

Strict Draft Types (typescript) - Opt-in strictDraftTypes flag for correct type safety when querying drafts. When enabled, find operations with draft: true will correctly type required fields as optional. Will become default in v4.0. #​14388

export default buildConfig({
  typescript: {
    strictDraftTypes: true,  // defaults to false
  },
})

Validation Error Context (drizzle) - Unique constraint ValidationErrors now include data.collection or data.global for better error context when debugging. #​15147

Server-Side Cart Logic (plugin-ecommerce) - Cart logic moved to the server with new REST API endpoints. New hooks: onLogin (merge guest cart with user cart), onLogout (clear session), clearSession, mergeCart, and refreshCart. Support for custom cart item matchers and MongoDB-style $inc operator for quantity changes. #​15142

/**
 * Custom cart item matcher that includes fulfillment option.
 */
const fulfillmentCartItemMatcher: CartItemMatcher = ({ existingItem, newItem }) => {
  const existingProductID =
    typeof existingItem.product === 'object' ? existingItem.product.id : existingItem.product

  const existingVariantID =
    existingItem.variant && typeof existingItem.variant === 'object'
      ? existingItem.variant.id
      : existingItem.variant

  const productMatches = existingProductID === newItem.product

  const variantMatches = newItem.variant
    ? existingVariantID === newItem.variant
    : !existingVariantID

  const existingFulfillment = existingItem.fulfillment as string | undefined
  const newFulfillment = newItem.fulfillment as string | undefined
  const fulfillmentMatches = existingFulfillment === newFulfillment

  return productMatches && variantMatches && fulfillmentMatches
}

refreshCart Method (plugin-ecommerce) - Manually refresh cart state after direct modifications, allowing the UI to stay in sync without being blocked by addItem's uniqueness validation. #​14767

Import Functionality (plugin-import-export) - Complete plugin refactor with new import functionality. Config is now per-collection with required collections array. Supports disabling import/export per collection and custom collection overrides. #​14782 ⚠️ BREAKING CHANGE

importExportPlugin({
  overrideExportCollection: (collection) => {
    collection.admin.group = 'System'
    collection.upload.staticDir = path.resolve(dirname, 'uploads')
    return collection
  },
  overrideImportCollection: (collection) => {
    collection.admin.group = 'System'
    collection.upload.staticDir = path.resolve(dirname, 'uploads')
    return collection
  },
  collections: [
    {
      slug: 'posts',
      import: false, // disables import functionality, export enabled by default
    },
    {
      slug: 'pages',
      export: ({ collection }) => {
        collection.admin.group = 'System'
        collection.upload.staticDir = path.resolve(dirname, 'uploads')
        return collection
      },
      disableJobsQueue: true, // disable jobs queue for this collection only
    },
  ],
  debug: true,
})

Draft Parameter for MCP Find (plugin-mcp) - Query draft/unpublished documents via the MCP plugin's find tool using the new draft boolean parameter. #​14924

Globals Support (plugin-mcp) - New MCP tools to find and update globals. #​15091

Request Parameter in Nested Docs (plugin-nested-docs) - req parameter added to generateURL and generateLabel functions for more flexibility (e.g., reading current locale). #​14617

Skip Sync (plugin-search) - Conditionally skip syncing documents to the search index based on locale, document properties, or other criteria. #​14928

skipSync: async ({ locale, doc, collectionSlug, req }) => {
  if (!locale) return false

  const tenant = await req.payload.findByID({
    collection: 'tenants',
    id: doc.tenant.id,
  })

  return !tenant.allowedLocales.includes(locale)
}

Automatic Type Inference (sdk) - The SDK automatically uses your generated types via module augmentation—no need to manually pass GeneratedTypes. #​15167

import { PayloadSDK } from '@​payloadcms/sdk'

const sdk = new PayloadSDK({}) // Types inferred automatically from payload-types.ts

Proper Error Handling (sdk) - The SDK now throws PayloadSDKError on failed API requests with status, errors, response, and message properties. #​15148

import { PayloadSDKError } from '@​payloadcms/sdk'

try {
  await sdk.create({ collection: 'posts', data: { ... } })
} catch (err) {
  if (err instanceof PayloadSDKError) {
    console.log(err.status)  // 400
    console.log(err.errors)  // [{ name: 'ValidationError', message: '...', data: {...} }]
  }
}

Japanese Translations (plugin-redirects) - Localized admin UI strings for Japanese users. #​15080

🐛 Bug Fixes
  • wrong construction of urlToUse leads to false alert with logger.error (#​15190) (ec6bba5)
  • adds missing transactions to login and logout operations (#​15134) (dd494be)
  • set basePath from next config as env variable (#​15154) (a8bfade)
  • throw error on empty relationTo array and allow disabling lockDocuments on all collections (#​14871) (9521ec6)
  • add distinct validate to richtext field type definition (#​15069) (d68e75a)
  • exclude files from being sent to the form-state action (#​15174) (aaea133)
  • full image urls stored in DB (#​15089) (d462f9b)
  • field schema map paths (#​10852) (d288752)
  • custom OPTIONS endpoints are intercepted and cannot set custom CORS headers (#​15153) (c103667)
  • upload drawer not loading data for uploads without files (#​15150) (00fb6e8)
  • cannot read private member #headers error on Node.js 24 when using isolateObjectProperty (#​15116) (e214deb)
  • db-mongodb: avoid unnecessary $lookup when a join field is not selected (#​15149) (e39b1b5)
  • db-mongodb: exists operator on fields that have an array value in the db (#​15152) (0afe200)
  • db-mongodb: find id field from flattened fields (#​15110) (40081f4)
  • db-postgres: add filenameCompoundIndex baseIndexes for upload collections (#​15182) (01f90c9)
  • db-postgres: localized and hasMany/polymorphic relationships/uploads inside blocks (#​15095) (01e4412)
  • drizzle: unique field errors were not thrown as ValidationErrors (#​15146) (43c19cb)
  • live-preview: remove payload import (#​15160) (ec658a4)
  • plugin-cloud-storage: should persist external data returned by handleUpload (#​15188) (7d80d21)
  • plugin-cloud-storage: prevent deleting original file when duplicating (#​14961) (9d54267)
  • plugin-mcp: handle defaultDepth: 0 in api key authentication (#​15014) (e0e058c)
  • plugin-multi-tenant: cannot clear selected tenant from dashboard view (#​15141) (cd77e5d)
  • richtext-lexical,ui: make uploadNode default to alt user-defined values. (#​15097) (3290b04)
  • storage-*: add range headers to storage adapters (#​14890) (ef90811)
  • storage-s3: respect upload limits with client uploads (#​15176) (4a6189e)
  • templates: fix mobile menu auth buttons overflow in ecommerce template (#​15020) (6c1109f)
  • templates: improve cli detection in cloudflare template (#​15098) (5d21ed1)
  • templates: add recommended serverExternalPackages to cloudflare (#​15094) (0eed581)
  • translations: improve Japanese translations for naturalness and consistency (#​15077) (88a901c)
  • ui: ensure up-to-date upload preview thumbnails in admin panel (#​15029) (6f4b272)
  • ui: use optional chaining for potentiallyStalePath (#​15185) (38cd67a)
  • ui: virtual fields with virtual: true show sort chevrons in list view (#​15186) (33c3630)
  • ui: prevent text overlap in breadcrumbs (#​15040) (0e27f19)
  • ui: avoid creating hasMany options during IME composition (#​15086) (98bc876)
  • ui: duplicate document has unused serverURL dependency (#​15178) (6d212b8)
  • ui: bulk upload error count (#​15155) (0a46f4e)
  • ui: margins on small screens when using hideGutter in group (#​15041) (22f94cd)
  • ui: preserve beforeInput/afterInput components in bulk edit (#​14954) (c62dc2a)
  • ui: prevent wrong scroll target when adding rows in repeated array blocks (#​15047) (f13a741)
  • ui: crop width and height inputs limited to -1 of max (#​15101) (3a6d3bd)
⚡ Performance
🛠 Refactors
📚 Documentation
🧪 Tests
⚙️ CI
🏡 Chores
⚠️ BREAKING CHANGES
  • plugin-import-export: refactor plugin and add import functionality (#​14782) (13e6035)

    This PR works to refactor the entire plugin so it's easier for us to
    work with it going forward and also implements import functionality.

🤝 Contributors

v3.70.0

Compare Source

🚀 Features
  • support qs-esm sort arrays in REST API (#​15065) (2ccf898)
  • richtext-lexical: adds docs page for lexical blocks, adds new lexical block component types and styles (#​14971) (329115c)
Multi-Column REST API Sorting

Sort by multiple columns in the REST API using array syntax, aligning REST API behavior with the Local API. Previously only string-based sorting was supported. #​15065

// Sort by multiple fields via REST API query string
// GET /api/posts?sort[0]=createdAt&sort[1]=-title

// Equivalent to Local API:
const posts = await payload.find({
  collection: 'posts',
  sort: ['createdAt', '-title'],
})
Lexical Blocks Documentation & Component Styles (richtext-lexical)

New documentation page for Lexical blocks with comprehensive examples showing usage and customization. Also introduces new block component types and styles for enhanced rich text editing. #​14971

See the https://payloadcms.com/docs/rich-text/blocks for full details.

🐛 Bug Fixes
  • s3 plugin uploads files before validation (#​14988) (502947b)
  • add beforeDocumentControls to globals generate importmap (#​15036) (4468197)
  • warning during Next.js build "the request of a dependency is an expression" (#​15007) (cd87ab4)
  • next: turbopack build version check not working for 16.1.1 canaries (#​15005) (ab68a2f)
  • plugin-mcp: pin modelcontextprotocol/sdk dependency version to 1.24.0 (#​15017) (1a9d665)
  • storage-*: allow prefix to always exist as a field via alwaysInsertFields flag (#​14949) (23a8689)
  • ui: invalid sass imports to support windows - add Stylelint to prevent regression (#​15028) (c66e953)
🧪 Tests
🏡 Chores
⚠️ BREAKING CHANGES

@payloadcms/storage-s3

Only users with custom hooks on S3 upload fields are affected — standard plugin usage is unchanged.

  • External upload process for the S3 plugin has moved from beforeChange to afterChange as a result of fix: s3 plugin uploads files before validation (#​14988)

This change was necessary to ensure that files uploaded to S3 have passed all validations and been saved to the document, preventing orphaned external files.

🤝 Contributors

v3.69.0

Compare Source

🚀 Features

Modular Dashboards with Widgets

Introduces customizable admin dashboards with draggable, resizable widgets. Build personalized dashboard layouts with full keyboard accessibility for reordering and resizing. Future updates will add widget fields (props) for configurable widgets and dashboard presets for sharing layouts. #​13683

Screen.Recording.2025-11-28.at.17.13.14.mov

See the RFC discussion for background and roadmap.

AI Development Resources (templates)

All templates now ship with AGENTS.md and .cursor/rules/ directory for improved AI-assisted development with tools like Copilot and Cursor. #​14889

See more about AGENTS.md

🐛 Bug Fixes
  • basePath not working properly with admin routes (#​14967) (fa6b503)
  • get field by path for blocks (#​14984) (519a3c6)
  • improves upload security for PDFs and SVGs (#​14929) (61298c6)
  • missing range headers (#​14887) (ec7c192)
  • next: status component incorrectly shows as published status on new documents saved as drafts when readVersions permissions are false (#​14950) (394c024)
  • plugin-mcp: adds collection and strategy to user (#​14981) (042d7eb)
  • plugin-multi-tenant: relationTo arrays inflating filterOptions where query size (#​14944) (98b6791)
  • richtext-lexical: blocksFeature with relationship exposes other tenants (#​14985) (3025377)
  • storage-s3: encode filename in generated URL (#​14438) (86855e1)
  • ui: use portals for popup to prevent clipping, improve keyboard navigation (#​14910) (af09932)
🛠 Refactors
📚 Documentation
🧪 Tests
🏡 Chores
🤝 Contributors

v3.68.5

Compare Source

🐛 Bug Fixes
🛠 Refactors
🤝 Contributors

v3.68.4

Compare Source

🐛 Bug Fixes
📚 Documentation
  • remove unused variable from custom field label translation (#​14911) (77f96a4)
  • update collection access control reference link on collection config page (#​14905) (3a1eb77)
⚠️ BREAKING CHANGES
🤝 Contributors

v3.68.3

Compare Source

⚠️ Security Issue

A high-severity Denial of Service (CVE-2025-55184) and a medium-severity Source Code Exposure (CVE-2025-55183) affect React 19 and frameworks that use it, like Next.js.

Full details here: https://vercel.com/kb/bulletin/security-bulletin-cve-2025-55184-and-cve-2025-55183#how-to-upgrade-and-protect-your-next.js-app

While this is not a Payload vulnerability, it may affect any Payload project running on the affected versions of Next.js. Payload does not install any of these dependencies directly, it simply enforces their versions through its peer dependencies, which will only warn you of the version incompatibilities.

You will need to upgrade React and Next.js yourself in your own apps to the patched versions listed below in order to receive these updates.

Resolution

You are strongly encouraged to upgrade your own apps to the nearest patched versions of Next.js and deploy immediately.

Quick steps:

If using pnpm as your package manager, here's a one-liner:

For a full breakdown of the vulnerable packages and their patched releases, see https://vercel.com/kb/bulletin/security-bulletin-cve-2025-55184-and-cve-2025-55183#how-to-upgrade-and-protect-your-next.js-app.

🐛 Bug Fixes
🤝 Contributors

v3.68.2

Compare Source

🐛 Bug Fixes
  • next: use fileURLToPath for cross-platform path resolution (#​14877) (e86098d)

Fixes Windows users getting ENOENT errors on dev startup.

  • next: unhandled error in renderListView s

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 is behind base branch, 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.

@changeset-bot
Copy link

changeset-bot bot commented Feb 9, 2025

⚠️ No Changeset found

Latest commit: bd55e60

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@renovate renovate bot force-pushed the renovate/payloadcms-monorepo branch from 1a6f472 to 9940e2a Compare February 11, 2025 22:39
@renovate renovate bot changed the title chore(deps): update payloadcms monorepo to v3.22.0 chore(deps): update payloadcms monorepo to v3.23.0 Feb 11, 2025
@renovate renovate bot force-pushed the renovate/payloadcms-monorepo branch from 9940e2a to e004908 Compare February 19, 2025 19:43
@renovate renovate bot changed the title chore(deps): update payloadcms monorepo to v3.23.0 chore(deps): update payloadcms monorepo to v3.24.0 Feb 19, 2025
@renovate renovate bot force-pushed the renovate/payloadcms-monorepo branch from e004908 to 8b05864 Compare February 27, 2025 18:25
@renovate renovate bot changed the title chore(deps): update payloadcms monorepo to v3.24.0 chore(deps): update payloadcms monorepo to v3.25.0 Feb 27, 2025
@renovate renovate bot force-pushed the renovate/payloadcms-monorepo branch from 8b05864 to 7794687 Compare March 4, 2025 19:30
@renovate renovate bot changed the title chore(deps): update payloadcms monorepo to v3.25.0 chore(deps): update payloadcms monorepo to v3.26.0 Mar 4, 2025
@renovate renovate bot force-pushed the renovate/payloadcms-monorepo branch from 7794687 to 39f74a7 Compare March 5, 2025 22:32
@renovate renovate bot changed the title chore(deps): update payloadcms monorepo to v3.26.0 chore(deps): update payloadcms monorepo to v3.27.0 Mar 5, 2025
@renovate renovate bot force-pushed the renovate/payloadcms-monorepo branch from 39f74a7 to 2f2b9d9 Compare March 11, 2025 23:02
@renovate renovate bot changed the title chore(deps): update payloadcms monorepo to v3.27.0 chore(deps): update payloadcms monorepo to v3.28.0 Mar 11, 2025
@renovate renovate bot force-pushed the renovate/payloadcms-monorepo branch from 2f2b9d9 to e78935b Compare March 12, 2025 22:51
@renovate renovate bot changed the title chore(deps): update payloadcms monorepo to v3.28.0 chore(deps): update payloadcms monorepo to v3.28.1 Mar 12, 2025
@renovate renovate bot force-pushed the renovate/payloadcms-monorepo branch from e78935b to 50fe85b Compare March 20, 2025 18:25
@renovate renovate bot changed the title chore(deps): update payloadcms monorepo to v3.28.1 chore(deps): update payloadcms monorepo to v3.29.0 Mar 20, 2025
@renovate renovate bot force-pushed the renovate/payloadcms-monorepo branch from 50fe85b to 03a2e13 Compare March 24, 2025 17:38
@renovate renovate bot changed the title chore(deps): update payloadcms monorepo to v3.29.0 chore(deps): update payloadcms monorepo to v3.30.0 Mar 24, 2025
@renovate renovate bot force-pushed the renovate/payloadcms-monorepo branch from 03a2e13 to b6d4430 Compare March 25, 2025 20:07
@renovate renovate bot changed the title chore(deps): update payloadcms monorepo to v3.30.0 chore(deps): update payloadcms monorepo to v3.31.0 Mar 25, 2025
@renovate renovate bot force-pushed the renovate/payloadcms-monorepo branch from b6d4430 to 3ba4108 Compare April 1, 2025 22:43
@renovate renovate bot changed the title chore(deps): update payloadcms monorepo to v3.31.0 chore(deps): update payloadcms monorepo to v3.32.0 Apr 1, 2025
@renovate renovate bot force-pushed the renovate/payloadcms-monorepo branch from 3ba4108 to daaab22 Compare April 4, 2025 22:08
@renovate renovate bot changed the title chore(deps): update payloadcms monorepo to v3.32.0 chore(deps): update payloadcms monorepo to v3.33.0 Apr 4, 2025
@renovate renovate bot force-pushed the renovate/payloadcms-monorepo branch from daaab22 to a706145 Compare April 10, 2025 23:41
@renovate renovate bot changed the title chore(deps): update payloadcms monorepo to v3.33.0 chore(deps): update payloadcms monorepo to v3.34.0 Apr 10, 2025
@renovate renovate bot force-pushed the renovate/payloadcms-monorepo branch from a706145 to 723045e Compare April 16, 2025 23:11
@renovate renovate bot changed the title chore(deps): update payloadcms monorepo to v3.34.0 chore(deps): update payloadcms monorepo to v3.35.0 Apr 16, 2025
@renovate renovate bot force-pushed the renovate/payloadcms-monorepo branch from 723045e to 26645e1 Compare April 17, 2025 18:39
@renovate renovate bot force-pushed the renovate/payloadcms-monorepo branch from 6f21f0b to 6f69d6c Compare November 7, 2025 19:02
@renovate renovate bot changed the title chore(deps): update payloadcms monorepo to v3.62.1 chore(deps): update payloadcms monorepo to v3.63.0 Nov 7, 2025
@renovate renovate bot force-pushed the renovate/payloadcms-monorepo branch from 6f69d6c to 7c27a01 Compare November 13, 2025 21:31
@renovate renovate bot changed the title chore(deps): update payloadcms monorepo to v3.63.0 chore(deps): update payloadcms monorepo to v3.64.0 Nov 13, 2025
@renovate renovate bot force-pushed the renovate/payloadcms-monorepo branch 2 times, most recently from 7d81e22 to f4d7950 Compare November 25, 2025 18:48
@renovate renovate bot changed the title chore(deps): update payloadcms monorepo to v3.64.0 chore(deps): update payloadcms monorepo Nov 25, 2025
@renovate renovate bot force-pushed the renovate/payloadcms-monorepo branch from f4d7950 to 4681a7b Compare November 25, 2025 21:32
@renovate renovate bot changed the title chore(deps): update payloadcms monorepo chore(deps): update payloadcms monorepo to v3.65.0 Nov 25, 2025
@renovate renovate bot force-pushed the renovate/payloadcms-monorepo branch 2 times, most recently from 75f2961 to 1bf2d37 Compare December 3, 2025 22:14
@renovate renovate bot changed the title chore(deps): update payloadcms monorepo to v3.65.0 chore(deps): update payloadcms monorepo to v3.66.0 Dec 3, 2025
@renovate renovate bot force-pushed the renovate/payloadcms-monorepo branch from 1bf2d37 to f0756b7 Compare December 5, 2025 21:14
@renovate renovate bot changed the title chore(deps): update payloadcms monorepo to v3.66.0 chore(deps): update payloadcms monorepo to v3.67.0 Dec 5, 2025
@renovate renovate bot force-pushed the renovate/payloadcms-monorepo branch from f0756b7 to 82911aa Compare December 11, 2025 23:58
@renovate renovate bot changed the title chore(deps): update payloadcms monorepo to v3.67.0 chore(deps): update payloadcms monorepo to v3.68.3 Dec 11, 2025
@renovate renovate bot force-pushed the renovate/payloadcms-monorepo branch from 82911aa to 6a5ee8a Compare December 14, 2025 21:10
@renovate renovate bot changed the title chore(deps): update payloadcms monorepo to v3.68.3 chore(deps): update payloadcms monorepo to v3.68.4 Dec 14, 2025
@renovate renovate bot force-pushed the renovate/payloadcms-monorepo branch from 6a5ee8a to 2e99f9e Compare December 15, 2025 21:29
@renovate renovate bot changed the title chore(deps): update payloadcms monorepo to v3.68.4 chore(deps): update payloadcms monorepo to v3.68.5 Dec 15, 2025
@renovate renovate bot force-pushed the renovate/payloadcms-monorepo branch from 2e99f9e to 10672a5 Compare December 20, 2025 01:09
@renovate renovate bot changed the title chore(deps): update payloadcms monorepo to v3.68.5 chore(deps): update payloadcms monorepo to v3.69.0 Dec 21, 2025
@renovate renovate bot force-pushed the renovate/payloadcms-monorepo branch 2 times, most recently from c9e78f9 to a12d432 Compare January 5, 2026 21:06
@renovate renovate bot changed the title chore(deps): update payloadcms monorepo to v3.69.0 chore(deps): update payloadcms monorepo to v3.70.0 Jan 5, 2026
@renovate renovate bot force-pushed the renovate/payloadcms-monorepo branch from a12d432 to 2e3d161 Compare January 13, 2026 22:04
@renovate renovate bot changed the title chore(deps): update payloadcms monorepo to v3.70.0 chore(deps): update payloadcms monorepo to v3.71.1 Jan 13, 2026
@renovate renovate bot force-pushed the renovate/payloadcms-monorepo branch from 2e3d161 to bd55e60 Compare January 16, 2026 21:04
@renovate renovate bot changed the title chore(deps): update payloadcms monorepo to v3.71.1 chore(deps): update payloadcms monorepo to v3.72.0 Jan 17, 2026
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.

1 participant