jsonschema_rs 0.48.0-x86_64-darwin → 0.48.1-x86_64-darwin
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 +9 -1
- data/README.md +4 -0
- data/lib/jsonschema/3.3/jsonschema_rb.bundle +0 -0
- data/lib/jsonschema/3.4/jsonschema_rb.bundle +0 -0
- data/lib/jsonschema/4.0/jsonschema_rb.bundle +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: c5a7767e7f2acba954425c53ceae246a882c0f00f4eeb9656b094d31728fb010
|
|
4
|
+
data.tar.gz: 32d8b97447f9ae72766f5526beb30c67bcbecac9533a0b5d6ab6f27ddd1deea9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: eb5edbcd10249891530edbff58f14fef1737e6b2b66551ad65f4407267ac5277d7b7a7d32b127dd14c33c2e58fee03730850cfb8d17bdfa76cd979e226779e22
|
|
7
|
+
data.tar.gz: a83acbd4e06e8d6b14f1d612def964fd33b859fd94b6ca82ab57e4aecb4d93abf401d1ad8694ffcb520430bce3e269068e49985302b14aa1cd3593316e0903d7
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
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
|
+
|
|
5
12
|
## [0.48.0] - 2026-07-16
|
|
6
13
|
|
|
7
14
|
### Fixed
|
|
@@ -175,7 +182,8 @@
|
|
|
175
182
|
|
|
176
183
|
- Initial public release
|
|
177
184
|
|
|
178
|
-
[Unreleased]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.48.
|
|
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
|
|
179
187
|
[0.48.0]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.47.0...ruby-v0.48.0
|
|
180
188
|
[0.47.0]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.46.10...ruby-v0.47.0
|
|
181
189
|
[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.1
|
|
5
5
|
platform: x86_64-darwin
|
|
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-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bigdecimal
|