jsonschema_rs 0.46.1 → 0.46.3
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 +15 -1
- data/Cargo.toml +2 -2
- data/ext/jsonschema/Cargo.lock +9 -9
- 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: 268f57f678cd1431690a140b219bc7fa586f52863312c788567ee50108f51101
|
|
4
|
+
data.tar.gz: 81e59793da8b023e9d7b5305449051b70037c5627ac2173ef6c77b921b6594ec
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b66c00e4fe30e0a6ffb168db4e2ee1d2e9008be398ff495b553e1155f792d6855a21456d16981a3c7e683481b37c09cfc5b24440089db4be4d705d9dfe11e956
|
|
7
|
+
data.tar.gz: 46d9160b91436e9334b7d0d3707f45121c5a8b46e01423f6505794cc2a922cd548c1443341fd6089260481250c256e7452a3fb37db2e8a3381bd04daae726bc9
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [0.46.3] - 2026-04-28
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
|
|
9
|
+
- Memory not reclaimed when a validator for a schema with recursive `$ref` or `$dynamicRef` is dropped. [#1125](https://github.com/Stranger6667/jsonschema/issues/1125)
|
|
10
|
+
|
|
11
|
+
## [0.46.2] - 2026-04-20
|
|
12
|
+
|
|
13
|
+
### Fixed
|
|
14
|
+
|
|
15
|
+
- `required` not enforced when `additionalProperties` is a schema object and `required` lists exactly 2 keys.
|
|
16
|
+
|
|
5
17
|
## [0.46.1] - 2026-04-18
|
|
6
18
|
|
|
7
19
|
### Fixed
|
|
@@ -92,7 +104,9 @@
|
|
|
92
104
|
|
|
93
105
|
- Initial public release
|
|
94
106
|
|
|
95
|
-
[Unreleased]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.46.
|
|
107
|
+
[Unreleased]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.46.3...HEAD
|
|
108
|
+
[0.46.3]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.46.2...ruby-v0.46.3
|
|
109
|
+
[0.46.2]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.46.1...ruby-v0.46.2
|
|
96
110
|
[0.46.1]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.46.0...ruby-v0.46.1
|
|
97
111
|
[0.46.0]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.45.1...ruby-v0.46.0
|
|
98
112
|
[0.45.1]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.45.0...ruby-v0.45.1
|
data/Cargo.toml
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[package]
|
|
2
2
|
name = "jsonschema-rb"
|
|
3
|
-
version = "0.46.
|
|
3
|
+
version = "0.46.3"
|
|
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.3", 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
|
@@ -220,9 +220,9 @@ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
|
220
220
|
|
|
221
221
|
[[package]]
|
|
222
222
|
name = "fancy-regex"
|
|
223
|
-
version = "0.
|
|
223
|
+
version = "0.18.0"
|
|
224
224
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
225
|
-
checksum = "
|
|
225
|
+
checksum = "e1e1dacd0d2082dfcf1351c4bdd566bbe89a2b263235a2b50058f1e130a47277"
|
|
226
226
|
dependencies = [
|
|
227
227
|
"bit-set",
|
|
228
228
|
"regex-automata",
|
|
@@ -693,9 +693,9 @@ dependencies = [
|
|
|
693
693
|
|
|
694
694
|
[[package]]
|
|
695
695
|
name = "jsonschema"
|
|
696
|
-
version = "0.46.
|
|
696
|
+
version = "0.46.3"
|
|
697
697
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
698
|
-
checksum = "
|
|
698
|
+
checksum = "cbe92a2f8b00686061eab5cdcfd6f382c27f2084456e7be90ae9f0fe4a30552a"
|
|
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.3"
|
|
727
727
|
dependencies = [
|
|
728
728
|
"jsonschema",
|
|
729
729
|
"magnus",
|
|
@@ -1064,9 +1064,9 @@ dependencies = [
|
|
|
1064
1064
|
|
|
1065
1065
|
[[package]]
|
|
1066
1066
|
name = "referencing"
|
|
1067
|
-
version = "0.46.
|
|
1067
|
+
version = "0.46.3"
|
|
1068
1068
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1069
|
-
checksum = "
|
|
1069
|
+
checksum = "e125f10bdcd507598c702daada18c47fe5bfba4d7a9545b015b5d432f7168ca3"
|
|
1070
1070
|
dependencies = [
|
|
1071
1071
|
"ahash",
|
|
1072
1072
|
"fluent-uri",
|
|
@@ -1231,9 +1231,9 @@ checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f"
|
|
|
1231
1231
|
|
|
1232
1232
|
[[package]]
|
|
1233
1233
|
name = "rustls-webpki"
|
|
1234
|
-
version = "0.103.
|
|
1234
|
+
version = "0.103.13"
|
|
1235
1235
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1236
|
-
checksum = "
|
|
1236
|
+
checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
|
|
1237
1237
|
dependencies = [
|
|
1238
1238
|
"ring",
|
|
1239
1239
|
"rustls-pki-types",
|
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.3"
|
|
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.3", 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.3"
|
|
17
17
|
serde = { version = "1", features = ["derive"] }
|
|
18
18
|
serde_json = { version = "1", features = ["arbitrary_precision"] }
|
|
19
19
|
|
data/lib/jsonschema/version.rb
CHANGED