jsonschema_rs 0.46.6 → 0.46.7

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: 0bbcc3736dc754c24e4cb71aa588e64dab39a7720bcc02449672dd2cab4e1bef
4
- data.tar.gz: 3e546c7525c5954349811c7b84c3a63f8208cb6239436a0dd4070dd269c796d5
3
+ metadata.gz: 607556b93712d32879c45b3113f207453a87be2cab37e341d025b80c6cd3a3ec
4
+ data.tar.gz: fd940bf8e5995bdf4bc32938aadbd354e863e130d8672e9c1a2b174cd90edc30
5
5
  SHA512:
6
- metadata.gz: be16c584122902c2417544a97a61fe9f88434a5cf2fed9cc4d00cd57cc0c6ef2b734b16679020d86c5dac3d8d8d80ef477897c58c7e26da8bc6975d13c79bf9c
7
- data.tar.gz: 0e666013edfb898f61a5fad7a8b7c3a13db4f9a41016b249d77043c73acc61e7deb7abbce323664b7394ac2eb76454bce5b5d02bd3f0932694d5572d84d6e1fc
6
+ metadata.gz: e59bfd166e25ede4b570f8124a79a240a1a0aefa122b79a3ca917b708b069570af5271b2798759ef3d1712062d14fbb5de25c807a54a0d22fd07ee606c822eda
7
+ data.tar.gz: 574f9f0700861e358832c4ab3e2afd5012ff8a544ceefb712385a0142ee4a861b4d062df9b357d0450964f6710afe57169cc906307c20ec6007594605485ad3a
data/CHANGELOG.md CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [0.46.7] - 2026-06-30
6
+
7
+ ### Fixed
8
+
9
+ - `idn-hostname` format accepted A-labels that decode to a disallowed code point (e.g. `xn--7a`).
10
+
5
11
  ## [0.46.6] - 2026-06-24
6
12
 
7
13
  ### Fixed
@@ -124,7 +130,8 @@
124
130
 
125
131
  - Initial public release
126
132
 
127
- [Unreleased]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.46.6...HEAD
133
+ [Unreleased]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.46.7...HEAD
134
+ [0.46.7]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.46.6...ruby-v0.46.7
128
135
  [0.46.6]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.46.5...ruby-v0.46.6
129
136
  [0.46.5]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.46.4...ruby-v0.46.5
130
137
  [0.46.4]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.46.3...ruby-v0.46.4
data/Cargo.toml CHANGED
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "jsonschema-rb"
3
- version = "0.46.6"
3
+ version = "0.46.7"
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.6", default-features = false, features = ["arbitrary-precision", "resolve-http", "resolve-file", "tls-ring"] }
16
+ jsonschema = { version = "0.46.7", 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.6"
696
+ version = "0.46.7"
697
697
  source = "registry+https://github.com/rust-lang/crates.io-index"
698
- checksum = "8374249b1bdce1c1773a09fa294347e19e4bfeb86d845c2d8ebaf8a8dbf11233"
698
+ checksum = "185abd1edcef44ac028ec6588ad1360155fbd0a8baa20243a28f5b2a05537a48"
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.6"
726
+ version = "0.46.7"
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.6"
1067
+ version = "0.46.7"
1068
1068
  source = "registry+https://github.com/rust-lang/crates.io-index"
1069
- checksum = "65a910f9d63351f9c9d7dc3053d02b214ea3a005917140c70087d7b59cbc5bb1"
1069
+ checksum = "c335a4796e6081e384712c269f29ed8d2f6613e7afdd54a8467bb7d48f99859f"
1070
1070
  dependencies = [
1071
1071
  "ahash",
1072
1072
  "fluent-uri",
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "jsonschema-rb-ext"
3
- version = "0.46.6"
3
+ version = "0.46.7"
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.6", default-features = false, features = ["arbitrary-precision", "resolve-http", "resolve-file", "tls-ring"] }
13
+ jsonschema = { version = "0.46.7", 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.6"
16
+ referencing = "0.46.7"
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.6"
4
+ VERSION = "0.46.7"
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.6
4
+ version: 0.46.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dmitry Dygalo