Skip to content

Commit 805e397

Browse files
nickgrosJonaszJestemheath-freenomezxbodyacwendtxealth
authored
Merge changes in main to rjsf-v6 (#3996)
Co-authored-by: Jonasz Wiącek <[email protected]> Co-authored-by: Heath C <[email protected]> Co-authored-by: Bogdan Savluk <[email protected]> Co-authored-by: Christian Wendt <[email protected]> Co-authored-by: Ben Lambert <[email protected]> Co-authored-by: David R. Bild <[email protected]> Co-authored-by: Ariqun <[email protected]> fix(utils): direct lodash function import to improve bundling on library client side (#3976) fix: #3961 resolve all recurse list for object properties (#3981) fix gap in outline when label is hidden (#3984) Fix: Expose the internal `ajv` variable in the validator implementation classes (#3991) Fixes: #3972 indirectly by exposing the `ajv` variable for use in the issue
1 parent d7b59a3 commit 805e397

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+861
-925
lines changed

CHANGELOG.md

+34
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,40 @@ it according to semantic versioning. For example, if your PR adds a breaking cha
1515
should change the heading of the (upcoming) version to include a major version bump.
1616
1717
-->
18+
# 5.15.1
19+
20+
## @rjsf/core
21+
22+
- fix `getFieldNames`. Now correctly defines an array of primitives.
23+
24+
## @rjsf/validator-ajv6
25+
26+
- Updated the `AJV6Validator` class to expose the internal `ajv` object, allowing access to support a fix related to [#3972](https://github.com/rjsf-team/react-jsonschema-form/issues/3972)
27+
28+
## @rjsf/validator-ajv8
29+
30+
- Updated the `AJV8Validator` class to expose the internal `ajv` object, allowing access to support a fix related to [#3972](https://github.com/rjsf-team/react-jsonschema-form/issues/3972)
31+
32+
## Dev / docs / playground
33+
34+
- Updated the documentation to describe how to use the newly exposed `ajv` variable
35+
36+
# 5.15.0
37+
38+
## @rjsf/mui
39+
40+
- fix gap in text and select widget outlines when `"ui:label": false` is specified.
41+
42+
## @rjsf/utils
43+
44+
- Updated `resolveAllReferences()` to use own recurse list for each object properties, fixing [#3961](https://github.com/rjsf-team/react-jsonschema-form/issues/3961)
45+
- Added an experimental flag `allOf` to `experimental_defaultFormStateBehavior` for populating defaults when using `allOf` schemas [#3969](https://github.com/rjsf-team/react-jsonschema-form/pull/3969)
46+
47+
## Dev / playground
48+
49+
- add missing typescript project reference for `utils` in `validator-ajv6` and `validator-ajv8` packages tsconfigs
50+
- Added a dropdown for changing the `experimental_defaultFormStateBehavior.allOf` behaviour in the playground
51+
1852
# 5.14.3
1953

2054
## @rjsf/core

lerna.json

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

package-lock.json

+68-68
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/antd/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@rjsf/antd",
3-
"version": "5.14.2",
3+
"version": "5.15.0",
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.22.15",
5757
"@babel/preset-react": "^7.22.15",
5858
"@babel/preset-typescript": "^7.22.15",
59-
"@rjsf/core": "^5.14.2",
60-
"@rjsf/snapshot-tests": "^5.14.2",
61-
"@rjsf/utils": "^5.14.2",
62-
"@rjsf/validator-ajv8": "^5.14.2",
59+
"@rjsf/core": "^5.15.0",
60+
"@rjsf/snapshot-tests": "^5.15.0",
61+
"@rjsf/utils": "^5.15.0",
62+
"@rjsf/validator-ajv8": "^5.15.0",
6363
"@rollup/plugin-replace": "^5.0.2",
6464
"@types/jest": "^29.5.5",
6565
"@types/lodash": "^4.14.198",

0 commit comments

Comments
 (0)