Releases: Stranger6667/jsonschema
Releases · Stranger6667/jsonschema
[Rust] Release 0.19.1
Fixed
ipv4
format validation. #512
[Python] Release 0.19.1
Fixed
ipv4
format validation. #512
[Rust] Release 0.19.0
Added
jsonschema::compile
shortcut.
Changed
- Bump MSRV to
1.70
.
Fixed
uuid
format validation.- Combination of
unevaluatedProperties
withallOf
andoneOf
. #496
Deprecated
cli
feature in favor of a separatejsonschema-cli
crate.draft201909
anddraft202012
features. The relevant functionality is now enabled by default.
Performance
uuid
validation viauuid-simd
.
[Python] Release 0.19.0
Fixed
uuid
format validation.- Combination of
unevaluatedProperties
withallOf
andoneOf
. #496
Performance
uuid
validation.
Removed
- Support for Python 3.7.
[Rust] Release 0.18.3
Fixed
- Changing base URI when
$ref
is present in drafts 7 and earlier. - Removed
dbg!
macro.
[Python] Release 0.18.3
Fixed
- Changing base URI when
$ref
is present in drafts 7 and earlier.
[Rust] Release 0.18.2
Fixed
- Ignoring
$schema
in resolved references. - Support integer-valued numbers for
maxItems
,maxLength
,maxProperties
,maxContains
,minItems
,minLength
,minProperties
,minContains
.
Deprecated
with_meta_schemas()
method. Meta schemas are included by default.
[Python] Release 0.18.2
Fixed
- Ignoring
$schema
in resolved references. - Support integer-valued numbers for
maxItems
,maxLength
,maxProperties
,maxContains
,minItems
,minLength
,minProperties
,minContains
.
Deprecated
with_meta_schemas
argument. Meta schemas are included by default.
[Rust] Release 0.18.1
Added
ErrorDescription::into_inner
to retrieve the innerString
value.
[Python] Release 0.18.1
Changed
- Update
pyo3
to0.22
.