jsonschema_rs 0.49.2-aarch64-linux → 0.49.3-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: b38e6d0dece8af64ba6d9c2b98e254f511365b68c301d7377fa3650a13249a76
4
- data.tar.gz: 2a13adb7f480905c249f289161271fd6ab4601cfa3dd8f4a82d08910baffd849
3
+ metadata.gz: 796c242552855def82fe580ddaed469ed1508ba95eda4a23e1ea9edca8e09c96
4
+ data.tar.gz: ad4e6ac809720c63cb559c0ec510895a333ee624a34d9ce6343b404a86326d56
5
5
  SHA512:
6
- metadata.gz: 7edd8a93e3d5d96c4e856d99bc236f85ad611d048a1099a0e09754b6f0e1cf68069897b3335dfd36af5f8b00930957e462b975a85a717a7b02797feae7a43888
7
- data.tar.gz: 5145679726e875e58abf257ff0e8551e25b941335c5cfab8a6bee51a17ec0008af0e85fd32f2ee03c599787310b130fa425ea24ab100b8a3f6838bfce0c4c2f5
6
+ metadata.gz: adf3ea5c89f305349c4165a941b81dca11df5ef4ee46e8e84e141b743ca1683a2b165ea78fbf3270b297df7ea2f7c0ff5eb5899be99992aebd026a231e22323b
7
+ data.tar.gz: 9ce46a4892e3472a370e2b39cfa6c22d9250395fb153b8c8280c9aafbdae3dfd5c4eba717793dd357f508807c72ac01ae2e0e73039532ce84dcaf0b2cbbaae63
data/CHANGELOG.md CHANGED
@@ -2,6 +2,36 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [0.49.3] - 2026-08-02
6
+
7
+ ### Added
8
+
9
+ - Canonicalization of a recursive schema with no finite witness, which now folds to `false`.
10
+ - Canonicalization of `$dynamicRef` and `$recursiveRef`, which resolve through the dynamic scope and stay symbolic like any other reference. A dangling `$dynamicRef` errors rather than staying `Raw`.
11
+ - Canonicalization of `minContains` under `uniqueItems`, where a demand asking for more matches than its own schema has distinct values now folds to `false`.
12
+ - Canonicalization of a Draft 4 `patternProperties` coverage closed by `additionalProperties: false`, spelled as the closed map it was parsed from.
13
+ - Canonicalization of a `oneOf` whose branches repeat, where a repeated branch can never contribute exactly one match.
14
+ - Canonicalization of a `$ref` whose target is an empty schema, which now folds to `false`.
15
+ - Canonicalization of `unevaluatedItems` beside `allOf`, where every branch must pass and so the indexes they evaluate are known without the instance.
16
+ - Canonicalization of `unevaluatedProperties` beside `allOf`, where every branch must pass and so what they evaluate is known without the instance.
17
+ - Canonicalization of a Draft 4 `type` list holding `integer` beside other types with `enum`, which previously modeled only when spelled as an `allOf`.
18
+ - Canonicalization of `patternProperties` patterns matching finitely many keys, such as `^a$` and `^(a|b)$`.
19
+ - Canonicalization of `unevaluatedProperties` and `unevaluatedItems` when no in-place applicator sits beside them.
20
+
21
+ ### Fixed
22
+
23
+ - `additionalItems` values that are not schemas silently ignored beside an array-form `items` (they should fail the build like `additionalProperties`).
24
+ - `additionalItems` beside a boolean `items` rejecting every instance, such as `{"additionalItems": false, "items": false}`.
25
+ - Draft 4 rejecting a size bound at or past `2^64`, such as `{"maxItems": 18446744073709551616}`.
26
+ - An integer past the `f64` range admitted by a fractional bound it exceeds, such as `1e400` under `{"exclusiveMaximum": 0.1}`.
27
+ - A `$ref` at the root of an `$id`-bearing subresource dropped as a self-reference when its pointer matched the one that reached that subresource.
28
+ - Canonicalization reusing one definition's body for a same-named definition in another resource, when the name spells a canonical URI.
29
+ - `unevaluatedItems` counting `prefixItems` as evaluating elements before Draft 2020-12, where it is not a keyword.
30
+
31
+ ### Performance
32
+
33
+ - Up to 70% faster `evaluate`.
34
+
5
35
  ## [0.49.2] - 2026-07-28
6
36
 
7
37
  ### Performance
@@ -232,7 +262,8 @@
232
262
 
233
263
  - Initial public release
234
264
 
235
- [Unreleased]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.49.2...HEAD
265
+ [Unreleased]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.49.3...HEAD
266
+ [0.49.3]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.49.2...ruby-v0.49.3
236
267
  [0.49.2]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.49.1...ruby-v0.49.2
237
268
  [0.49.1]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.49.0...ruby-v0.49.1
238
269
  [0.49.0]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.48.5...ruby-v0.49.0
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.49.2"
4
+ VERSION = "0.49.3"
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.49.2
4
+ version: 0.49.3
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-27 00:00:00.000000000 Z
11
+ date: 2026-08-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bigdecimal