jsonschema_rs 0.52.0-aarch64-linux → 0.53.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: a6fe5212fd6a2c946a50089d5baef447a542be9c4b083575c27b8a3c1133f25e
4
- data.tar.gz: '028ad6da8db3bf3c8c48a9735c90aa815554c40b9dd0a08f90e24363a4444696'
3
+ metadata.gz: 1a5d49af97856831f08fadb565adb61ae72701e06ed85cb94e34561bbb1ab6e2
4
+ data.tar.gz: 72311c24328c43b6b836785b1573b6eec4c13734f5fe4e0278839a16d93a0da7
5
5
  SHA512:
6
- metadata.gz: 77c903c3c2faa5b79cc0676146b2646a73569b2a2e1f564720e6cacdb81ad00fc7af204943a7466947fdac14ea9a201e5ea4b998d1aa0afbfc97bcba6ac50de2
7
- data.tar.gz: 8b8becab2affc02220b0b39ef1fb47037933c099f73f51f6ac16537de0c2dd6b0a747f718383f429d91403156d108850390cc605e170dc0321077e32541cfd23
6
+ metadata.gz: a64ea6160e5e0b566ffd265a826e14d967ff326d87562bd009d64143515d423df5f21733ee8e9c12df17b412966b3b150fdc2eecea247c52d63d1d09e65f6770
7
+ data.tar.gz: 53ae812fbfe66fbde1a56bcb63e404c1f75aed24cadf7df553e804a72aa2c625a60b4a5b01ba29a6204a2a0458c8729619eb153cfabae60c4d0bffb71f6f5307
data/CHANGELOG.md CHANGED
@@ -2,6 +2,31 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [0.53.0] - 2026-09-02
6
+
7
+ ### Fixed
8
+
9
+ - Draft 4 `type: integer` matching a `Float` or not depending on its formatting; a `Float` is never a draft 4 integer.
10
+ - `uniqueItems` accepting `0` alongside `-0.0` in arrays of more than 15 items.
11
+
12
+ ### Performance
13
+
14
+ - Canonicalizing an `allOf` of object schemas walks their property maps once instead of looking every key up.
15
+ - `properties` and `required` compare short names without `memcmp`.
16
+ - Draft 4 `type: integer` is up to 6x faster on float-heavy instances.
17
+ - `evaluate` renders each node's locations once instead of rebuilding them.
18
+ - Building a schema resolves each `$ref` target once instead of per reference site.
19
+ - Building a schema with an `$id` encodes each absolute location once instead of re-validating it.
20
+ - `enum` listing strings or integers, with or without `null`, matches against a set instead of comparing each candidate.
21
+
22
+ ## [0.52.1] - 2026-08-30
23
+
24
+ ### Performance
25
+
26
+ - `minLength` and `maxLength` together now scan the string once.
27
+ - `unevaluatedProperties` is up to 2.9x faster.
28
+ - `evaluate` is up to 27% faster on reference-heavy schemas.
29
+
5
30
  ## [0.52.0] - 2026-08-27
6
31
 
7
32
  ### Added
@@ -479,7 +504,9 @@
479
504
 
480
505
  - Initial public release
481
506
 
482
- [Unreleased]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.52.0...HEAD
507
+ [Unreleased]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.53.0...HEAD
508
+ [0.53.0]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.52.1...ruby-v0.53.0
509
+ [0.52.1]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.52.0...ruby-v0.52.1
483
510
  [0.52.0]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.51.0...ruby-v0.52.0
484
511
  [0.51.0]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.50.1...ruby-v0.51.0
485
512
  [0.50.1]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.50.0...ruby-v0.50.1
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.52.0"
4
+ VERSION = "0.53.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.52.0
4
+ version: 0.53.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-08-26 00:00:00.000000000 Z
11
+ date: 2026-09-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bigdecimal