jsonschema_rs 0.46.8 → 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 545b19291c60eb2ab031b0f008e56759b09b082866f611586c7fdac95fc9d3f2
4
- data.tar.gz: 7c16684738c989db67cfb2fd7a3bd450e8bb62cd806ba568ecbde54eb7fa04ee
3
+ metadata.gz: f602cda016a40d57191148d7552e7df55349dc5ce714cef366d91167ce8330e0
4
+ data.tar.gz: 656d8ad04dc3303b4057b644be51e33edc387ca595028efe9e4c1ffcc946cd37
5
5
  SHA512:
6
- metadata.gz: 85f789942b25338db1817c90852718e9bb792b2e4e45214a80ea1c26ee0ff269554042468287945c5f3170f34cb96ade935b3eeb4c37046604c3ee8b8f859ba9
7
- data.tar.gz: 2d03e0a8697a05e3033b58dc7e6574bd42e6e2c1603132b900f2894651107a588ad841ceebb3101d6701c56ec65297cd207f109f1e1868d4b75185ddf8d6ab33
6
+ metadata.gz: 0c76e865059ff45b73b3d522b765d8da5fea2f6728e7e486a1b10051ecfc9382a411d7f08cd7eca161f2d3d51ab3cec492423f30b0231e2df5637acbfe8fcb06
7
+ data.tar.gz: 35ba6635cd492e6ff420ede329eef28d2e4027f466d7061f91579921ead262c0a72c70266ec6673b0188d48d15505ea96f96b625a0cca145bd548d023b1bc615
data/CHANGELOG.md CHANGED
@@ -2,6 +2,19 @@
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
+
12
+ ## [0.46.9] - 2026-07-02
13
+
14
+ ### Fixed
15
+
16
+ - Stack overflow while preparing a registry containing deeply nested schema documents.
17
+
5
18
  ## [0.46.8] - 2026-07-01
6
19
 
7
20
  ### Fixed
@@ -136,7 +149,9 @@
136
149
 
137
150
  - Initial public release
138
151
 
139
- [Unreleased]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.46.8...HEAD
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
154
+ [0.46.9]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.46.8...ruby-v0.46.9
140
155
  [0.46.8]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.46.7...ruby-v0.46.8
141
156
  [0.46.7]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.46.6...ruby-v0.46.7
142
157
  [0.46.6]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.46.5...ruby-v0.46.6
data/Cargo.toml CHANGED
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "jsonschema-rb"
3
- version = "0.46.8"
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.8", default-features = false, features = ["arbitrary-precision", "resolve-http", "resolve-file", "tls-ring"] }
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 }
@@ -693,9 +693,9 @@ dependencies = [
693
693
 
694
694
  [[package]]
695
695
  name = "jsonschema"
696
- version = "0.46.8"
696
+ version = "0.46.10"
697
697
  source = "registry+https://github.com/rust-lang/crates.io-index"
698
- checksum = "24fc8535da347b994f6d2fab0a84b74e3b31ad08ebe4204d95f3e755db7af49b"
698
+ checksum = "f0a699d3e77675e6aa4bfffe3b907c8b5f7ed3241f9965bffb25475ad4b08d05"
699
699
  dependencies = [
700
700
  "ahash",
701
701
  "bytecount",
@@ -706,13 +706,13 @@ dependencies = [
706
706
  "getrandom 0.3.4",
707
707
  "idna",
708
708
  "itoa",
709
+ "jsonschema-regex",
709
710
  "num-bigint",
710
711
  "num-cmp",
711
712
  "num-traits",
712
713
  "percent-encoding",
713
714
  "referencing",
714
715
  "regex",
715
- "regex-syntax",
716
716
  "reqwest",
717
717
  "rustls",
718
718
  "serde",
@@ -723,7 +723,7 @@ dependencies = [
723
723
 
724
724
  [[package]]
725
725
  name = "jsonschema-rb-ext"
726
- version = "0.46.8"
726
+ version = "0.46.10"
727
727
  dependencies = [
728
728
  "jsonschema",
729
729
  "magnus",
@@ -733,6 +733,15 @@ dependencies = [
733
733
  "serde_json",
734
734
  ]
735
735
 
736
+ [[package]]
737
+ name = "jsonschema-regex"
738
+ version = "0.46.10"
739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
740
+ checksum = "6dbd1086b01b9349fd4ef9a07433965af64c8ce8159abe633a189e4ff817bd13"
741
+ dependencies = [
742
+ "regex-syntax",
743
+ ]
744
+
736
745
  [[package]]
737
746
  name = "lazy_static"
738
747
  version = "1.5.0"
@@ -1064,9 +1073,9 @@ dependencies = [
1064
1073
 
1065
1074
  [[package]]
1066
1075
  name = "referencing"
1067
- version = "0.46.8"
1076
+ version = "0.46.10"
1068
1077
  source = "registry+https://github.com/rust-lang/crates.io-index"
1069
- checksum = "1c8dceb372b46fecd006be48ca335468b49ad887a7f0150cabd6098fa4fc500f"
1078
+ checksum = "0fbf332a2f81899f6836f22c03da73dae8a664c32e3016b84692c23cddadc95d"
1070
1079
  dependencies = [
1071
1080
  "ahash",
1072
1081
  "fluent-uri",
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "jsonschema-rb-ext"
3
- version = "0.46.8"
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.8", default-features = false, features = ["arbitrary-precision", "resolve-http", "resolve-file", "tls-ring"] }
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.8"
16
+ referencing = "0.46.10"
17
17
  serde = { version = "1", features = ["derive"] }
18
18
  serde_json = { version = "1", features = ["arbitrary_precision"] }
19
19
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module JSONSchema
4
- VERSION = "0.46.8"
4
+ VERSION = "0.46.10"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jsonschema_rs
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.46.8
4
+ version: 0.46.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dmitry Dygalo