pq_crypto-jwt 0.1.1 → 0.1.2
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 -0
- data/README.md +8 -0
- data/lib/pq_crypto/jwt/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 54ccde27793860cab079549cb2ce297730f52869b23e9fe98b1dc99bd5aba6c3
|
|
4
|
+
data.tar.gz: 913b9fc2cb37b6f952e2b4251a8a4bca07c9258b829607dd87c6e209e6dbf41f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b14e7d94add26152c0b9e3234ea3696dba72ea12bf9433d65ecd3a204fe86f3e56bea9dea063609f7742ad3dd8593cb6f1b966b071a3ad59762792d4a9180027
|
|
7
|
+
data.tar.gz: c78f588b5fb61a9a928debde3e7fad160e37dc0240a3addd8cc47998e2ab11bf231418a6caac5c5339baac38729c9e42f766cf7f5f976dcad611bb4f9d4cda92
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.1.2
|
|
4
|
+
|
|
5
|
+
### Changed
|
|
6
|
+
|
|
7
|
+
- Lowered the supported Ruby floor from `>= 3.4.0` to `>= 3.1.0`, matching the `pq_crypto` 0.5.x compatibility line.
|
|
8
|
+
- Updated the runtime dependency to `pq_crypto >= 0.5.3, < 0.6` so Ruby 3.1-3.3 use the compatibility path from the core gem while Ruby 3.4+ keeps the optimized path.
|
|
9
|
+
- Expanded CI coverage to Ruby 3.1, 3.2, 3.3, 3.4, and 4.0 on Linux and macOS.
|
|
10
|
+
- Added hard-constraint tests for the Ruby floor and `pq_crypto` dependency range.
|
|
11
|
+
|
|
3
12
|
## Initial public release
|
|
4
13
|
|
|
5
14
|
### Included
|
data/README.md
CHANGED
|
@@ -11,6 +11,14 @@ The first public release intentionally focuses on one stable surface:
|
|
|
11
11
|
|
|
12
12
|
ML-KEM/JWE is **not included** in this first release. Full JWE support needs a separate standards-compatible implementation and interoperability tests.
|
|
13
13
|
|
|
14
|
+
## Requirements
|
|
15
|
+
|
|
16
|
+
- Ruby `>= 3.1.0`
|
|
17
|
+
- `pq_crypto` `>= 0.5.4`, `< 0.6`
|
|
18
|
+
- `jwt` `>= 3.1`, `< 4.0`
|
|
19
|
+
|
|
20
|
+
`pq_crypto-jwt` is Ruby-only and does not ship its own native extension. Native ML-DSA work is delegated to `pq_crypto`; Ruby 3.4+ keeps the optimized `pq_crypto` path, while Ruby 3.1-3.3 use the compatibility path provided by `pq_crypto` 0.5.3+.
|
|
21
|
+
|
|
14
22
|
## Install
|
|
15
23
|
|
|
16
24
|
```ruby
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pq_crypto-jwt
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Roman Haydarov
|
|
@@ -15,14 +15,14 @@ dependencies:
|
|
|
15
15
|
requirements:
|
|
16
16
|
- - "~>"
|
|
17
17
|
- !ruby/object:Gem::Version
|
|
18
|
-
version:
|
|
18
|
+
version: 0.5.3
|
|
19
19
|
type: :runtime
|
|
20
20
|
prerelease: false
|
|
21
21
|
version_requirements: !ruby/object:Gem::Requirement
|
|
22
22
|
requirements:
|
|
23
23
|
- - "~>"
|
|
24
24
|
- !ruby/object:Gem::Version
|
|
25
|
-
version:
|
|
25
|
+
version: 0.5.3
|
|
26
26
|
- !ruby/object:Gem::Dependency
|
|
27
27
|
name: jwt
|
|
28
28
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -109,7 +109,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
109
109
|
requirements:
|
|
110
110
|
- - ">="
|
|
111
111
|
- !ruby/object:Gem::Version
|
|
112
|
-
version: 3.
|
|
112
|
+
version: 3.1.0
|
|
113
113
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
114
114
|
requirements:
|
|
115
115
|
- - ">="
|