Skip to content

chore(deps): bump the dependencies group across 22 directories with 21 updates#245

Closed
dependabot[bot] wants to merge 1 commit into
developmentfrom
dependabot/npm_and_yarn/frontend/development/dependencies-afb29388a3
Closed

chore(deps): bump the dependencies group across 22 directories with 21 updates#245
dependabot[bot] wants to merge 1 commit into
developmentfrom
dependabot/npm_and_yarn/frontend/development/dependencies-afb29388a3

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

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

Bumps the dependencies group with 6 updates in the /frontend directory:

Package From To
@rjsf/core 6.4.2 6.5.2
@rjsf/react-bootstrap 6.4.2 6.5.2
@rjsf/validator-ajv8 6.4.2 6.5.2
next 16.2.3 16.2.6
react 19.2.5 19.2.6
react-dom 19.2.5 19.2.6

Bumps the dependencies group with 5 updates in the /lib/database/local directory:

Package From To
@prisma/adapter-pg 7.7.0 7.8.0
@prisma/client 7.7.0 7.8.0
@types/node 25.6.0 25.7.0
prisma 7.7.0 7.8.0
typescript 5.9.3 6.0.3

Bumps the dependencies group with 1 update in the /lib/database/smdb directory: @prisma/adapter-mariadb.
Bumps the dependencies group with 1 update in the /lib/database/ssmdb2 directory: @prisma/adapter-mariadb.
Bumps the dependencies group with 1 update in the /lib/database/tableWatcher directory: prisma.
Bumps the dependencies group with 2 updates in the /lib/endpoints directory: typia and ts-patch.
Bumps the dependencies group with 2 updates in the /lib/logger directory: @types/node and typescript.
Bumps the dependencies group with 1 update in the /lib/streams directory: amqplib.
Bumps the dependencies group with 2 updates in the /lib/ttl directory: @types/node and typescript.
Bumps the dependencies group with 1 update in the /ranges/cache directory: tsc-alias.
Bumps the dependencies group with 1 update in the /ranges/log directory: tsc-alias.
Bumps the dependencies group with 2 updates in the /ranges/merge directory: amqplib and tsc-alias.
Bumps the dependencies group with 1 update in the /ranges/multicast directory: tsc-alias.
Bumps the dependencies group with 1 update in the /ranges/multicast/proxy directory: amqplib.
Bumps the dependencies group with 1 update in the /ranges/ssmdb2 directory: tsc-alias.
Bumps the dependencies group with 4 updates in the /screens/evaluations directory: tsc-alias, express-rate-limit, jsdom and @types/jsdom.
Bumps the dependencies group with 2 updates in the /screens/images directory: tsc-alias and express-rate-limit.
Bumps the dependencies group with 1 update in the /screens/screenCast directory: amqplib.
Bumps the dependencies group with 2 updates in the /screens/screenManager directory: amqplib and tsc-alias.
Bumps the dependencies group with 3 updates in the /screens/types directory: typescript, typia and ts-patch.
Bumps the dependencies group with 2 updates in the /serverState/runner directory: amqplib and semver.
Bumps the dependencies group with 2 updates in the /utils/recorder directory: @types/node and typescript.

Updates @rjsf/core from 6.4.2 to 6.5.2

Release notes

Sourced from @​rjsf/core'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/core'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

Updates @rjsf/react-bootstrap from 6.4.2 to 6.5.2

Release notes

Sourced from @​rjsf/react-bootstrap'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/react-bootstrap'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

Updates @rjsf/utils from 6.4.2 to 6.5.2

Release notes

Sourced from @​rjsf/utils'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/utils'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

Updates @rjsf/validator-ajv8 from 6.4.2 to 6.5.2

Release notes

Sourced from @​rjsf/validator-ajv8'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/validator-ajv8'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

Updates next from 16.2.3 to 16.2.6

Release notes

Sourced from next's releases.

v16.2.6

[!NOTE] This release contains security fixes and backported bug fixes. It does not include all pending features/changes on canary.

Security Fixes

The following advisories have been addressed:

High:

Moderate:

Low:

