Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 1, 2025

Bumps payload from 3.63.0 to 3.65.0.

Release notes

Sourced from payload's releases.

v3.65.0

v3.65.0 (2025-11-25)

🚀 Features

  • add augmentable interfaces for collection and global custom properties (#14729) (850c252)
  • allow to specify payload instance cache key in handleEndpoints (#14675) (efa2fd2)
  • db-mongodb: add afterCreateConnection and afterOpenConnection hooks (#14649) (af6ba86)
  • plugin-mcp: add localization support to MCP resource operations (#14334) (a3f490b)
  • plugin-mcp: adds a PayloadRequest to custom tool, prompt, and resource handlers (#14644) (0d14b06)
  • ui: extract block selector from blocks drawer (#14697) (b9b11f0)

Type-Safe Custom Properties - Add augmentable interfaces for collection and global custom properties: CollectionCustom, CollectionAdminCustom, GlobalCustom, and GlobalAdminCustom. Enables type-safe plugin configuration at the collection/global level with full autocomplete support, matching the existing FieldCustom pattern. #14729

// Augment interfaces in your plugin or project
declare module 'payload' {
  export interface CollectionAdminCustom {
    disabledFields?: string[]
  }
export interface CollectionCustom {
myPluginConfig?: {
enabled: boolean
settings: Record<string, any>
}
}
}
// Now get full type safety in collections
export const Posts: CollectionConfig = {
slug: 'posts',
admin: {
custom: {
disabledFields: ['status'] // ✅ Type-safe!
}
},
custom: {
myPluginConfig: {
enabled: true,
settings: {}
}
}
}

Payload Instance Cache Key - Specify payloadInstanceCacheKey in handleEndpoints and createPayloadRequest to control which cached Payload instance is used for custom endpoints. Useful for multi-tenant scenarios or when managing multiple Payload instances. #14675

MongoDB Connection Lifecycle Hooks (db-mongodb) - Add afterCreateConnection and afterOpenConnection hooks to the MongoDB adapter for performing setup logic after connection/pool initialization. Enables use cases like connection pooling in serverless environments. #14649

... (truncated)

Commits
  • fde824b chore(release): v3.65.0 [skip ci]
  • 850c252 feat: add augmentable interfaces for collection and global custom properties ...
  • 32560e9 fix: trigger login hooks after reset password (#14711)
  • 3f3f5db fix: ensure restoreAsDraft only updates the published doc when draft is false...
  • c455f58 fix: remove init of transaction for global doc access (#14693)
  • e1168a0 fix: count versions should allow querying on localized fields (#14695)
  • 0d9ec91 perf: up to 5000% faster permissions calculation (#14631)
  • fe8a3e8 fix: prevent upload mimeType error when useTempFiles is true (#14689)
  • efa2fd2 feat: allow to specify payload instance cache key in handleEndpoints (#14675)
  • 8a3c6dc fix: autoRefresh not working due to stale closure and missing in client confi...
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [payload](https://github.com/payloadcms/payload/tree/HEAD/packages/payload) from 3.63.0 to 3.65.0.
- [Release notes](https://github.com/payloadcms/payload/releases)
- [Commits](https://github.com/payloadcms/payload/commits/v3.65.0/packages/payload)

---
updated-dependencies:
- dependency-name: payload
  dependency-version: 3.65.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Dec 1, 2025
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 1, 2025

Looks like payload is no longer being updated by Dependabot, so this is no longer needed.

@dependabot dependabot bot closed this Dec 1, 2025
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/packages/payload-helper/payload-3.65.0 branch December 1, 2025 18:41
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant