Skip to content

Bump the minor-bumps group across 3 directories with 14 updates - #463

Closed
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/browser3/minor-bumps-df2824321e
Closed

Bump the minor-bumps group across 3 directories with 14 updates#463
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/browser3/minor-bumps-df2824321e

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 1, 2026

Copy link
Copy Markdown
Contributor

Bumps the minor-bumps group with 10 updates in the /browser3 directory:

Package From To
@mantine/hooks 9.4.1 9.5.0
@rjsf/core 6.6.2 6.7.1
@rjsf/validator-ajv8 6.6.2 6.7.1
react 19.2.7 19.2.8
react-dom 19.2.7 19.2.8
react-router-dom 7.18.1 7.18.2
@biomejs/biome 2.5.4 2.5.6
@rsbuild/core 2.1.6 2.1.8
cypress 15.18.1 15.19.0
storybook 10.5.2 10.5.5

Bumps the minor-bumps group with 9 updates in the /player3 directory:

Package From To
@mantine/hooks 9.4.1 9.5.0
react 19.2.7 19.2.8
react-dom 19.2.7 19.2.8
react-router-dom 7.18.1 7.18.2
@biomejs/biome 2.5.4 2.5.6
@rsbuild/core 2.1.6 2.1.8
three 0.184.0 0.185.1
@types/three 0.184.1 0.185.1
@rstest/core 0.11.2 0.11.4

Bumps the minor-bumps group with 5 updates in the /upload directory:

Package From To
react 19.2.7 19.2.8
react-dom 19.2.7 19.2.8
react-router-dom 7.18.1 7.18.2
@biomejs/biome 2.5.4 2.5.6
@rsbuild/core 2.1.6 2.1.8

Updates @mantine/hooks from 9.4.1 to 9.5.0

Release notes

Sourced from @​mantine/hooks's releases.

9.5.0 🤖

View changelog with demos on mantine.dev website

Support Mantine development

You can now sponsor Mantine development with OpenCollective. All funds are used to improve Mantine and create new features and components.

Migration to oxc

Mantine has migrated its linting and formatting toolchain from ESLint and Prettier to oxcoxlint is now used as the linter and oxfmt as the formatter. Both tools are written in Rust and are significantly faster than their predecessors, which makes linting and formatting the entire codebase almost instant.

The shared configuration is available as a new oxc-config-mantine package (a replacement for the previous eslint-config-mantine). You can use it in your own projects to follow the same code style and conventions as Mantine.

Native level select in date pickers

DatePicker and all other date picker components (DatePickerInput, MonthPicker, YearPicker, DateTimePicker, etc.) now support the withNativeLevelSelect prop. When enabled, it replaces the calendar header level button with native <select> elements, making it easy to quickly navigate to a specific month and year.

import { DatePicker } from '@mantine/dates';
function Demo() {
return <DatePicker withNativeLevelSelect yearsSelectRange={[2020, 2035]} />;
}

Timeline opposite and alternate content

Timeline Timeline.Item component now supports the opposite prop that allows rendering content on the opposite side of the timeline. When any item has the opposite prop, the timeline switches to a centered layout with content on both sides of the line.

