Skip to content

Commit 9f6acd9

Browse files
committed
Merge branch 'main' into onchange-validation-errors
2 parents a32311e + e292164 commit 9f6acd9

File tree

24 files changed

+493
-148
lines changed

24 files changed

+493
-148
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,24 @@ should change the heading of the (upcoming) version to include a major version b
2222

2323
- Fixed issue with schema if/then/else conditions where switching to then/else subschemas did not reflect the actual validation errors in the onChange event, fixing [#4249](https://github.com/rjsf-team/react-jsonschema-form/issues/4249) and improving performance.
2424

25+
## @rjsf/utils
26+
27+
- Fixed issue with assigning default values to formData with deeply nested required properties, fixing [#4399](https://github.com/rjsf-team/react-jsonschema-form/issues/4399)
28+
2529
# 5.23.2
2630

2731
## @rjsf/core
2832

2933
- Fix default value population when switching between options in `MultiSchemaField` [#4375](https://github.com/rjsf-team/react-jsonschema-form/pull/4375). Fixes [#4367](https://github.com/rjsf-team/react-jsonschema-form/issues/4367)
3034

35+
## @rjsf/utils
36+
37+
- Short-circuit `File` and `Date` constructor access in isObject to optimize performance in scenarios where `globalThis` is a `Proxy` that incurs overhead for each class constructor access ([#4413](https://github.com/rjsf-team/react-jsonschema-form/pull/4413)). Fixes [#4409](https://github.com/rjsf-team/react-jsonschema-form/issues/4409)
38+
39+
## @rjsf/validator-ajv8
40+
41+
- Fixed issue where `ui:title` in anyOf/oneOf is not shown in error messages. Fixes [#4368](https://github.com/rjsf-team/react-jsonschema-form/issues/4368)
42+
3143
# 5.23.1
3244

3345
## @rjsf/chakra-ui

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"packages": ["packages/*"],
3-
"version": "5.23.1",
3+
"version": "5.23.2",
44
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
55
"useNx": true,
66
"useWorkspaces": true

package-lock.json

Lines changed: 68 additions & 68 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/antd/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@rjsf/antd",
3-
"version": "5.23.1",
3+
"version": "5.23.2",
44
"description": "Ant Design theme, fields and widgets for react-jsonschema-form",
55
"main": "dist/index.js",
66
"module": "lib/index.js",
@@ -56,10 +56,10 @@
5656
"@babel/preset-env": "^7.23.9",
5757
"@babel/preset-react": "^7.23.3",
5858
"@babel/preset-typescript": "^7.23.3",
59-
"@rjsf/core": "^5.23.1",
60-
"@rjsf/snapshot-tests": "^5.23.1",
61-
"@rjsf/utils": "^5.23.1",
62-
"@rjsf/validator-ajv8": "^5.23.1",
59+
"@rjsf/core": "^5.23.2",
60+
"@rjsf/snapshot-tests": "^5.23.2",
61+
"@rjsf/utils": "^5.23.2",
62+
"@rjsf/validator-ajv8": "^5.23.2",
6363
"@rollup/plugin-replace": "^5.0.5",
6464
"@types/jest": "^29.5.12",
6565
"@types/lodash": "^4.14.202",

0 commit comments

Comments
 (0)