jsonschema_rs 0.47.0-aarch64-linux → 0.48.1-aarch64-linux

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: f6d8974b7d8385a1d0c1776acfc099fe5da07c383e583b2d7e259aecb87c4fcd
4
- data.tar.gz: 5d9dcdae24daba8cc1337782aaef0b23d66aa6f2b0b09cdb9444ebc84c265c2b
3
+ metadata.gz: 5884d6f91f6b338c92a6001c556e16f13910dd8f951dcfbd96324b17612395b2
4
+ data.tar.gz: 2ace2f94c15602bb8696288c6b0f80f86c6075b395e7aec4c0ad972c221cbb52
5
5
  SHA512:
6
- metadata.gz: 1dcce46582ad7013b1d9e712ff08657b59354834bcea29c3672e044cf40cf8899f01a5780951f00634abd412fcebae220a662edd4b7ef4806fcfb72841a2f588
7
- data.tar.gz: 67999fd5d919194c780514e42c9b59690a4b858e3a0ffe4fccd70961c74021ef1e8bb54fbd8e957a7d25f0d799d2f3866e14b2bcc170e166ee8f8b55dcb606c7
6
+ metadata.gz: 7616f02a65f8f5836eaf1520309f20c2752988e39ceaa26dcb1bee9a6e7ae09d954176eb8947f2b0fbac2dfc6d35156e8cdc7bfc87d165c11c46b646558121a9
7
+ data.tar.gz: 1a2573e1d8a56b314110718cccb9760b87e59eda55a6277288df9bbcbdf8faf72e4d9dd24c0b26d9619cad2f9a6bfa38b9b3332118479fc358fd40d6ea5b2f6a
data/CHANGELOG.md CHANGED
@@ -2,6 +2,24 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [0.48.1] - 2026-07-17
6
+
7
+ ### Fixed
8
+
9
+ - Missing `required` errors in `evaluate` output for schemas with `properties` and a two-entry `required` array. [#1220](https://github.com/Stranger6667/jsonschema/issues/1220)
10
+ - `contentEncoding` errors for invalid UTF-8 after decoding incorrectly had empty `instance_path` and `schema_path`.
11
+
12
+ ## [0.48.0] - 2026-07-16
13
+
14
+ ### Fixed
15
+
16
+ - `JSONSchema::Meta.valid?` and `JSONSchema::Meta.validate!` incorrectly accepted some Draft 2019-09 schemas that the meta-schema rejects.
17
+ - Integers just outside the `i64`/`u64` range incorrectly compared against numeric bounds through lossy `f64` rounding (e.g. `{"minimum" => -9223372036854775808}` accepted `-9223372036854775809`).
18
+
19
+ ### Performance
20
+
21
+ - Faster `multipleOf` validation for integer instances with integer divisors, via integer arithmetic instead of floating-point modulo.
22
+
5
23
  ## [0.47.0] - 2026-07-08
6
24
 
7
25
  ### Added
@@ -164,7 +182,9 @@
164
182
 
165
183
  - Initial public release
166
184
 
167
- [Unreleased]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.47.0...HEAD
185
+ [Unreleased]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.48.1...HEAD
186
+ [0.48.1]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.48.0...ruby-v0.48.1
187
+ [0.48.0]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.47.0...ruby-v0.48.0
168
188
  [0.47.0]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.46.10...ruby-v0.47.0
169
189
  [0.46.10]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.46.9...ruby-v0.46.10
170
190
  [0.46.9]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.46.8...ruby-v0.46.9
data/README.md CHANGED
@@ -64,6 +64,10 @@ The following drafts are supported:
64
64
 
65
65
  You can check the current status on the [Bowtie Report](https://bowtie.report/#/implementations/rust-jsonschema).
66
66
 
67
+ ## Playground
68
+
69
+ If you'd like to try `jsonschema`, you can check the WebAssembly-powered [playground](https://jsonschema.dygalo.dev/) to see the results instantly.
70
+
67
71
  ## Installation
68
72
 
69
73
  Add to your Gemfile:
Binary file
Binary file
Binary file
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module JSONSchema
4
- VERSION = "0.47.0"
4
+ VERSION = "0.48.1"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jsonschema_rs
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.47.0
4
+ version: 0.48.1
5
5
  platform: aarch64-linux
6
6
  authors:
7
7
  - Dmitry Dygalo
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-07-07 00:00:00.000000000 Z
11
+ date: 2026-07-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bigdecimal