Skip to content

Conversation

@dependabot
Copy link
Contributor

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

Bumps @payloadcms/ui from 3.63.0 to 3.65.0.

Release notes

Sourced from @​payloadcms/ui'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]
  • a044a08 fix(ui): ensures modal closes on route change (#14718)
  • 42a4384 fix(ui): query preset crash with empty filters in postgres/sqlite (#14722)
  • b9b11f0 feat(ui): extract block selector from blocks drawer (#14697)
  • 91d3e04 fix(ui): app header overflow on mobile (#14704)
  • e40a4b7 fix(ui): shows minRowsProp instead of minRows (#14681)
  • ba5834b fix(ui): publish label regression from 14690 (#14692)
  • caf68e4 fix(ui): publish button shows locale-specific text without localized fields (...
  • 8a3c6dc fix: autoRefresh not working due to stale closure and missing in client confi...
  • 220a18f fix(ui): equals filter shows no results when value is cleared (#14673)
  • 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 [@payloadcms/ui](https://github.com/payloadcms/payload/tree/HEAD/packages/ui) 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/ui)

---
updated-dependencies:
- dependency-name: "@payloadcms/ui"
  dependency-version: 3.65.0
  dependency-type: direct:development
  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 @payloadcms/ui 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/payloadcms/ui-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