From 7670951264c9d2cba86fb1357203669109731e37 Mon Sep 17 00:00:00 2001 From: Brent Shaffer Date: Fri, 21 Jan 2022 08:36:22 -0800 Subject: [PATCH 1/2] chore: update changelog for v6.0.0 --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 0a0023b2..e38e0398 100644 --- a/README.md +++ b/README.md @@ -206,6 +206,14 @@ JWT::decode($payload, JWK::parseKeySet($jwks)); Changelog --------- +#### 6.0.0 / 2022-01-25 + + - New Key object to prevent key/algorithm type confusion (#365) + - Add JWK support (#273) + - Add ES256 support (#256) + - Add ES384 support (#324) + - Add Ed25519 support (#343) + #### 5.0.0 / 2017-06-26 - Support RS384 and RS512. See [#117](https://github.com/firebase/php-jwt/pull/117). Thanks [@joostfaassen](https://github.com/joostfaassen)! From 52d25f4468ad0e025763cdd932593e6cda292628 Mon Sep 17 00:00:00 2001 From: Brent Shaffer Date: Mon, 24 Jan 2022 06:10:22 -0800 Subject: [PATCH 2/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e38e0398..26e0436b 100644 --- a/README.md +++ b/README.md @@ -206,7 +206,7 @@ JWT::decode($payload, JWK::parseKeySet($jwks)); Changelog --------- -#### 6.0.0 / 2022-01-25 +#### 6.0.0 / 2022-01-24 - New Key object to prevent key/algorithm type confusion (#365) - Add JWK support (#273)