jsonschema_rs 0.48.0 → 0.48.1
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/Cargo.toml +2 -2
- data/README.md +4 -0
- data/ext/jsonschema/Cargo.lock +11 -11
- data/ext/jsonschema/Cargo.toml +3 -3
- data/lib/jsonschema/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: dff84fb88165fc24b6035c6b100e89c83c4b6f7194fc945c3ec73e93f5119178
|
|
4
|
+
data.tar.gz: feac688548b70b5cc57f455c5f78c76fbe3107f9b38f03220ab98ce110018668
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 64315bbd608bd3a80a74fa392e15c9eb57a6887dbe913d68a194f2d58c889c35c8e798b7abfb3ef619775ba9e34378de6ae3425ff4221b630f0788b8cebf40d5
|
|
7
|
+
data.tar.gz: a86e31921a0498b479e841ea25cb4bc5083dd54f9a055513c8fda434c865216992561bd92ec7a6a5543671c919227a5039f976a6f882e1cb7576dc741dedde34
|
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/Cargo.toml
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[package]
|
|
2
2
|
name = "jsonschema-rb"
|
|
3
|
-
version = "0.48.
|
|
3
|
+
version = "0.48.1"
|
|
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.48.
|
|
16
|
+
jsonschema = { version = "0.48.1", default-features = false, features = ["arbitrary-precision", "resolve-http", "resolve-file", "tls-ring", "macros"] }
|
|
17
17
|
magnus = { version = "0.8", features = ["rb-sys"] }
|
|
18
18
|
rb-sys = "0.9"
|
|
19
19
|
serde = { workspace = true }
|
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:
|
data/ext/jsonschema/Cargo.lock
CHANGED
|
@@ -687,9 +687,9 @@ dependencies = [
|
|
|
687
687
|
|
|
688
688
|
[[package]]
|
|
689
689
|
name = "jsonschema"
|
|
690
|
-
version = "0.48.
|
|
690
|
+
version = "0.48.1"
|
|
691
691
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
692
|
-
checksum = "
|
|
692
|
+
checksum = "9baf521a926fd1e6f94af6922be9686b61c8a89a5fb7e14d6a1e21b79738d4cc"
|
|
693
693
|
dependencies = [
|
|
694
694
|
"ahash",
|
|
695
695
|
"bytecount",
|
|
@@ -718,9 +718,9 @@ dependencies = [
|
|
|
718
718
|
|
|
719
719
|
[[package]]
|
|
720
720
|
name = "jsonschema-macros"
|
|
721
|
-
version = "0.48.
|
|
721
|
+
version = "0.48.1"
|
|
722
722
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
723
|
-
checksum = "
|
|
723
|
+
checksum = "11efb171797c352f167fd4f3754b3a5e969d814222e457e63136cffca111b014"
|
|
724
724
|
dependencies = [
|
|
725
725
|
"jsonschema-macros-core",
|
|
726
726
|
"proc-macro2",
|
|
@@ -728,9 +728,9 @@ dependencies = [
|
|
|
728
728
|
|
|
729
729
|
[[package]]
|
|
730
730
|
name = "jsonschema-macros-core"
|
|
731
|
-
version = "0.48.
|
|
731
|
+
version = "0.48.1"
|
|
732
732
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
733
|
-
checksum = "
|
|
733
|
+
checksum = "a3ce6144063dbeca5c841049bc0958d2eaf7d0a20d600be0907c29a2d1a6267a"
|
|
734
734
|
dependencies = [
|
|
735
735
|
"fancy-regex",
|
|
736
736
|
"indexmap",
|
|
@@ -747,7 +747,7 @@ dependencies = [
|
|
|
747
747
|
|
|
748
748
|
[[package]]
|
|
749
749
|
name = "jsonschema-rb-ext"
|
|
750
|
-
version = "0.48.
|
|
750
|
+
version = "0.48.1"
|
|
751
751
|
dependencies = [
|
|
752
752
|
"jsonschema",
|
|
753
753
|
"magnus",
|
|
@@ -759,9 +759,9 @@ dependencies = [
|
|
|
759
759
|
|
|
760
760
|
[[package]]
|
|
761
761
|
name = "jsonschema-regex"
|
|
762
|
-
version = "0.48.
|
|
762
|
+
version = "0.48.1"
|
|
763
763
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
764
|
-
checksum = "
|
|
764
|
+
checksum = "d668f4775619127513d9a4f190704d20a66d20ccf0efc258f8ed42548e5fd7cd"
|
|
765
765
|
dependencies = [
|
|
766
766
|
"regex-syntax",
|
|
767
767
|
]
|
|
@@ -1106,9 +1106,9 @@ dependencies = [
|
|
|
1106
1106
|
|
|
1107
1107
|
[[package]]
|
|
1108
1108
|
name = "referencing"
|
|
1109
|
-
version = "0.48.
|
|
1109
|
+
version = "0.48.1"
|
|
1110
1110
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1111
|
-
checksum = "
|
|
1111
|
+
checksum = "df843f41f0cb459649f64a8b6b10579cf454f7a7420dc702767c81a26f23d780"
|
|
1112
1112
|
dependencies = [
|
|
1113
1113
|
"ahash",
|
|
1114
1114
|
"fluent-uri",
|
data/ext/jsonschema/Cargo.toml
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[package]
|
|
2
2
|
name = "jsonschema-rb-ext"
|
|
3
|
-
version = "0.48.
|
|
3
|
+
version = "0.48.1"
|
|
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.48.
|
|
13
|
+
jsonschema = { version = "0.48.1", default-features = false, features = ["arbitrary-precision", "resolve-http", "resolve-file", "tls-ring", "macros"] }
|
|
14
14
|
magnus = { version = "0.8", features = ["rb-sys"] }
|
|
15
15
|
rb-sys = "0.9"
|
|
16
|
-
referencing = "0.48.
|
|
16
|
+
referencing = "0.48.1"
|
|
17
17
|
serde = { version = "1", features = ["derive"] }
|
|
18
18
|
serde_json = { version = "1", features = ["arbitrary_precision"] }
|
|
19
19
|
|
data/lib/jsonschema/version.rb
CHANGED