Skip to content

Commit a47cff8

Browse files
committed
v0.037
1 parent 40b11c5 commit a47cff8

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

Changes

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
Changes for Crypt-JWT distribution
22

3+
0.037 2025-01-26
4+
- fix #43 Fails to decode JWT from AWS Application Load Balancers
5+
- fix #44 Allow decoding JWS with Base64 padding characters
6+
- added tolerate_padding parameter for decode_jwt
7+
38
0.036 2025-01-26
49
- fix #35 support aud claim as an array of strings
510
- added verify_typ - verify 'typ' header parameter

lib/Crypt/JWT.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package Crypt::JWT;
33
use strict;
44
use warnings;
55

6-
our $VERSION = '0.036';
6+
our $VERSION = '0.037';
77

88
use Exporter 'import';
99
our %EXPORT_TAGS = ( all => [qw(decode_jwt encode_jwt)] );

lib/Crypt/KeyWrap.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package Crypt::KeyWrap;
33
use strict;
44
use warnings;
55

6-
our $VERSION = '0.036';
6+
our $VERSION = '0.037';
77

88
use Exporter 'import';
99
our %EXPORT_TAGS = ( all => [qw(aes_key_wrap aes_key_unwrap gcm_key_wrap gcm_key_unwrap pbes2_key_wrap pbes2_key_unwrap ecdh_key_wrap ecdh_key_unwrap ecdhaes_key_wrap ecdhaes_key_unwrap rsa_key_wrap rsa_key_unwrap)] );

0 commit comments

Comments
 (0)