jsonschema_rs 0.46.9 → 0.46.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +9 -1
- data/Cargo.toml +2 -2
- data/ext/jsonschema/Cargo.lock +7 -7
- data/ext/jsonschema/Cargo.toml +3 -3
- data/lib/jsonschema/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f602cda016a40d57191148d7552e7df55349dc5ce714cef366d91167ce8330e0
|
|
4
|
+
data.tar.gz: 656d8ad04dc3303b4057b644be51e33edc387ca595028efe9e4c1ffcc946cd37
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0c76e865059ff45b73b3d522b765d8da5fea2f6728e7e486a1b10051ecfc9382a411d7f08cd7eca161f2d3d51ab3cec492423f30b0231e2df5637acbfe8fcb06
|
|
7
|
+
data.tar.gz: 35ba6635cd492e6ff420ede329eef28d2e4027f466d7061f91579921ead262c0a72c70266ec6673b0188d48d15505ea96f96b625a0cca145bd548d023b1bc615
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [0.46.10] - 2026-07-05
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
|
|
9
|
+
- Stack overflow with a self-referential `$dynamicRef` combined with `unevaluatedProperties` or `unevaluatedItems`.
|
|
10
|
+
- Incorrect `unevaluatedProperties` and `unevaluatedItems` results when a meta-schema disables the Applicator vocabulary.
|
|
11
|
+
|
|
5
12
|
## [0.46.9] - 2026-07-02
|
|
6
13
|
|
|
7
14
|
### Fixed
|
|
@@ -142,7 +149,8 @@
|
|
|
142
149
|
|
|
143
150
|
- Initial public release
|
|
144
151
|
|
|
145
|
-
[Unreleased]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.46.
|
|
152
|
+
[Unreleased]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.46.10...HEAD
|
|
153
|
+
[0.46.10]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.46.9...ruby-v0.46.10
|
|
146
154
|
[0.46.9]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.46.8...ruby-v0.46.9
|
|
147
155
|
[0.46.8]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.46.7...ruby-v0.46.8
|
|
148
156
|
[0.46.7]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.46.6...ruby-v0.46.7
|
data/Cargo.toml
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[package]
|
|
2
2
|
name = "jsonschema-rb"
|
|
3
|
-
version = "0.46.
|
|
3
|
+
version = "0.46.10"
|
|
4
4
|
edition = "2021"
|
|
5
5
|
authors = ["Dmitry Dygalo <dmitry@dygalo.dev>"]
|
|
6
6
|
license = "MIT"
|
|
@@ -13,7 +13,7 @@ publish = false
|
|
|
13
13
|
crate-type = ["cdylib"]
|
|
14
14
|
|
|
15
15
|
[dependencies]
|
|
16
|
-
jsonschema = { version = "0.46.
|
|
16
|
+
jsonschema = { version = "0.46.10", default-features = false, features = ["arbitrary-precision", "resolve-http", "resolve-file", "tls-ring"] }
|
|
17
17
|
magnus = { version = "0.8", features = ["rb-sys"] }
|
|
18
18
|
rb-sys = "0.9"
|
|
19
19
|
serde = { workspace = true }
|
data/ext/jsonschema/Cargo.lock
CHANGED
|
@@ -693,9 +693,9 @@ dependencies = [
|
|
|
693
693
|
|
|
694
694
|
[[package]]
|
|
695
695
|
name = "jsonschema"
|
|
696
|
-
version = "0.46.
|
|
696
|
+
version = "0.46.10"
|
|
697
697
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
698
|
-
checksum = "
|
|
698
|
+
checksum = "f0a699d3e77675e6aa4bfffe3b907c8b5f7ed3241f9965bffb25475ad4b08d05"
|
|
699
699
|
dependencies = [
|
|
700
700
|
"ahash",
|
|
701
701
|
"bytecount",
|
|
@@ -723,7 +723,7 @@ dependencies = [
|
|
|
723
723
|
|
|
724
724
|
[[package]]
|
|
725
725
|
name = "jsonschema-rb-ext"
|
|
726
|
-
version = "0.46.
|
|
726
|
+
version = "0.46.10"
|
|
727
727
|
dependencies = [
|
|
728
728
|
"jsonschema",
|
|
729
729
|
"magnus",
|
|
@@ -735,9 +735,9 @@ dependencies = [
|
|
|
735
735
|
|
|
736
736
|
[[package]]
|
|
737
737
|
name = "jsonschema-regex"
|
|
738
|
-
version = "0.46.
|
|
738
|
+
version = "0.46.10"
|
|
739
739
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
740
|
-
checksum = "
|
|
740
|
+
checksum = "6dbd1086b01b9349fd4ef9a07433965af64c8ce8159abe633a189e4ff817bd13"
|
|
741
741
|
dependencies = [
|
|
742
742
|
"regex-syntax",
|
|
743
743
|
]
|
|
@@ -1073,9 +1073,9 @@ dependencies = [
|
|
|
1073
1073
|
|
|
1074
1074
|
[[package]]
|
|
1075
1075
|
name = "referencing"
|
|
1076
|
-
version = "0.46.
|
|
1076
|
+
version = "0.46.10"
|
|
1077
1077
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1078
|
-
checksum = "
|
|
1078
|
+
checksum = "0fbf332a2f81899f6836f22c03da73dae8a664c32e3016b84692c23cddadc95d"
|
|
1079
1079
|
dependencies = [
|
|
1080
1080
|
"ahash",
|
|
1081
1081
|
"fluent-uri",
|
data/ext/jsonschema/Cargo.toml
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[package]
|
|
2
2
|
name = "jsonschema-rb-ext"
|
|
3
|
-
version = "0.46.
|
|
3
|
+
version = "0.46.10"
|
|
4
4
|
edition = "2021"
|
|
5
5
|
publish = false
|
|
6
6
|
|
|
@@ -10,10 +10,10 @@ name = "jsonschema_rb"
|
|
|
10
10
|
path = "../../src/lib.rs"
|
|
11
11
|
|
|
12
12
|
[dependencies]
|
|
13
|
-
jsonschema = { version = "0.46.
|
|
13
|
+
jsonschema = { version = "0.46.10", default-features = false, features = ["arbitrary-precision", "resolve-http", "resolve-file", "tls-ring"] }
|
|
14
14
|
magnus = { version = "0.8", features = ["rb-sys"] }
|
|
15
15
|
rb-sys = "0.9"
|
|
16
|
-
referencing = "0.46.
|
|
16
|
+
referencing = "0.46.10"
|
|
17
17
|
serde = { version = "1", features = ["derive"] }
|
|
18
18
|
serde_json = { version = "1", features = ["arbitrary_precision"] }
|
|
19
19
|
|
data/lib/jsonschema/version.rb
CHANGED