jsonschema_rs 0.48.0-aarch64-linux → 0.48.2-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: 23b27851758e8091c71c54775af688acd0627861110f36240a5d21f2b03b9e19
4
- data.tar.gz: b4a740a22e172d78a7cc2c1db4952b6f1688949840f7d73bfd9c7c56becc232e
3
+ metadata.gz: b98c0e47119f92049a42e2400c41c8f7919a83a5e386da7bc7362cd7084cb0a1
4
+ data.tar.gz: 0de7ed735f6f47d4b39671987cbee53464b5e8f071a7d77192d7c6d5fafbbe1a
5
5
  SHA512:
6
- metadata.gz: 704e4a38c870ffc572f569abc8a68adc714c32cb4ac0c6acde08c7683817c5b0854724f20b4e9435c0999e8283c6cc2fcd70036df730a603ef176c82328eb567
7
- data.tar.gz: 3dacad62410dcadf886bd82f91862dbdbd4af52f7b074132db22a9f20a391fd3a2596e3e873e1ed679e5cf308ae26a64b1ad9a0bd5820703c01539492943b649
6
+ metadata.gz: a296edf52c431d723cffb65fb054729742f81e0ca84713f2e4b35039fb2ca4ccffd4650ccb14197a98dae84d89842b153290cbca56861c159576add8fbf43e53
7
+ data.tar.gz: db96a866b5ce4932024e9642235b4fed4572f058f162f38604fcc598984372f31ecf3c0b53202cd1c5f110047788fca05dd6b6ae3e587ea2b1d7dec1a10677ac
data/CHANGELOG.md CHANGED
@@ -2,6 +2,23 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [0.48.2] - 2026-07-21
6
+
7
+ ### Fixed
8
+
9
+ - `Canonical::JSON.to_string` incorrectly emitting exponent form for small `Float` values (e.g. `1e-7` instead of `0.0000001`).
10
+
11
+ ### Performance
12
+
13
+ - Faster validator compilation by pre-sizing internal caches.
14
+
15
+ ## [0.48.1] - 2026-07-17
16
+
17
+ ### Fixed
18
+
19
+ - Missing `required` errors in `evaluate` output for schemas with `properties` and a two-entry `required` array. [#1220](https://github.com/Stranger6667/jsonschema/issues/1220)
20
+ - `contentEncoding` errors for invalid UTF-8 after decoding incorrectly had empty `instance_path` and `schema_path`.
21
+
5
22
  ## [0.48.0] - 2026-07-16
6
23
 
7
24
  ### Fixed
@@ -175,7 +192,9 @@
175
192
 
176
193
  - Initial public release
177
194
 
178
- [Unreleased]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.48.0...HEAD
195
+ [Unreleased]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.48.2...HEAD
196
+ [0.48.2]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.48.1...ruby-v0.48.2
197
+ [0.48.1]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.48.0...ruby-v0.48.1
179
198
  [0.48.0]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.47.0...ruby-v0.48.0
180
199
  [0.47.0]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.46.10...ruby-v0.47.0
181
200
  [0.46.10]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.46.9...ruby-v0.46.10
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.48.0"
4
+ VERSION = "0.48.2"
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.48.0
4
+ version: 0.48.2
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-16 00:00:00.000000000 Z
11
+ date: 2026-07-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bigdecimal