jsonschema_rs 0.45.0-aarch64-linux → 0.45.1-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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3ddf023fdf663ffe767043d9fffa8cde2c8cf01e9e50dd982041df2c1ad507cd
|
|
4
|
+
data.tar.gz: 87482ab6d166f19a4e2b66e4600f0730a587431e8dc4921f3d6f86c2963163e1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '0098781f195b9300d838b76c3a33a401ae0d0bed74ce742ab23114109829e41afe0096a5852d33eb889739165bbf0cb03e0a0f2b8cc9bc4562cc1d87f4930150'
|
|
7
|
+
data.tar.gz: 9bbc63f59731d5ca3b8acc71d1504f028bcbe983e70f9f4a3ebe3380e96564931095038126011c6011b542a48b37c382756815ed82d5db7d335f2681ff6ea87c
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [0.45.1] - 2026-04-06
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
|
|
9
|
+
- Incorrect handling of `multipleOf` validation for negative numeric instances.
|
|
10
|
+
- Incorrect handling of `duration` format when hours and seconds appear without minutes, or years and days without months.
|
|
11
|
+
|
|
5
12
|
## [0.45.0] - 2026-03-08
|
|
6
13
|
|
|
7
14
|
### Added
|
|
@@ -66,7 +73,8 @@
|
|
|
66
73
|
|
|
67
74
|
- Initial public release
|
|
68
75
|
|
|
69
|
-
[Unreleased]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.45.
|
|
76
|
+
[Unreleased]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.45.1...HEAD
|
|
77
|
+
[0.45.1]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.45.0...ruby-v0.45.1
|
|
70
78
|
[0.45.0]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.44.1...ruby-v0.45.0
|
|
71
79
|
[0.44.1]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.44.0...ruby-v0.44.1
|
|
72
80
|
[0.44.0]: https://github.com/Stranger6667/jsonschema/compare/ruby-v0.43.0...ruby-v0.44.0
|
|
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.45.
|
|
4
|
+
version: 0.45.1
|
|
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-
|
|
11
|
+
date: 2026-04-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bigdecimal
|
|
@@ -43,7 +43,6 @@ files:
|
|
|
43
43
|
- MIGRATION.md
|
|
44
44
|
- README.md
|
|
45
45
|
- ext/jsonschema/extconf.rb
|
|
46
|
-
- lib/jsonschema/3.2/jsonschema_rb.so
|
|
47
46
|
- lib/jsonschema/3.3/jsonschema_rb.so
|
|
48
47
|
- lib/jsonschema/3.4/jsonschema_rb.so
|
|
49
48
|
- lib/jsonschema/4.0/jsonschema_rb.so
|
|
@@ -69,7 +68,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
69
68
|
requirements:
|
|
70
69
|
- - ">="
|
|
71
70
|
- !ruby/object:Gem::Version
|
|
72
|
-
version: '3.
|
|
71
|
+
version: '3.3'
|
|
73
72
|
- - "<"
|
|
74
73
|
- !ruby/object:Gem::Version
|
|
75
74
|
version: 4.1.dev
|
|
Binary file
|