From 4bbdd8ac624fc7a9ef7aec841c43d99b5fe65a29 Mon Sep 17 00:00:00 2001 From: Christian Banse Date: Fri, 30 Jul 2021 22:54:04 +0200 Subject: [PATCH] Prepare release 3.2.2 (#42) --- VERSION_HISTORY.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/VERSION_HISTORY.md b/VERSION_HISTORY.md index dac737bc..637f2ba6 100644 --- a/VERSION_HISTORY.md +++ b/VERSION_HISTORY.md @@ -1,5 +1,12 @@ ## `jwt-go` Version History +#### 3.2.2 + +* Starting from this release, we are adopting the policy to support the most 2 recent versions of Go currently available. By the time of this release, this is Go 1.15 and 1.16 ([#28](https://github.com/golang-jwt/jwt/pull/28)). +* Fixed a potential issue that could occur when the verification of `exp`, `iat` or `nbf` was not required and contained invalid contents, i.e. non-numeric/date. Thanks for @thaJeztah for making us aware of that and @giorgos-f3 for originally reporting it to the formtech fork ([#40](https://github.com/golang-jwt/jwt/pull/40)). +* Added support for EdDSA / ED25519 ([#36](https://github.com/golang-jwt/jwt/pull/36)). +* Optimized allocations ([#33](https://github.com/golang-jwt/jwt/pull/33)). + #### 3.2.1 * **Import Path Change**: See MIGRATION_GUIDE.md for tips on updating your code