You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Require token signature to be verified before accessing payload [#648](https://github.com/jwt/ruby-jwt/pull/648) ([@anakinj](https://github.com/anakinj))
9
10
- Drop support for the HS512256 algorithm [#650](https://github.com/jwt/ruby-jwt/pull/650) ([@anakinj](https://github.com/anakinj))
Take a look at the [upgrade guide](UPGRADING.md) for more details.
18
19
19
20
**Features:**
21
+
20
22
- JWT::EncodedToken#verify! method that bundles signature and claim validation [#647](https://github.com/jwt/ruby-jwt/pull/647) ([@anakinj](https://github.com/anakinj))
21
23
- Do not override the alg header if already given [#659](https://github.com/jwt/ruby-jwt/pull/659) ([@anakinj](https://github.com/anakinj))
22
24
- Make `JWK::KeyFinder` compatible with `JWT::EncodedToken`[#663](https://github.com/jwt/ruby-jwt/pull/663) ([@anakinj](https://github.com/anakinj))
@@ -190,6 +192,7 @@ Take a look at the [upgrade guide](UPGRADING.md) for more details.
190
192
- Support OpenSSL >= 3.0 [#496](https://github.com/jwt/ruby-jwt/pull/496) ([@anakinj](https://github.com/anakinj))
191
193
192
194
**Fixes and enhancements:**
195
+
193
196
- Bring back the old Base64 (RFC2045) deocode mechanisms [#488](https://github.com/jwt/ruby-jwt/pull/488) ([@anakinj](https://github.com/anakinj))
194
197
- Rescue RbNaCl exception for EdDSA wrong key [#491](https://github.com/jwt/ruby-jwt/pull/491) ([@n-studio](https://github.com/n-studio))
195
198
- New parameter name for cases when kid is not found using JWK key loader proc [#501](https://github.com/jwt/ruby-jwt/pull/501) ([@anakinj](https://github.com/anakinj))
@@ -200,6 +203,7 @@ Take a look at the [upgrade guide](UPGRADING.md) for more details.
@@ -217,6 +221,7 @@ Take a look at the [upgrade guide](UPGRADING.md) for more details.
217
221
- Add Support to be able to verify from multiple keys [\#425](https://github.com/jwt/ruby-jwt/pull/425) ([ritikesh](https://github.com/ritikesh))
218
222
219
223
**Fixes and enhancements:**
224
+
220
225
- Readme: Typo fix re MissingRequiredClaim [\#451](https://github.com/jwt/ruby-jwt/pull/451) ([antonmorant](https://github.com/antonmorant))
221
226
- Fix RuboCop TODOs [\#476](https://github.com/jwt/ruby-jwt/pull/476) ([typhoon2099](https://github.com/typhoon2099))
222
227
- Make specific algorithms in README linkable [\#472](https://github.com/jwt/ruby-jwt/pull/472) ([milieu](https://github.com/milieu))
@@ -638,7 +643,7 @@ Take a look at the [upgrade guide](UPGRADING.md) for more details.
638
643
639
644
**Closed issues:**
640
645
641
-
- 404 at https://rubygems.global.ssl.fastly.net/gems/jwt-1.5.3.gem[\#137](https://github.com/jwt/ruby-jwt/issues/137)
646
+
- 404 at [https://rubygems.global.ssl.fastly.net/gems/jwt-1.5.3.gem](https://rubygems.global.ssl.fastly.net/gems/jwt-1.5.3.gem)[\#137](https://github.com/jwt/ruby-jwt/issues/137)
642
647
643
648
**Merged pull requests:**
644
649
@@ -957,7 +962,3 @@ Take a look at the [upgrade guide](UPGRADING.md) for more details.
957
962
958
963
- Bumped a version and added a .gemspec using rake build\_gemspec [\#3](https://github.com/jwt/ruby-jwt/pull/3) ([zhitomirskiyi](https://github.com/zhitomirskiyi))
959
964
- Added RSA support [\#2](https://github.com/jwt/ruby-jwt/pull/2) ([zhitomirskiyi](https://github.com/zhitomirskiyi))
960
-
961
-
962
-
963
-
\**This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
Copy file name to clipboardExpand all lines: CODE_OF_CONDUCT.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -74,11 +74,11 @@ Community leaders will follow these Community Impact Guidelines in determining t
74
74
## Attribution
75
75
76
76
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.0,
77
-
available at https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
77
+
available at [https://www.contributor-covenant.org/version/2/0/code_of_conduct.html](https://www.contributor-covenant.org/version/2/0/code_of_conduct.html).
78
78
79
79
Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder](https://github.com/mozilla/diversity).
80
80
81
81
[homepage]: https://www.contributor-covenant.org
82
82
83
83
For answers to common questions about this code of conduct, see the FAQ at
84
-
https://www.contributor-covenant.org/faq. Translations are available at https://www.contributor-covenant.org/translations.
84
+
[https://www.contributor-covenant.org/faq](https://www.contributor-covenant.org/faq). Translations are available at [https://www.contributor-covenant.org/translations](https://www.contributor-covenant.org/translations).
0 commit comments