Core Changes

  • fix: preserve HTTP access fallbacks during prerender recovery (#92231)
  • Fix fallback route params case in app-page handler (#91737)
  • Fix invalid HTML response for route-level RSC requests in deployment adapter (#91541)
  • Patch setHeader for direct route handlers (#93101)
  • Include deployment id in cacheHandlers keys (#93453)
  • Fix double-encoding of URL pathname parts in client param parsing (#93491)

v16.2.5

[!NOTE] This release contains security fixes and backported bug fixes. It does not include all pending features/changes on canary.

Security Fixes

The following advisories have been addressed:

High:

... (truncated)

Commits
  • ee6e79b v16.2.6
  • afa053d Turbopack: Match proxy matchers with webpack im...

    Description has been truncated

…1 updates

Bumps the dependencies group with 6 updates in the /frontend directory:

| Package | From | To |
| --- | --- | --- |
| [@rjsf/core](https://github.com/rjsf-team/react-jsonschema-form) | `6.4.2` | `6.5.2` |
| [@rjsf/react-bootstrap](https://github.com/rjsf-team/react-jsonschema-form) | `6.4.2` | `6.5.2` |
| [@rjsf/validator-ajv8](https://github.com/rjsf-team/react-jsonschema-form) | `6.4.2` | `6.5.2` |
| [next](https://github.com/vercel/next.js) | `16.2.3` | `16.2.6` |
| [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.5` | `19.2.6` |
| [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.2.5` | `19.2.6` |

Bumps the dependencies group with 5 updates in the /lib/database/local directory:

| Package | From | To |
| --- | --- | --- |
| [@prisma/adapter-pg](https://github.com/prisma/prisma/tree/HEAD/packages/adapter-pg) | `7.7.0` | `7.8.0` |
| [@prisma/client](https://github.com/prisma/prisma/tree/HEAD/packages/client) | `7.7.0` | `7.8.0` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `25.6.0` | `25.7.0` |
| [prisma](https://github.com/prisma/prisma/tree/HEAD/packages/cli) | `7.7.0` | `7.8.0` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.9.3` | `6.0.3` |

Bumps the dependencies group with 1 update in the /lib/database/smdb directory: [@prisma/adapter-mariadb](https://github.com/prisma/prisma/tree/HEAD/packages/adapter-planetscale).
Bumps the dependencies group with 1 update in the /lib/database/ssmdb2 directory: [@prisma/adapter-mariadb](https://github.com/prisma/prisma/tree/HEAD/packages/adapter-planetscale).
Bumps the dependencies group with 1 update in the /lib/database/tableWatcher directory: [prisma](https://github.com/prisma/prisma/tree/HEAD/packages/cli).
Bumps the dependencies group with 2 updates in the /lib/endpoints directory: [typia](https://github.com/samchon/typia) and [ts-patch](https://github.com/nonara/ts-patch).
Bumps the dependencies group with 2 updates in the /lib/logger directory: [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) and [typescript](https://github.com/microsoft/TypeScript).
Bumps the dependencies group with 1 update in the /lib/streams directory: [amqplib](https://github.com/amqp-node/amqplib).
Bumps the dependencies group with 2 updates in the /lib/ttl directory: [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) and [typescript](https://github.com/microsoft/TypeScript).
Bumps the dependencies group with 1 update in the /ranges/cache directory: [tsc-alias](https://github.com/justkey007/tsc-alias).
Bumps the dependencies group with 1 update in the /ranges/log directory: [tsc-alias](https://github.com/justkey007/tsc-alias).
Bumps the dependencies group with 2 updates in the /ranges/merge directory: [amqplib](https://github.com/amqp-node/amqplib) and [tsc-alias](https://github.com/justkey007/tsc-alias).
Bumps the dependencies group with 1 update in the /ranges/multicast directory: [tsc-alias](https://github.com/justkey007/tsc-alias).
Bumps the dependencies group with 1 update in the /ranges/multicast/proxy directory: [amqplib](https://github.com/amqp-node/amqplib).
Bumps the dependencies group with 1 update in the /ranges/ssmdb2 directory: [tsc-alias](https://github.com/justkey007/tsc-alias).
Bumps the dependencies group with 4 updates in the /screens/evaluations directory: [tsc-alias](https://github.com/justkey007/tsc-alias), [express-rate-limit](https://github.com/express-rate-limit/express-rate-limit), [jsdom](https://github.com/jsdom/jsdom) and [@types/jsdom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jsdom).
Bumps the dependencies group with 2 updates in the /screens/images directory: [tsc-alias](https://github.com/justkey007/tsc-alias) and [express-rate-limit](https://github.com/express-rate-limit/express-rate-limit).
Bumps the dependencies group with 1 update in the /screens/screenCast directory: [amqplib](https://github.com/amqp-node/amqplib).
Bumps the dependencies group with 2 updates in the /screens/screenManager directory: [amqplib](https://github.com/amqp-node/amqplib) and [tsc-alias](https://github.com/justkey007/tsc-alias).
Bumps the dependencies group with 3 updates in the /screens/types directory: [typescript](https://github.com/microsoft/TypeScript), [typia](https://github.com/samchon/typia) and [ts-patch](https://github.com/nonara/ts-patch).
Bumps the dependencies group with 2 updates in the /serverState/runner directory: [amqplib](https://github.com/amqp-node/amqplib) and [semver](https://github.com/npm/node-semver).
Bumps the dependencies group with 2 updates in the /utils/recorder directory: [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) and [typescript](https://github.com/microsoft/TypeScript).


Updates `@rjsf/core` from 6.4.2 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.2...6.5.2)

Updates `@rjsf/react-bootstrap` from 6.4.2 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.2...6.5.2)

Updates `@rjsf/utils` from 6.4.2 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.2...6.5.2)

Updates `@rjsf/validator-ajv8` from 6.4.2 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.2...6.5.2)

Updates `next` from 16.2.3 to 16.2.6
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](vercel/next.js@v16.2.3...v16.2.6)

Updates `react` from 19.2.5 to 19.2.6
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v19.2.6/packages/react)

Updates `react-dom` from 19.2.5 to 19.2.6
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v19.2.6/packages/react-dom)

Updates `@prisma/adapter-pg` from 7.7.0 to 7.8.0
- [Release notes](https://github.com/prisma/prisma/releases)
- [Commits](https://github.com/prisma/prisma/commits/7.8.0/packages/adapter-pg)

Updates `@prisma/client` from 7.7.0 to 7.8.0
- [Release notes](https://github.com/prisma/prisma/releases)
- [Commits](https://github.com/prisma/prisma/commits/7.8.0/packages/client)

Updates `@types/node` from 25.6.0 to 25.7.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `prisma` from 7.7.0 to 7.8.0
- [Release notes](https://github.com/prisma/prisma/releases)
- [Commits](https://github.com/prisma/prisma/commits/7.8.0/packages/cli)

Updates `typescript` from 5.9.3 to 6.0.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Commits](microsoft/TypeScript@v5.9.3...v6.0.3)

Updates `@prisma/adapter-mariadb` from 7.7.0 to 7.8.0
- [Release notes](https://github.com/prisma/prisma/releases)
- [Commits](https://github.com/prisma/prisma/commits/7.8.0/packages/adapter-planetscale)

Updates `@prisma/adapter-mariadb` from 7.7.0 to 7.8.0
- [Release notes](https://github.com/prisma/prisma/releases)
- [Commits](https://github.com/prisma/prisma/commits/7.8.0/packages/adapter-planetscale)

Updates `prisma` from 7.7.0 to 7.8.0
- [Release notes](https://github.com/prisma/prisma/releases)
- [Commits](https://github.com/prisma/prisma/commits/7.8.0/packages/cli)

Updates `typia` from 12.0.2 to 12.1.1
- [Release notes](https://github.com/samchon/typia/releases)
- [Commits](samchon/typia@v12.0.2...v12.1.1)

Updates `ts-patch` from 3.3.0 to 4.0.1
- [Release notes](https://github.com/nonara/ts-patch/releases)
- [Changelog](https://github.com/nonara/ts-patch/blob/master/CHANGELOG.md)
- [Commits](nonara/ts-patch@v3.3.0...v4.0.1)

Updates `@types/node` from 25.6.0 to 25.7.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `typescript` from 5.9.3 to 6.0.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Commits](microsoft/TypeScript@v5.9.3...v6.0.3)

Updates `amqplib` from 1.0.3 to 2.0.1
- [Release notes](https://github.com/amqp-node/amqplib/releases)
- [Changelog](https://github.com/amqp-node/amqplib/blob/main/CHANGELOG.md)
- [Commits](amqp-node/amqplib@v1.0.3...v2.0.1)

Updates `@types/node` from 25.6.0 to 25.7.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `typescript` from 5.9.3 to 6.0.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Commits](microsoft/TypeScript@v5.9.3...v6.0.3)

Updates `tsc-alias` from 1.8.16 to 1.8.17
- [Release notes](https://github.com/justkey007/tsc-alias/releases)
- [Commits](justkey007/tsc-alias@v1.8.16...v1.8.17)

Updates `tsc-alias` from 1.8.16 to 1.8.17
- [Release notes](https://github.com/justkey007/tsc-alias/releases)
- [Commits](justkey007/tsc-alias@v1.8.16...v1.8.17)

Updates `amqplib` from 1.0.3 to 2.0.1
- [Release notes](https://github.com/amqp-node/amqplib/releases)
- [Changelog](https://github.com/amqp-node/amqplib/blob/main/CHANGELOG.md)
- [Commits](amqp-node/amqplib@v1.0.3...v2.0.1)

Updates `tsc-alias` from 1.8.16 to 1.8.17
- [Release notes](https://github.com/justkey007/tsc-alias/releases)
- [Commits](justkey007/tsc-alias@v1.8.16...v1.8.17)

Updates `tsc-alias` from 1.8.16 to 1.8.17
- [Release notes](https://github.com/justkey007/tsc-alias/releases)
- [Commits](justkey007/tsc-alias@v1.8.16...v1.8.17)

Updates `amqplib` from 1.0.3 to 2.0.1
- [Release notes](https://github.com/amqp-node/amqplib/releases)
- [Changelog](https://github.com/amqp-node/amqplib/blob/main/CHANGELOG.md)
- [Commits](amqp-node/amqplib@v1.0.3...v2.0.1)

Updates `tsc-alias` from 1.8.16 to 1.8.17
- [Release notes](https://github.com/justkey007/tsc-alias/releases)
- [Commits](justkey007/tsc-alias@v1.8.16...v1.8.17)

Updates `tsc-alias` from 1.8.16 to 1.8.17
- [Release notes](https://github.com/justkey007/tsc-alias/releases)
- [Commits](justkey007/tsc-alias@v1.8.16...v1.8.17)

Updates `express-rate-limit` from 8.3.2 to 8.5.1
- [Release notes](https://github.com/express-rate-limit/express-rate-limit/releases)
- [Commits](express-rate-limit/express-rate-limit@v8.3.2...v8.5.1)

Updates `jsdom` from 29.0.2 to 29.1.1
- [Release notes](https://github.com/jsdom/jsdom/releases)
- [Commits](jsdom/jsdom@v29.0.2...v29.1.1)

Updates `@types/jsdom` from 28.0.1 to 28.0.3
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jsdom)

Updates `tsc-alias` from 1.8.16 to 1.8.17
- [Release notes](https://github.com/justkey007/tsc-alias/releases)
- [Commits](justkey007/tsc-alias@v1.8.16...v1.8.17)

Updates `express-rate-limit` from 8.3.2 to 8.5.1
- [Release notes](https://github.com/express-rate-limit/express-rate-limit/releases)
- [Commits](express-rate-limit/express-rate-limit@v8.3.2...v8.5.1)

Updates `amqplib` from 1.0.3 to 2.0.1
- [Release notes](https://github.com/amqp-node/amqplib/releases)
- [Changelog](https://github.com/amqp-node/amqplib/blob/main/CHANGELOG.md)
- [Commits](amqp-node/amqplib@v1.0.3...v2.0.1)

Updates `amqplib` from 1.0.3 to 2.0.1
- [Release notes](https://github.com/amqp-node/amqplib/releases)
- [Changelog](https://github.com/amqp-node/amqplib/blob/main/CHANGELOG.md)
- [Commits](amqp-node/amqplib@v1.0.3...v2.0.1)

Updates `tsc-alias` from 1.8.16 to 1.8.17
- [Release notes](https://github.com/justkey007/tsc-alias/releases)
- [Commits](justkey007/tsc-alias@v1.8.16...v1.8.17)

Updates `typescript` from 5.9.3 to 6.0.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Commits](microsoft/TypeScript@v5.9.3...v6.0.3)

Updates `typia` from 12.0.2 to 12.1.1
- [Release notes](https://github.com/samchon/typia/releases)
- [Commits](samchon/typia@v12.0.2...v12.1.1)

Updates `ts-patch` from 3.3.0 to 4.0.1
- [Release notes](https://github.com/nonara/ts-patch/releases)
- [Changelog](https://github.com/nonara/ts-patch/blob/master/CHANGELOG.md)
- [Commits](nonara/ts-patch@v3.3.0...v4.0.1)

Updates `amqplib` from 1.0.3 to 2.0.1
- [Release notes](https://github.com/amqp-node/amqplib/releases)
- [Changelog](https://github.com/amqp-node/amqplib/blob/main/CHANGELOG.md)
- [Commits](amqp-node/amqplib@v1.0.3...v2.0.1)

Updates `semver` from 7.7.4 to 7.8.0
- [Release notes](https://github.com/npm/node-semver/releases)
- [Changelog](https://github.com/npm/node-semver/blob/main/CHANGELOG.md)
- [Commits](npm/node-semver@v7.7.4...v7.8.0)

Updates `@types/node` from 25.6.0 to 25.7.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `typescript` from 5.9.3 to 6.0.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Commits](microsoft/TypeScript@v5.9.3...v6.0.3)

---
updated-dependencies:
- dependency-name: "@rjsf/core"
  dependency-version: 6.5.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@rjsf/react-bootstrap"
  dependency-version: 6.5.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@rjsf/utils"
  dependency-version: 6.5.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@rjsf/validator-ajv8"
  dependency-version: 6.5.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: next
  dependency-version: 16.2.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: react
  dependency-version: 19.2.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: react-dom
  dependency-version: 19.2.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@prisma/adapter-pg"
  dependency-version: 7.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@prisma/client"
  dependency-version: 7.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@types/node"
  dependency-version: 25.7.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: prisma
  dependency-version: 7.8.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: typescript
  dependency-version: 6.0.3
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: "@prisma/adapter-mariadb"
  dependency-version: 7.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@prisma/adapter-mariadb"
  dependency-version: 7.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: prisma
  dependency-version: 7.8.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: typia
  dependency-version: 12.1.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: ts-patch
  dependency-version: 4.0.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: "@types/node"
  dependency-version: 25.7.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: typescript
  dependency-version: 6.0.3
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: amqplib
  dependency-version: 2.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: "@types/node"
  dependency-version: 25.7.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: typescript
  dependency-version: 6.0.3
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: tsc-alias
  dependency-version: 1.8.17
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: tsc-alias
  dependency-version: 1.8.17
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: amqplib
  dependency-version: 2.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: tsc-alias
  dependency-version: 1.8.17
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: tsc-alias
  dependency-version: 1.8.17
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: amqplib
  dependency-version: 2.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: tsc-alias
  dependency-version: 1.8.17
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: tsc-alias
  dependency-version: 1.8.17
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: express-rate-limit
  dependency-version: 8.5.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: jsdom
  dependency-version: 29.1.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@types/jsdom"
  dependency-version: 28.0.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: tsc-alias
  dependency-version: 1.8.17
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: express-rate-limit
  dependency-version: 8.5.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: amqplib
  dependency-version: 2.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: amqplib
  dependency-version: 2.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: tsc-alias
  dependency-version: 1.8.17
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: typescript
  dependency-version: 6.0.3
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: typia
  dependency-version: 12.1.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: ts-patch
  dependency-version: 4.0.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: amqplib
  dependency-version: 2.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: semver
  dependency-version: 7.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@types/node"
  dependency-version: 25.7.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: typescript
  dependency-version: 6.0.3
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
...

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 12, 2026
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github May 15, 2026

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot Bot closed this May 15, 2026
@dependabot dependabot Bot deleted the dependabot/npm_and_yarn/frontend/development/dependencies-afb29388a3 branch May 15, 2026 18:23
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