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 +4 -4
- data/CHANGELOG.md +20 -1
- data/README.md +4 -0
- data/lib/jsonschema/3.3/jsonschema_rb.so +0 -0
- data/lib/jsonschema/3.4/jsonschema_rb.so +0 -0
- data/lib/jsonschema/4.0/jsonschema_rb.so +0 -0
- data/lib/jsonschema/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b98c0e47119f92049a42e2400c41c8f7919a83a5e386da7bc7362cd7084cb0a1
|
|
4
|
+
data.tar.gz: 0de7ed735f6f47d4b39671987cbee53464b5e8f071a7d77192d7c6d5fafbbe1a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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.
|
|
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
|
data/lib/jsonschema/version.rb
CHANGED
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.
|
|
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-
|
|
11
|
+
date: 2026-07-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bigdecimal
|