You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+10-5Lines changed: 10 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,6 +16,16 @@ should change the heading of the (upcoming) version to include a major version b
16
16
17
17
-->
18
18
19
+
# 6.8.0
20
+
21
+
## @rjsf/validator-cfworker
22
+
23
+
- Added an eval-free, draft-2020-12 validator package backed by `@cfworker/json-schema`, including undefined form-data normalization and per-schema-id caching, fixing [#3269](https://github.com/rjsf-team/react-jsonschema-form/issues/3269) and contributing to [#4923](https://github.com/rjsf-team/react-jsonschema-form/issues/4923)
24
+
25
+
## Dev / docs / playground
26
+
27
+
- Added `@rjsf/validator-cfworker` to the playground validator selector and API documentation
28
+
19
29
# 6.7.1
20
30
21
31
## @rjsf/core
@@ -134,18 +144,13 @@ should change the heading of the (upcoming) version to include a major version b
134
144
- Updated `transformRJSFValidationErrors()` to detect field name for `allOf` and `if-then-else` by falling back to the root schema to find the title, fixing [#5134](https://github.com/rjsf-team/react-jsonschema-form/issues/5134)
135
145
- Updated the `ata-validator` dependency to `^1.0.0`, its first stable release; no API changes for `@rjsf/validator-ata` consumers ([#5157](https://github.com/rjsf-team/react-jsonschema-form/pull/5157))
136
146
137
-
## @rjsf/validator-cfworker
138
-
139
-
- Added an eval-free, draft-2020-12 validator package backed by `@cfworker/json-schema`, including undefined form-data normalization and per-schema-id caching, fixing [#3269](https://github.com/rjsf-team/react-jsonschema-form/issues/3269) and contributing to [#4923](https://github.com/rjsf-team/react-jsonschema-form/issues/4923)
140
-
141
147
## Dev / docs / playground
142
148
143
149
- Updated `@rjsf/snapshots` to add a test case to `formTests` that verifies the new Cycle detection UI
144
150
- Updated the `custom-templates.md` and `custom-widgets-fields.md` for the new feature
145
151
- Updated `utility-functions.md` to document `logUnsupportedDefaultForEnum()`
146
152
- Updated the playground to add a selector for the `nestedDefaultsPrecedence` option
147
153
- Replaced npm with pnpm v10 for development
148
-
- Added `@rjsf/validator-cfworker` to the playground validator selector and API documentation
Copy file name to clipboardExpand all lines: packages/validator-cfworker/README.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,7 @@
1
1
# @rjsf/validator-cfworker
2
2
3
-
`@rjsf/validator-cfworker` is an additional validator option for CSP-constrained RJSF users. It uses [`@cfworker/json-schema`](https://github.com/cfworker/cfworker/tree/main/packages/json-schema) to interpret schemas without `eval` or `new Function`, and defaults to JSON Schema draft 2020-12.
3
+
`@rjsf/validator-cfworker` is an additional validator option for CSP-constrained RJSF users.
4
+
It uses [`@cfworker/json-schema`](https://github.com/cfworker/cfworker/tree/main/packages/json-schema) to interpret schemas without `eval` or `new Function`, and defaults to JSON Schema draft 2020-12.
4
5
5
6
It is not an AJV replacement. Choose it when an eval-free runtime is more important than AJV-specific keywords, extensions, localization, or code generation.
0 commit comments