Skip to content

Bump uuid and @rjsf/shadcn in /web#23120

Open
dependabot[bot] wants to merge 1 commit intodevfrom
dependabot/npm_and_yarn/web/multi-174244ae28
Open

Bump uuid and @rjsf/shadcn in /web#23120
dependabot[bot] wants to merge 1 commit intodevfrom
dependabot/npm_and_yarn/web/multi-174244ae28

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 5, 2026

Bumps uuid to 14.0.0 and updates ancestor dependency @rjsf/shadcn. These dependencies need to be updated together.

Updates uuid from 13.0.0 to 14.0.0

Release notes

Sourced from uuid's releases.

v14.0.0

14.0.0 (2026-04-19)

⚠ BREAKING CHANGES

  • expect crypto to be global everywhere (requires node@20+) (#935)
  • drop node@18 support (#934)

Features

Bug Fixes

  • expect crypto to be global everywhere (requires node@20+) (#935) (f2c235f)
  • Use GITHUB_TOKEN for release-please and enable npm provenance (#925) (ffa3138)

v13.0.2

13.0.2 (2026-05-04)

Bug Fixes

  • rerelease to fix provenance. (49ccb35)

v13.0.1

13.0.1 (2026-04-27)

Bug Fixes

Changelog

Sourced from uuid's changelog.

14.0.0 (2026-04-19)

Security

  • Fixes GHSA-w5hq-g745-h8pq: v3(), v5(), and v6() did not validate that writes would remain within the bounds of a caller-supplied buffer, allowing out-of-bounds writes when an invalid offset was provided. A RangeError is now thrown if offset < 0 or offset + 16 > buf.length.

⚠ BREAKING CHANGES

  • crypto is now expected to be globally defined (requires node@20+) (#935)
  • drop node@18 support (#934)
  • upgrade minimum supported TypeScript version to 5.4.3, in keeping with the project's policy of supporting TypeScript versions released within the last two years
Commits
  • 7c1ea08 chore(main): release 14.0.0 (#926)
  • 3d2c5b0 Merge commit from fork
  • f2c235f fix!: expect crypto to be global everywhere (requires node@20+) (#935)
  • 529ef08 chore: upgrade TypeScript and fixup types (#927)
  • 086fd79 chore: update dependencies (#933)
  • dc4ddb8 feat!: drop node@18 support (#934)
  • 0f1f9c9 chore: switch to Biome for parsing and linting (#932)
  • e2879e6 chore: use maintained version of npm-run-all (#930)
  • ffa3138 fix: Use GITHUB_TOKEN for release-please and enable npm provenance (#925)
  • 0423d49 docs: remove obsolete v1 option notes (#915)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for uuid since your current version.


Updates @rjsf/shadcn from 6.4.1 to 6.5.2

Release notes

Sourced from @​rjsf/shadcn's releases.

6.5.2

@​rjsf/core

  • Fixed processPendingChange() using originalErrorSchema (which already contains merged extraErrors) as the base for mergeErrors(), causing sibling-field extraErrors to accumulate duplicate entries on every array mutation, fixing #5041
  • Added ObjectField test for renaming a nested additionalProperties key using userEvent and reset() via a form ref, verifying fix for #4948
  • Updated ArrayField's change handling to only null out data for paths that are directly an array indexed value and not object properties within them, fixing #4952

@​rjsf/mui

  • Added computeSxProp() helper to utils.ts, ran the MUI v9.0.0/system-props codemod on the directory and then updated the sx changes to use computeSxProps()
  • Also transformed the use of style blocks for margins or explicit marginTop or marginBottom in MUI into sx values within DescriptionField, FieldHelpTemplate, ObjectFieldTemplate and SubmitButton,
    • Updated snapshots accordingly
  • Upgraded the peerDependencies to add support for MUI v9

@​rjsf/utils

  • Switched deepEquals from lodash.isEqualWith to fast-equals.createCustomEqual with cycle detection enabled, and replaced direct lodash.isEqual usage in useDeepCompareMemo, isRootSchema, and findSelectedOptionInXxxOf with deepEquals, fixing #4291
  • Fixed getObjectDefaults re-injecting stale schema-level default keys into an additionalProperties object when formData already contains its own keys (e.g. after a key rename), preventing ghost entries from reappearing, fixing #4948

@​rjsf/validator-ajv8

  • Cached the most recent rootSchema reference in handleSchemaUpdate so repeated isValid calls with the same root schema skip the deep-equality check and Ajv re-registration, fixing #4291

Dev / docs / playground

  • Cleaned up testing to make registry mocks simpler using getTestRegistry() function
  • Refactored antd specific test setup out of testing/testSetup.ts
  • Updated the Playground to use MUI v9

6.5.1

Dev / docs / playground

  • Updated peer dependencies to 6.5.x

6.5.0

New Feature

  • Added support for passing MUI-specific props (e.g., sx, rjsfSlotProps, variant) directly through uiSchema for all templates and widgets see the documentation

@​rjsf/antd

  • Updated BaseInputTemplate to remove type and set changeOnWheel to false for the InputNumber component, fixing #5002
  • Updated ErrorList and IconButton to destructure icons imported from @ant-design/icons, fixing #4953
  • Added key={label} to key input in WrapIfAdditionalTemplate to reset input value after duplicate key rename (#4999)
  • Updated BaseInputTemplate to destructure and guard min/max before spreading onto InputNumber, fixing a build error caused by the widened InputPropsType (number | string)
  • Added support for Antd v6, addressing #4995

@​rjsf/chakra-ui

  • Added key={label} to key input in WrapIfAdditionalTemplate to reset input value after duplicate key rename (#4999)

... (truncated)

Changelog

Sourced from @​rjsf/shadcn's changelog.

6.5.2

@​rjsf/core

  • Fixed processPendingChange() using originalErrorSchema (which already contains merged extraErrors) as the base for mergeErrors(), causing sibling-field extraErrors to accumulate duplicate entries on every array mutation, fixing #5041
  • Added ObjectField test for renaming a nested additionalProperties key using userEvent and reset() via a form ref, verifying fix for #4948
  • Updated ArrayField's change handling to only null out data for paths that are directly an array indexed value and not object properties within them, fixing #4952

@​rjsf/mui

  • Added computeSxProp() helper to utils.ts, ran the MUI v9.0.0/system-props codemod on the directory and then updated the sx changes to use computeSxProps()
  • Also transformed the use of style blocks for margins or explicit marginTop or marginBottom in MUI into sx values within DescriptionField, FieldHelpTemplate, ObjectFieldTemplate and SubmitButton,
    • Updated snapshots accordingly
  • Upgraded the peerDependencies to add support for MUI v9

@​rjsf/utils

  • Switched deepEquals from lodash.isEqualWith to fast-equals.createCustomEqual with cycle detection enabled, and replaced direct lodash.isEqual usage in useDeepCompareMemo, isRootSchema, and findSelectedOptionInXxxOf with deepEquals, fixing #4291
  • Fixed getObjectDefaults re-injecting stale schema-level default keys into an additionalProperties object when formData already contains its own keys (e.g. after a key rename), preventing ghost entries from reappearing, fixing #4948

@​rjsf/validator-ajv8

  • Cached the most recent rootSchema reference in handleSchemaUpdate so repeated isValid calls with the same root schema skip the deep-equality check and Ajv re-registration, fixing #4291

Dev / docs / playground

  • Cleaned up testing to make registry mocks simpler using getTestRegistry() function
  • Refactored antd specific test setup out of testing/testSetup.ts
  • Updated the Playground to use MUI v9

6.5.1

Dev / docs / playground

  • Updated peer dependencies to 6.5.x

6.5.0

@​rjsf/antd

  • Updated BaseInputTemplate to remove type and set changeOnWheel to false for the InputNumber component, fixing #5002
  • Updated ErrorList and IconButton to destructure icons imported from @ant-design/icons, fixing #4953
  • Added key={label} to key input in WrapIfAdditionalTemplate to reset input value after duplicate key rename (#4999)
  • Updated BaseInputTemplate to destructure and guard min/max before spreading onto InputNumber, fixing a build error caused by the widened InputPropsType (number | string)
  • Added support for Antd v6, addressing #4995

@​rjsf/chakra-ui

  • Added key={label} to key input in WrapIfAdditionalTemplate to reset input value after duplicate key rename (#4999)
  • Added opt-in optionValueFormat: 'realValue' support to SelectWidget, RadioWidget, and CheckboxesWidget (#4693)

... (truncated)

Commits
  • da7f582 Releasing 6.5.2
  • 970d466 chore(deps-dev): bump @​typescript-eslint/parser from 8.57.2 to 8.59.1 (#5047)
  • 07065b5 Chore: Added support for MUI v9 (#5049)
  • 239bf13 Fix 4948: Updated getDefaultFormState for additionalProperties with defaults ...
  • 924795d Fix 4952 by updating ArrayField onChange handling for objects (#5051)
  • 7148fc4 fix(@​rjsf/core): prevent extraErrors duplication on array field mutation (#50...
  • 029b5ec perf(utils, validator-ajv8): improve deepEquals performance and skip redundan...
  • ede2f13 chore(deps): bump uuid from 13.0.0 to 14.0.0 (#5042)
  • fdb8064 Chore: Cleaned up testing (#5040)
  • 1172c0b Chore: Added adjustable panels for the Editors panels (#5039)
  • Additional commits viewable in compare view

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 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)
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Bumps [uuid](https://github.com/uuidjs/uuid) to 14.0.0 and updates ancestor dependency [@rjsf/shadcn](https://github.com/rjsf-team/react-jsonschema-form). These dependencies need to be updated together.


Updates `uuid` from 13.0.0 to 14.0.0
- [Release notes](https://github.com/uuidjs/uuid/releases)
- [Changelog](https://github.com/uuidjs/uuid/blob/main/CHANGELOG.md)
- [Commits](uuidjs/uuid@v13.0.0...v14.0.0)

Updates `@rjsf/shadcn` from 6.4.1 to 6.5.2
- [Release notes](https://github.com/rjsf-team/react-jsonschema-form/releases)
- [Changelog](https://github.com/rjsf-team/react-jsonschema-form/blob/main/CHANGELOG.md)
- [Commits](rjsf-team/react-jsonschema-form@6.4.1...6.5.2)

---
updated-dependencies:
- dependency-name: uuid
  dependency-version: 14.0.0
  dependency-type: indirect
- dependency-name: "@rjsf/shadcn"
  dependency-version: 6.5.2
  dependency-type: direct:production
...

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 May 5, 2026
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.

0 participants