jwt 2.9.2 → 2.9.3
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 +10 -2
- data/lib/jwt/claims_validator.rb +1 -0
- data/lib/jwt/verify.rb +1 -0
- data/lib/jwt/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ce035519b0df530866af63d7dd6cb267490700e9458fc9c32fb0bb15be446f6e
|
4
|
+
data.tar.gz: 94fd6a38f0e3c91407b04aa254d568e113877e7dcdcb4b923c28b6a320587119
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: aaf541769af85436646e45a61e0f3a57d75a88e640f4a811eff35d8be61285dc77b1741e79147cf435fed5b51519863fc027722d43805c3457a159d8e235f568
|
7
|
+
data.tar.gz: f548c7bcfac5c31520ba0a1cc1b5dd546cf600277667109e7c33fde167138a3a29a930cf127cc51a7546e5b4c14e5e093a8279949107cd0d0062d016067a1723
|
data/CHANGELOG.md
CHANGED
@@ -15,13 +15,21 @@ Notable changes in the upcoming **version 3.0**:
|
|
15
15
|
- The `::JWT::Claims::verify!` method will be removed in favor of `::JWT::Claims::verify_payload!`.
|
16
16
|
- The `::JWT::JWA.create` method will be removed. No recommended alternatives.
|
17
17
|
- The `::JWT::Verify` class will be removed in favor of the functionality provided by `::JWT::Claims`.
|
18
|
-
- Calling `::JWT::Claims::Numeric.new` with a payload will be removed in favor of `::JWT::Claims::verify_payload!(payload, :numeric)
|
19
|
-
- Calling `::JWT::Claims::Numeric.verify!` with a payload will be removed in favor of `::JWT::Claims::verify_payload!(payload, :numeric)
|
18
|
+
- Calling `::JWT::Claims::Numeric.new` with a payload will be removed in favor of `::JWT::Claims::verify_payload!(payload, :numeric)`.
|
19
|
+
- Calling `::JWT::Claims::Numeric.verify!` with a payload will be removed in favor of `::JWT::Claims::verify_payload!(payload, :numeric)`.
|
20
20
|
|
21
21
|
- The internal algorithms were [restructured](https://github.com/jwt/ruby-jwt/pull/607) to support extensions from separate libraries. The changes lead to a few deprecations and new requirements:
|
22
22
|
- The `sign` and `verify` static methods on all the algorithms (`::JWT::JWA`) will be removed.
|
23
23
|
- Custom algorithms are expected to include the `JWT::JWA::SigningAlgorithm` module.
|
24
24
|
|
25
|
+
## [v2.9.3](https://github.com/jwt/ruby-jwt/tree/v2.9.3) (2024-10-03)
|
26
|
+
|
27
|
+
[Full Changelog](https://github.com/jwt/ruby-jwt/compare/v2.9.2...v2.9.3)
|
28
|
+
|
29
|
+
**Fixes and enhancements:**
|
30
|
+
|
31
|
+
- Return truthy value for `::JWT::ClaimsValidator#validate!` and `::JWT::Verify.verify_claims` [#628](https://github.com/jwt/ruby-jwt/pull/628) ([@anakinj](https://github.com/anakinj))
|
32
|
+
|
25
33
|
## [v2.9.2](https://github.com/jwt/ruby-jwt/tree/v2.9.2) (2024-10-03)
|
26
34
|
|
27
35
|
[Full Changelog](https://github.com/jwt/ruby-jwt/compare/v2.9.1...v2.9.2)
|
data/lib/jwt/claims_validator.rb
CHANGED
data/lib/jwt/verify.rb
CHANGED
data/lib/jwt/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jwt
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.9.
|
4
|
+
version: 2.9.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tim Rudat
|
@@ -177,7 +177,7 @@ licenses:
|
|
177
177
|
- MIT
|
178
178
|
metadata:
|
179
179
|
bug_tracker_uri: https://github.com/jwt/ruby-jwt/issues
|
180
|
-
changelog_uri: https://github.com/jwt/ruby-jwt/blob/v2.9.
|
180
|
+
changelog_uri: https://github.com/jwt/ruby-jwt/blob/v2.9.3/CHANGELOG.md
|
181
181
|
rubygems_mfa_required: 'true'
|
182
182
|
post_install_message:
|
183
183
|
rdoc_options: []
|