From f4701e19d38b7fd1ede0ef785867e078016b516e Mon Sep 17 00:00:00 2001 From: Daisuke Maki Date: Fri, 8 Apr 2022 20:18:28 +0900 Subject: [PATCH] Update Changes --- Changes | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/Changes b/Changes index fdabb455f..5fa6d5ee5 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,17 @@ Changes ======= +v1.2.22 08 Apr 2022 +[Bug fixes] + * [jws] jws.Verify was ignoring the `b64` header when it was present + in the protected headers (#681). Now the following should work: + + jws.Sign(..., jws.WithDetachedPayload(payload)) + // previously payload had to be base64 encoded + jws.Verify(..., jws.WithDetachedPayload(payload)) + + (note: v2 branch was not affected) + v1.2.21 30 Mar 2022 [Bug fixes] * [jwk] RSA keys without p and q can now be parsed.