jsonschema_rs 0.53.0-aarch64-linux → 0.54.0-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: 1a5d49af97856831f08fadb565adb61ae72701e06ed85cb94e34561bbb1ab6e2
4
- data.tar.gz: 72311c24328c43b6b836785b1573b6eec4c13734f5fe4e0278839a16d93a0da7
3
+ metadata.gz: a733de8889c90d64eeccdb19b4cf3076f02b768fa03550373da767d1ba8e5f2f
4
+ data.tar.gz: d17718e3438ce8b6d15bfb38afc419ff6b0fda2dd124072063551688aecbd195
5
5
  SHA512:
6
- metadata.gz: a64ea6160e5e0b566ffd265a826e14d967ff326d87562bd009d64143515d423df5f21733ee8e9c12df17b412966b3b150fdc2eecea247c52d63d1d09e65f6770
7
- data.tar.gz: 53ae812fbfe66fbde1a56bcb63e404c1f75aed24cadf7df553e804a72aa2c625a60b4a5b01ba29a6204a2a0458c8729619eb153cfabae60c4d0bffb71f6f5307
6
+ metadata.gz: 6469600d815a4970cc4b499864f6ca2682e1b695cb190f4ab4b7c5ef2a9be1b8e02182a983e538c88f6f0d3d3d38815d8c8dcd7a538017c390c6ea9feb6ef1df
7
+ data.tar.gz: 1ad456b10b4b20406528cd28349163a98c6fe445bd6ebef4fafe476ae3988641f6b523b9e3f0fee45b709c31d5941f07d76d4ad8743fcd99a9bbb808d46a1884
data/CHANGELOG.md CHANGED
@@ -2,6 +2,27 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [0.54.0] - 2026-09-06
6
+
7
+ ### Performance
8
+
9
+ - `validate` and `iter_errors` check each assertion keyword with the `is_valid` path and build an error only for a failing one.
10
+ - `evaluate` holds its output tree in one allocation instead of one per node.
11
+ - A `pattern` of `^\S*$` scans bytes instead of decoding every character.
12
+ - `validate` on `properties` beside a two-name `required` confirms both names in the pass that checks the properties, instead of looking each up first.
13
+ - A string `enum` compares an option's length and first and last eight bytes before its full text.
14
+ - A JSON Pointer segment is scanned for `~` and `/` eight bytes at a time before it is copied.
15
+ - Canonicalization cloning leaves per intersection and the definition map per settled target.
16
+
17
+ ### Changed
18
+
19
+ - Canonicalization of `unevaluated*` beside `dependentSchemas` or `if`/`then`/`else`, which kept the document `Raw`.
20
+ - Canonicalization of `not` over `patternProperties`, which kept the document `Raw`.
21
+
22
+ ### Fixed
23
+
24
+ - Canonicalization of `not` over an object with `properties`, `patternProperties` and `additionalProperties`, which applied `additionalProperties` to the keys listed in `properties`.
25
+
5
26
  ## [0.53.0] - 2026-09-02
6
27
 
7
28
  ### Fixed
@@ -504,7 +525,8 @@
504
525
 
505
526
  - Initial public release
506
527
 
507
- [Unreleased]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.53.0...HEAD
528
+ [Unreleased]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.54.0...HEAD
529
+ [0.54.0]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.53.0...ruby-v0.54.0
508
530
  [0.53.0]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.52.1...ruby-v0.53.0
509
531
  [0.52.1]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.52.0...ruby-v0.52.1
510
532
  [0.52.0]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.51.0...ruby-v0.52.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.53.0"
4
+ VERSION = "0.54.0"
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.53.0
4
+ version: 0.54.0
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-09-02 00:00:00.000000000 Z
11
+ date: 2026-09-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bigdecimal