import { Timeline, Text } from '@mantine/core';
import { GitBranchIcon, GitCommitIcon, GitPullRequestIcon, ChatCircleDotsIcon } from '@phosphor-icons/react';
function Demo() {
return (
<Timeline active={1} bulletSize={24} lineWidth={2}>
<Timeline.Item
</tr></table>

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​mantine/hooks since your current version.


Updates @rjsf/core from 6.6.2 to 6.7.1

Release notes

Sourced from @​rjsf/core's releases.

6.7.1

@​rjsf/core

  • Support locale-specific decimal separators in NumberField (e.g. Polish/German comma decimal separators) without breaking non-text widgets like radio buttons and select dropdowns, fixing #5148
  • Fixed ObjectField to preserve the insertion order of additional and pattern properties when keys are renamed to integers, fixing #4631 (#5156)

@​rjsf/utils

  • Added getDecimalSeparator() utility to detect locale-specific decimal separators and updated asNumber() to parse locale-specific decimal strings, partially fixing #5148
  • Fixed a regression where getDefaultFormState() with experimental_defaultFormStateBehavior.arrayMinItems.populate = 'never' padded arrays with null entries up to minItems, fixing #5163
    • Optional arrays with no data are now omitted (unchanged) while required arrays with no data default to [], letting the validator report the minItems violation instead of surfacing invalid null items

@​rjsf/validator-ata

  • Updated the ata-validator dependency to ^1.1.0, which fixes a stack overflow in browser environments for schemas its JS engine cannot compile and shrinks the install footprint via per-platform optional packages (#5162)

Dev / docs / playground

  • Updated utility-functions.md to document getDecimalSeparator()
  • Removed bump-peer-deps script, pnpm workspaces now handles this for us.

6.7.0

New feature

  • We added CyclicSchemaField and CyclicSchemaExpandTemplate to prevent infinite cyclic expansion of schemas. If you want to override the UI for this, you can customize your own CyclicSchemaExpandTemplate
  • Added new nestedDefaultPrecedence option to experimental_defaultFormStateBehavior

@​rjsf/antd

  • Added CyclicSchemaExpandTemplate to the list of templates for the theme, updating snapshots accordingly
  • Show selected option descriptions, fixing (#4214)

@​rjsf/chakra-ui

  • Added CyclicSchemaExpandTemplate to the list of templates for the theme, updating snapshots accordingly
  • Show selected option descriptions, fixing (#4214)

@​rjsf/core

  • Fixed #3907 and #4262 as follows:
    • Added CyclicSchemaExpandTemplate to the list of templates for the theme, updating snapshots accordingly
    • Added CyclicSchemaField to the list of fields, that renders the CyclicSchemaExpandTemplate initially and, if expanded, will render the SchemaField with the RJSF_REF_CYCLE_KEY tag turned off
    • Updated SchemaForm to render the CyclicSchemaField when the schema contains the RJSF_REF_CYCLE_KEY set to true
  • Fixed array fields with empty tuple items and schema-valued additionalItems so clicking add renders the additional item field, fixing #3791
  • Added a warning when a select widget schema default is not present in the enum options, fixing #4494
  • Fixed SchemaField so that a schema with a primitive or array type alongside a non-select oneOf/anyOf no longer renders a spurious duplicate input above the option selector, fixing #5119
  • Fixed MultiSchemaField to propagate the parent schema's type to option sub-schemas that don't define their own, so the correct widget (e.g. StringField) renders for the selected option instead of FallbackField, fixing #5119
  • Fixed nested constAsDefaults values being skipped in matching conditional allOf schemas, fixing #4963
  • Fixed processPendingChange so that clearing a string field that has a schema default value no longer re-applies the default, fixing #5125
  • Fixed a regression introduced in #5136 where clearing a second field caused a previously-cleared field to be re-populated with its schema default; uses JSON.parse(JSON.stringify(...)) to strip undefined-valued keys from formData before AJV validation so that the #4518 fix is preserved

... (truncated)

Changelog

Sourced from @​rjsf/core's changelog.

6.7.1

@​rjsf/core

  • Support locale-specific decimal separators in NumberField (e.g. Polish/German comma decimal separators) without breaking non-text widgets like radio buttons and select dropdowns, fixing #5148
  • Fixed ObjectField to preserve the insertion order of additional and pattern properties when keys are renamed to integers, fixing #4631 (#5156)

@​rjsf/utils

  • Added getDecimalSeparator() utility to detect locale-specific decimal separators and updated asNumber() to parse locale-specific decimal strings, partially fixing #5148
  • Fixed a regression where getDefaultFormState() with experimental_defaultFormStateBehavior.arrayMinItems.populate = 'never' padded arrays with null entries up to minItems, fixing #5163
    • Optional arrays with no data are now omitted (unchanged) while required arrays with no data default to [], letting the validator report the minItems violation instead of surfacing invalid null items

@​rjsf/validator-ata

  • Updated the ata-validator dependency to ^1.1.0, which fixes a stack overflow in browser environments for schemas its JS engine cannot compile and shrinks the install footprint via per-platform optional packages (#5162)

Dev / docs / playground

  • Updated utility-functions.md to document getDecimalSeparator()
  • Removed bump-peer-deps script, pnpm workspaces now handles this for us.

6.7.0

@​rjsf/antd

  • Added CyclicSchemaExpandTemplate to the list of templates for the theme, updating snapshots accordingly
  • Show selected option descriptions, fixing (#4214)

@​rjsf/chakra-ui

  • Added CyclicSchemaExpandTemplate to the list of templates for the theme, updating snapshots accordingly
  • Show selected option descriptions, fixing (#4214)

@​rjsf/core

  • Fixed #3907 and #4262 as follows:
    • Added CyclicSchemaExpandTemplate to the list of templates for the theme, updating snapshots accordingly
    • Added CyclicSchemaField to the list of fields, that renders the CyclicSchemaExpandTemplate initially and, if expanded, will render the SchemaField with the RJSF_REF_CYCLE_KEY tag turned off
    • Updated SchemaForm to render the CyclicSchemaField when the schema contains the RJSF_REF_CYCLE_KEY set to true
  • Fixed array fields with empty tuple items and schema-valued additionalItems so clicking add renders the additional item field, fixing #3791
  • Added a warning when a select widget schema default is not present in the enum options, fixing #4494
  • Fixed SchemaField so that a schema with a primitive or array type alongside a non-select oneOf/anyOf no longer renders a spurious duplicate input above the option selector, fixing #5119
  • Fixed MultiSchemaField to propagate the parent schema's type to option sub-schemas that don't define their own, so the correct widget (e.g. StringField) renders for the selected option instead of FallbackField, fixing #5119
  • Fixed nested constAsDefaults values being skipped in matching conditional allOf schemas, fixing #4963
  • Fixed processPendingChange so that clearing a string field that has a schema default value no longer re-applies the default, fixing #5125
  • Fixed a regression introduced in #5136 where clearing a second field caused a previously-cleared field to be re-populated with its schema default; uses JSON.parse(JSON.stringify(...)) to strip undefined-valued keys from formData before AJV validation so that the #4518 fix is preserved
  • Show selected option descriptions, fixing (#4214)
  • Fixed ObjectField's "Add" button for additionalProperties schemas containing a $ref so the new item's default value is computed via getDefaultFormState() against the fully-resolved referenced schema (recursively populating nested defaults) instead of only reading the resolved schema's own top-level default, which discarded the sibling default and any nested property defaults, fixing #4266

... (truncated)

Commits
  • b30b9a9 Releasing 6.7.1
  • 344443e chore(deps): bump fast-uri from 3.1.4 to 4.1.1 (#5166)
  • e73b960 Fix 5163: stop padding minItems arrays with null under arrayMinItems.populate...
  • 0e31f51 Remove bump-peer-deps (#5161)
  • bc95051 Fix 4631: preserve additional property order for numeric keys (#5156)
  • c67ed34 chore(deps): bump fast-uri from 3.1.2 to 3.1.4 (#5165)
  • 7a3caf8 fix(core): support locale-specific decimal separators in NumberField (#5148)
  • ec7d6ac chore: bump ata-validator to ^1.1.0 in @​rjsf/validator-ata (#5162)
  • eaeed10 Releasing 6.7.0 (#5160)
  • a9f1f43 Clarify playground example property names (#5158)
  • Additional commits viewable in compare view

Updates @rjsf/utils from 6.6.2 to 6.7.1

Release notes

Sourced from @​rjsf/utils's releases.

6.7.1

@​rjsf/core

  • Support locale-specific decimal separators in NumberField (e.g. Polish/German comma decimal separators) without breaking non-text widgets like radio buttons and select dropdowns, fixing #5148
  • Fixed ObjectField to preserve the insertion order of additional and pattern properties when keys are renamed to integers, fixing #4631 (#5156)

@​rjsf/utils

  • Added getDecimalSeparator() utility to detect locale-specific decimal separators and updated asNumber() to parse locale-specific decimal strings, partially fixing #5148
  • Fixed a regression where getDefaultFormState() with experimental_defaultFormStateBehavior.arrayMinItems.populate = 'never' padded arrays with null entries up to minItems, fixing #5163
    • Optional arrays with no data are now omitted (unchanged) while required arrays with no data default to [], letting the validator report the minItems violation instead of surfacing invalid null items

@​rjsf/validator-ata

  • Updated the ata-validator dependency to ^1.1.0, which fixes a stack overflow in browser environments for schemas its JS engine cannot compile and shrinks the install footprint via per-platform optional packages (#5162)

Dev / docs / playground

  • Updated utility-functions.md to document getDecimalSeparator()
  • Removed bump-peer-deps script, pnpm workspaces now handles this for us.

6.7.0

New feature

  • We added CyclicSchemaField and CyclicSchemaExpandTemplate to prevent infinite cyclic expansion of schemas. If you want to override the UI for this, you can customize your own CyclicSchemaExpandTemplate
  • Added new nestedDefaultPrecedence option to experimental_defaultFormStateBehavior

@​rjsf/antd

  • Added CyclicSchemaExpandTemplate to the list of templates for the theme, updating snapshots accordingly
  • Show selected option descriptions, fixing (#4214)

@​rjsf/chakra-ui

  • Added CyclicSchemaExpandTemplate to the list of templates for the theme, updating snapshots accordingly
  • Show selected option descriptions, fixing (#4214)

@​rjsf/core

  • Fixed #3907 and #4262 as follows:
    • Added CyclicSchemaExpandTemplate to the list of templates for the theme, updating snapshots accordingly
    • Added CyclicSchemaField to the list of fields, that renders the CyclicSchemaExpandTemplate initially and, if expanded, will render the SchemaField with the RJSF_REF_CYCLE_KEY tag turned off
    • Updated SchemaForm to render the CyclicSchemaField when the schema contains the RJSF_REF_CYCLE_KEY set to true
  • Fixed array fields with empty tuple items and schema-valued additionalItems so clicking add renders the additional item field, fixing #3791
  • Added a warning when a select widget schema default is not present in the enum options, fixing #4494
  • Fixed SchemaField so that a schema with a primitive or array type alongside a non-select oneOf/anyOf no longer renders a spurious duplicate input above the option selector, fixing #5119
  • Fixed MultiSchemaField to propagate the parent schema's type to option sub-schemas that don't define their own, so the correct widget (e.g. StringField) renders for the selected option instead of FallbackField, fixing #5119
  • Fixed nested constAsDefaults values being skipped in matching conditional allOf schemas, fixing #4963
  • Fixed processPendingChange so that clearing a string field that has a schema default value no longer re-applies the default, fixing #5125
  • Fixed a regression introduced in #5136 where clearing a second field caused a previously-cleared field to be re-populated with its schema default; uses JSON.parse(JSON.stringify(...)) to strip undefined-valued keys from formData before AJV validation so that the #4518 fix is preserved

... (truncated)

Changelog

Sourced from @​rjsf/utils's changelog.

6.7.1

@​rjsf/core

  • Support locale-specific decimal separators in NumberField (e.g. Polish/German comma decimal separators) without breaking non-text widgets like radio buttons and select dropdowns, fixing #5148
  • Fixed ObjectField to preserve the insertion order of additional and pattern properties when keys are renamed to integers, fixing #4631 (#5156)

@​rjsf/utils

  • Added getDecimalSeparator() utility to detect locale-specific decimal separators and updated asNumber() to parse locale-specific decimal strings, partially fixing #5148
  • Fixed a regression where getDefaultFormState() with experimental_defaultFormStateBehavior.arrayMinItems.populate = 'never' padded arrays with null entries up to minItems, fixing #5163
    • Optional arrays with no data are now omitted (unchanged) while required arrays with no data default to [], letting the validator report the minItems violation instead of surfacing invalid null items

@​rjsf/validator-ata

  • Updated the ata-validator dependency to ^1.1.0, which fixes a stack overflow in browser environments for schemas its JS engine cannot compile and shrinks the install footprint via per-platform optional packages (#5162)

Dev / docs / playground

  • Updated utility-functions.md to document getDecimalSeparator()
  • Removed bump-peer-deps script, pnpm workspaces now handles this for us.

6.7.0

@​rjsf/antd

  • Added CyclicSchemaExpandTemplate to the list of templates for the theme, updating snapshots accordingly
  • Show selected option descriptions, fixing (#4214)

@​rjsf/chakra-ui

  • Added CyclicSchemaExpandTemplate to the list of templates for the theme, updating snapshots accordingly
  • Show selected option descriptions, fixing (#4214)

@​rjsf/core

  • Fixed #3907 and #4262 as follows:
    • Added CyclicSchemaExpandTemplate to the list of templates for the theme, updating snapshots accordingly
    • Added CyclicSchemaField to the list of fields, that renders the CyclicSchemaExpandTemplate initially and, if expanded, will render the SchemaField with the RJSF_REF_CYCLE_KEY tag turned off
    • Updated SchemaForm to render the CyclicSchemaField when the schema contains the RJSF_REF_CYCLE_KEY set to true
  • Fixed array fields with empty tuple items and schema-valued additionalItems so clicking add renders the additional item field, fixing #3791
  • Added a warning when a select widget schema default is not present in the enum options, fixing #4494
  • Fixed SchemaField so that a schema with a primitive or array type alongside a non-select oneOf/anyOf no longer renders a spurious duplicate input above the option selector, fixing #5119
  • Fixed MultiSchemaField to propagate the parent schema's type to option sub-schemas that don't define their own, so the correct widget (e.g. StringField) renders for the selected option instead of FallbackField, fixing #5119
  • Fixed nested constAsDefaults values being skipped in matching conditional allOf schemas, fixing #4963
  • Fixed processPendingChange so that clearing a string field that has a schema default value no longer re-applies the default, fixing #5125
  • Fixed a regression introduced in #5136 where clearing a second field caused a previously-cleared field to be re-populated with its schema default; uses JSON.parse(JSON.stringify(...)) to strip undefined-valued keys from formData before AJV validation so that the #4518 fix is preserved
  • Show selected option descriptions, fixing (#4214)
  • Fixed ObjectField's "Add" button for additionalProperties schemas containing a $ref so the new item's default value is computed via getDefaultFormState() against the fully-resolved referenced schema (recursively populating nested defaults) instead of only reading the resolved schema's own top-level default, which discarded the sibling default and any nested property defaults, fixing #4266

... (truncated)

Commits
  • b30b9a9 Releasing 6.7.1
  • 344443e chore(deps): bump fast-uri from 3.1.4 to 4.1.1 (#5166)
  • e73b960 Fix 5163: stop padding minItems arrays with null under arrayMinItems.populate...
  • 0e31f51 Remove bump-peer-deps (#5161)
  • bc95051 Fix 4631: preserve additional property order for numeric keys (#5156)
  • c67ed34 chore(deps): bump fast-uri from 3.1.2 to 3.1.4 (#5165)
  • 7a3caf8 fix(core): support locale-specific decimal separators in NumberField (#5148)
  • ec7d6ac chore: bump ata-validator to ^1.1.0 in @​rjsf/validator-ata (#5162)
  • eaeed10 Releasing 6.7.0 (#5160)
  • a9f1f43 Clarify playground example property names (#5158)
  • Additional commits viewable in compare view

Updates @rjsf/validator-ajv8 from 6.6.2 to 6.7.1

Release notes

Sourced from @​rjsf/validator-ajv8's releases.

6.7.1

@​rjsf/core

  • Support locale-specific decimal separators in NumberField (e.g. Polish/German comma decimal separators) without breaking non-text widgets like radio buttons and select dropdowns, fixing #5148
  • Fixed ObjectField to preserve the insertion order of additional and pattern properties when keys are renamed to integers, fixing #4631 (#5156)

@​rjsf/utils

  • Added getDecimalSeparator() utility to detect locale-specific decimal separators and updated asNumber() to parse locale-specific decimal strings, partially fixing #5148
  • Fixed a regression where getDefaultFormState() with experimental_defaultFormStateBehavior.arrayMinItems.populate = 'never' padded arrays with null entries up to minItems, fixing #5163
    • Optional arrays with no data are now omitted (unchanged) while required arrays with no data default to [], letting the validator report the minItems violation instead of surfacing invalid null items

@​rjsf/validator-ata

  • Updated the ata-validator dependency to ^1.1.0, which fixes a stack overflow in browser environments for schemas its JS engine cannot compile and shrinks the install footprint via per-platform optional packages (#5162)

Dev / docs / playground

  • Updated utility-functions.md to document getDecimalSeparator()
  • Removed bump-peer-deps script, pnpm workspaces now handles this for us.

6.7.0

New feature

  • We added CyclicSchemaField and CyclicSchemaExpandTemplate to prevent infinite cyclic expansion of schemas. If you want to override the UI for this, you can customize your own CyclicSchemaExpandTemplate
  • Added new nestedDefaultPrecedence option to experimental_defaultFormStateBehavior

@​rjsf/antd

  • Added CyclicSchemaExpandTemplate to the list of templates for the theme, updating snapshots accordingly
  • Show selected option descriptions, fixing (#4214)

@​rjsf/chakra-ui

  • Added CyclicSchemaExpandTemplate to the list of templates for the theme, updating snapshots accordingly
  • Show selected option descriptions, fixing (#4214)

@​rjsf/core

  • Fixed #3907 and #4262 as follows:
    • Added CyclicSchemaExpandTemplate to the list of templates for the theme, updating snapshots accordingly
    • Added CyclicSchemaField to the list of fields, that renders the CyclicSchemaExpandTemplate initially and, if expanded, will render the SchemaField with the RJSF_REF_CYCLE_KEY tag turned off
    • Updated SchemaForm to render the CyclicSchemaField when the schema contains the RJSF_REF_CYCLE_KEY set to true
  • Fixed array fields with empty tuple items and schema-valued additionalItems so clicking add renders the additional item field, fixing #3791
  • Added a warning when a select widget schema default is not present in the enum options, fixing #4494
  • Fixed SchemaField so that a schema with a primitive or array type alongside a non-select oneOf/anyOf no longer renders a spurious duplicate input above the option selector, fixing #5119
  • Fixed MultiSchemaField to propagate the parent schema's type to option sub-schemas that don't define their own, so the correct widget (e.g. StringField) renders for the selected option instead of FallbackField, fixing #5119
  • Fixed nested constAsDefaults values being skipped in matching conditional allOf schemas, fixing #4963
  • Fixed processPendingChange so that clearing a string field that has a schema default value no longer re-applies the default, fixing #5125
  • Fixed a regression introduced in #5136 where clearing a second field caused a previously-cleared field to be re-populated with its schema default; uses JSON.parse(JSON.stringify(...)) to strip undefined-valued keys from formData before AJV validation so that the #4518 fix is preserved

... (truncated)

Changelog

Sourced from @​rjsf/validator-ajv8's changelog.

6.7.1

@​rjsf/core

  • Support locale-specific decimal separators in NumberField (e.g. Polish/German comma decimal separators) without breaking non-text widgets like radio buttons and select dropdowns, fixing #5148
  • Fixed ObjectField to preserve the insertion order of additional and pattern properties when keys are renamed to integers, fixing #4631 (#5156)

@​rjsf/utils

  • Added getDecimalSeparator() utility to detect locale-specific decimal separators and updated asNumber() to parse locale-specific decimal strings, partially fixing #5148
  • Fixed a regression where getDefaultFormState() with experimental_defaultFormStateBehavior.arrayMinItems.populate = 'never' padded arrays with null entries up to minItems, fixing #5163
    • Optional arrays with no data are now omitted (unchanged) while required arrays with no data default to [], letting the validator report the minItems violation instead of surfacing invalid null items

@​rjsf/validator-ata

  • Updated the ata-validator dependency to ^1.1.0, which fixes a stack overflow in browser environments for schemas its JS engine cannot compile and shrinks the install footprint via per-platform optional packages (#5162)

Dev / docs / playground

  • Updated utility-functions.md to document getDecimalSeparator()
  • Removed bump-peer-deps script, pnpm workspaces now handles this for us.

6.7.0

@​rjsf/antd

  • Added CyclicSchemaExpandTemplate to the list of templates for the theme, updating snapshots accordingly
  • Show selected option descriptions, fixing (#4214)

@​rjsf/chakra-ui

  • Added CyclicSchemaExpandTemplate to the list of templates for the theme, updating snapshots accordingly
  • Show selected option descriptions, fixing (#4214)

@​rjsf/core

  • Fixed #3907 and #4262 as follows:
    • Added CyclicSchemaExpandTemplate to the list of templates for the theme, updating snapshots accordingly
    • Added CyclicSchemaField to the list of fields, that renders the CyclicSchemaExpandTemplate initially and, if expanded, will render the SchemaField with the RJSF_REF_CYCLE_KEY tag turned off
    • Updated SchemaForm to render the CyclicSchemaField when the schema contains the RJSF_REF_CYCLE_KEY set to true
  • Fixed array fields with empty tuple items and schema-valued additionalItems so clicking add renders the additional item field, fixing #3791
  • Added a warning when a select widget schema default is not present in the enum options, fixing #4494
  • Fixed SchemaField so that a schema with a primitive or array type alongside a non-select oneOf/anyOf no longer renders a spurious duplicate input above the option selector, fixing #5119
  • Fixed MultiSchemaField to propagate the parent schema's type to option sub-schemas that don't define their own, so the correct widget (e.g. StringField) renders for the selected option instead of FallbackField, fixing #5119
  • Fixed nested constAsDefaults values being skipped in matching conditional allOf schemas, fixing #4963
  • Fixed processPendingChange so that clearing a string field that has a schema default value no longer re-applies the default, fixing #5125
  • Fixed a regression introduced in #5136 where clearing a second field caused a previously-cleared field to be re-populated with its schema default; uses JSON.parse(JSON.stringify(...)) to strip undefined-valued keys from formData before AJV validation so that the #4518 fix is preserved
  • Show selected option descriptions, fixing (#4214)
  • Fixed ObjectField's "Add" button for additionalProperties schemas containing a $ref so the new item's default value is computed via getDefaultFormState() against the fully-resolved referenced schema (recursively populating nested defaults) instead of only reading the resolved schema's own top-level default, which discarded the sibling default and any nested property defaults, fixing #4266

... (truncated)

Commits
  • b30b9a9 Releasing 6.7.1
  • 344443e chore(deps): bump fast-uri from 3.1.4 to 4.1.1 (#5166)
  • e73b960 Fix 5163: stop padding minItems arrays with null under arrayMinItems.populate...
  • 0e31f51 Remove bump-peer-deps (#5161)
  • bc95051 Fix 4631: preserve additional property order for numeric keys (#5156)
  • c67ed34 chore(deps): bump fast-uri from 3.1.2 to 3.1.4 (#5165)
  • 7a3caf8 fix(core): support locale-specific decimal separators in NumberField (#5148)
  • ec7d6ac chore: bump ata-validator to ^1.1.0 in @​rjsf/validator-ata (#5162)
  • eaeed10 Releasing 6.7.0 (#5160)
  • a9f1f43 Clarify playground example property names (#5158)
  • Additional commits viewable in compare view

Updates react from 19.2.7 to 19.2.8

Release notes

Sourced from react's releases.

19.2.8 (July 21st, 2026)

React Server Components

Commits

Updates react-dom from 19.2.7 to 19.2.8

Release notes

Sourced from react-dom's releases.

19.2.8 (July 21st, 2026)

React Server Components

Commits

Updates react-router-dom from 7.18.1 to 7.18.2

Changelog

Sourced from react-router-dom's changelog.

v7.18.2

Patch Changes

Commits

Updates @biomejs/biome from 2.5.4 to 2.5.6

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.5.6

2.5.6

Patch Changes

  • #11035 0e4b03b Thanks @​ematipico! - Fixed a performance regression in noMisusedPromises that caused type inference to run repeatedly while linting a file.

  • #11043 22ec076 Thanks @​denbezrukov! - Fixed CSS formatting for multiline function arguments preceded by comments:

     .example {
       value: outer(
         1,
         /* comment */
         nested(
    -      first,
    -      second
    -    )
    +        first,
    +        second
    +      )
       );
     }
  • #11007 c9acb25 Thanks @​BTF-Kabir-2020! - Fixed #9195: useHookAtTopLevel no longer reports hooks in named forwardRef components that receive a ref parameter.

  • #10152 50a9bd8 Thanks @​Zelys-DFKH! - Fixed #10131: Biome now correctly parses curried arrow functions in ternary consequents when the inner arrow's parameters use a destructuring pattern, e.g. cond ? (x) => ({ a, b }) => body : alt.

  • #11105 8ffe2b9 Thanks @​dadavidtseng! - Fixed #11092: The noUselessTernary quick fix now preserves operator spacing when simplifying or inverting boolean ternary expressions.

  • #10533 5809875 Thanks @​Mokto! - Fixed #10515: biome check --write was not idempotent on Svelte files — multi-line template literals in <script> blocks and block comments in <style> blocks gained an extra indent level on every run.

  • #11040 0abb620 Thanks @​Mokto! - Fixed an issue where the HTML formatter would duplicate a comment placed directly before a Svelte {@const ...} or {@debug ...} block. The duplication compounded on every subsequent --write, causing the file to grow exponentially.

  • #10858 6d18204 Thanks @​ruidosujeira! - Fixed #10839: Svelte {#each} array destructuring no longer includes spaces inside square brackets, and multiline bind function expressions now indent their getter, setter, and function body correctly.

  • #11009 2c36626 Thanks @​ematipico! - Improved the accuracy of type-aware lint rules by resolving more inferred types. For example, noFloatingPromises now detects floating Promises returned by aliased callbacks and arrays of Promises created by async mapping callbacks.

    The following statements are now reported:

    type AsyncCallback = () => Promise<void>;
    declare const callback: AsyncCallback;
    callback();
    [1, 2, 3].map(async (value) => value);

... (truncated)

ChangelogDescription has been truncated

Bumps the minor-bumps group with 10 updates in the /browser3 directory:

| Package | From | To |
| --- | --- | --- |
| [@mantine/hooks](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/hooks) | `9.4.1` | `9.5.0` |
| [@rjsf/core](https://github.com/rjsf-team/react-jsonschema-form) | `6.6.2` | `6.7.1` |
| [@rjsf/validator-ajv8](https://github.com/rjsf-team/react-jsonschema-form) | `6.6.2` | `6.7.1` |
| [react](https://github.com/react/react/tree/HEAD/packages/react) | `19.2.7` | `19.2.8` |
| [react-dom](https://github.com/react/react/tree/HEAD/packages/react-dom) | `19.2.7` | `19.2.8` |
| [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) | `7.18.1` | `7.18.2` |
| [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `2.5.4` | `2.5.6` |
| [@rsbuild/core](https://github.com/web-infra-dev/rsbuild/tree/HEAD/packages/core) | `2.1.6` | `2.1.8` |
| [cypress](https://github.com/cypress-io/cypress) | `15.18.1` | `15.19.0` |
| [storybook](https://github.com/storybookjs/storybook/tree/HEAD/code/core) | `10.5.2` | `10.5.5` |

Bumps the minor-bumps group with 9 updates in the /player3 directory:

| Package | From | To |
| --- | --- | --- |
| [@mantine/hooks](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/hooks) | `9.4.1` | `9.5.0` |
| [react](https://github.com/react/react/tree/HEAD/packages/react) | `19.2.7` | `19.2.8` |
| [react-dom](https://github.com/react/react/tree/HEAD/packages/react-dom) | `19.2.7` | `19.2.8` |
| [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) | `7.18.1` | `7.18.2` |
| [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `2.5.4` | `2.5.6` |
| [@rsbuild/core](https://github.com/web-infra-dev/rsbuild/tree/HEAD/packages/core) | `2.1.6` | `2.1.8` |
| [three](https://github.com/mrdoob/three.js) | `0.184.0` | `0.185.1` |
| [@types/three](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/three) | `0.184.1` | `0.185.1` |
| [@rstest/core](https://github.com/web-infra-dev/rstest/tree/HEAD/packages/core) | `0.11.2` | `0.11.4` |

Bumps the minor-bumps group with 5 updates in the /upload directory:

| Package | From | To |
| --- | --- | --- |
| [react](https://github.com/react/react/tree/HEAD/packages/react) | `19.2.7` | `19.2.8` |
| [react-dom](https://github.com/react/react/tree/HEAD/packages/react-dom) | `19.2.7` | `19.2.8` |
| [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) | `7.18.1` | `7.18.2` |
| [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `2.5.4` | `2.5.6` |
| [@rsbuild/core](https://github.com/web-infra-dev/rsbuild/tree/HEAD/packages/core) | `2.1.6` | `2.1.8` |



Updates `@mantine/hooks` from 9.4.1 to 9.5.0
- [Release notes](https://github.com/mantinedev/mantine/releases)
- [Changelog](https://github.com/mantinedev/mantine/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mantinedev/mantine/commits/9.5.0/packages/@mantine/hooks)

Updates `@rjsf/core` from 6.6.2 to 6.7.1
- [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.6.2...v6.7.1)

Updates `@rjsf/utils` from 6.6.2 to 6.7.1
- [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.6.2...v6.7.1)

Updates `@rjsf/validator-ajv8` from 6.6.2 to 6.7.1
- [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.6.2...v6.7.1)

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

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

Updates `react-router-dom` from 7.18.1 to 7.18.2
- [Release notes](https://github.com/remix-run/react-router/releases)
- [Changelog](https://github.com/remix-run/react-router/blob/react-router-dom@7.18.2/packages/react-router-dom/CHANGELOG.md)
- [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@7.18.2/packages/react-router-dom)

Updates `@biomejs/biome` from 2.5.4 to 2.5.6
- [Release notes](https://github.com/biomejs/biome/releases)
- [Changelog](https://github.com/biomejs/biome/blob/main/packages/@biomejs/biome/CHANGELOG.md)
- [Commits](https://github.com/biomejs/biome/commits/@biomejs/biome@2.5.6/packages/@biomejs/biome)

Updates `@rsbuild/core` from 2.1.6 to 2.1.8
- [Release notes](https://github.com/web-infra-dev/rsbuild/releases)
- [Commits](https://github.com/web-infra-dev/rsbuild/commits/v2.1.8/packages/core)

Updates `cypress` from 15.18.1 to 15.19.0
- [Release notes](https://github.com/cypress-io/cypress/releases)
- [Changelog](https://github.com/cypress-io/cypress/blob/develop/CHANGELOG.md)
- [Commits](cypress-io/cypress@v15.18.1...v15.19.0)

Updates `storybook` from 10.5.2 to 10.5.5
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v10.5.5/code/core)

Updates `@mantine/hooks` from 9.4.1 to 9.5.0
- [Release notes](https://github.com/mantinedev/mantine/releases)
- [Changelog](https://github.com/mantinedev/mantine/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mantinedev/mantine/commits/9.5.0/packages/@mantine/hooks)

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

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

Updates `react-router-dom` from 7.18.1 to 7.18.2
- [Release notes](https://github.com/remix-run/react-router/releases)
- [Changelog](https://github.com/remix-run/react-router/blob/react-router-dom@7.18.2/packages/react-router-dom/CHANGELOG.md)
- [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@7.18.2/packages/react-router-dom)

Updates `@biomejs/biome` from 2.5.4 to 2.5.6
- [Release notes](https://github.com/biomejs/biome/releases)
- [Changelog](https://github.com/biomejs/biome/blob/main/packages/@biomejs/biome/CHANGELOG.md)
- [Commits](https://github.com/biomejs/biome/commits/@biomejs/biome@2.5.6/packages/@biomejs/biome)

Updates `@rsbuild/core` from 2.1.6 to 2.1.8
- [Release notes](https://github.com/web-infra-dev/rsbuild/releases)
- [Commits](https://github.com/web-infra-dev/rsbuild/commits/v2.1.8/packages/core)

Updates `three` from 0.184.0 to 0.185.1
- [Release notes](https://github.com/mrdoob/three.js/releases)
- [Commits](https://github.com/mrdoob/three.js/commits)

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

Updates `@rstest/core` from 0.11.2 to 0.11.4
- [Release notes](https://github.com/web-infra-dev/rstest/releases)
- [Commits](https://github.com/web-infra-dev/rstest/commits/v0.11.4/packages/core)

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

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

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

Updates `react-router-dom` from 7.18.1 to 7.18.2
- [Release notes](https://github.com/remix-run/react-router/releases)
- [Changelog](https://github.com/remix-run/react-router/blob/react-router-dom@7.18.2/packages/react-router-dom/CHANGELOG.md)
- [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@7.18.2/packages/react-router-dom)

Updates `@biomejs/biome` from 2.5.4 to 2.5.6
- [Release notes](https://github.com/biomejs/biome/releases)
- [Changelog](https://github.com/biomejs/biome/blob/main/packages/@biomejs/biome/CHANGELOG.md)
- [Commits](https://github.com/biomejs/biome/commits/@biomejs/biome@2.5.6/packages/@biomejs/biome)

Updates `@rsbuild/core` from 2.1.6 to 2.1.8
- [Release notes](https://github.com/web-infra-dev/rsbuild/releases)
- [Commits](https://github.com/web-infra-dev/rsbuild/commits/v2.1.8/packages/core)

---
updated-dependencies:
- dependency-name: "@mantine/hooks"
  dependency-version: 9.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-bumps
- dependency-name: "@rjsf/core"
  dependency-version: 6.7.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-bumps
- dependency-name: "@rjsf/utils"
  dependency-version: 6.7.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-bumps
- dependency-name: "@rjsf/validator-ajv8"
  dependency-version: 6.7.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-bumps
- dependency-name: react
  dependency-version: 19.2.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-bumps
- dependency-name: react-dom
  dependency-version: 19.2.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-bumps
- dependency-name: react-router-dom
  dependency-version: 7.18.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-bumps
- dependency-name: "@biomejs/biome"
  dependency-version: 2.5.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-bumps
- dependency-name: "@rsbuild/core"
  dependency-version: 2.1.8
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-bumps
- dependency-name: cypress
  dependency-version: 15.19.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-bumps
- dependency-name: storybook
  dependency-version: 10.5.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-bumps
- dependency-name: "@mantine/hooks"
  dependency-version: 9.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-bumps
- dependency-name: react
  dependency-version: 19.2.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-bumps
- dependency-name: react-dom
  dependency-version: 19.2.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-bumps
- dependency-name: react-router-dom
  dependency-version: 7.18.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-bumps
- dependency-name: "@biomejs/biome"
  dependency-version: 2.5.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-bumps
- dependency-name: "@rsbuild/core"
  dependency-version: 2.1.8
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-bumps
- dependency-name: three
  dependency-version: 0.185.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-bumps
- dependency-name: "@types/three"
  dependency-version: 0.185.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-bumps
- dependency-name: "@rstest/core"
  dependency-version: 0.11.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-bumps
- dependency-name: "@types/three"
  dependency-version: 0.185.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-bumps
- dependency-name: react
  dependency-version: 19.2.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-bumps
- dependency-name: react-dom
  dependency-version: 19.2.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-bumps
- dependency-name: react-router-dom
  dependency-version: 7.18.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-bumps
- dependency-name: "@biomejs/biome"
  dependency-version: 2.5.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-bumps
- dependency-name: "@rsbuild/core"
  dependency-version: 2.1.8
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-bumps
...

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 Aug 1, 2026
@dependabot @github

dependabot Bot commented on behalf of github Aug 1, 2026

Copy link
Copy Markdown
Contributor Author

Superseded by #472.

@dependabot dependabot Bot closed this Aug 1, 2026
@dependabot
dependabot Bot deleted the dependabot/npm_and_yarn/browser3/minor-bumps-df2824321e branch August 1, 2026 14:51
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