File tree Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 8.3.0 (2023-03-15)
4
+
5
+ - Update base64
6
+ - Implement Clone for TokenData<T > if T impls Clone
7
+
8
+
3
9
## 8.2.0 (2022-12-03)
4
10
5
11
- Add DecodingKey::from_jwk
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " jsonwebtoken"
3
- version = " 8.2 .0"
3
+ version = " 8.3 .0"
4
4
authors = [" Vincent Prouillet <hello@vincentprouillet.com>" ]
5
5
license = " MIT"
6
6
readme = " README.md"
Original file line number Diff line number Diff line change @@ -578,7 +578,7 @@ mod tests {
578
578
579
579
#[ test]
580
580
fn aud_string_ok ( ) {
581
- let claims = json ! ( { "aud" : [ "Everyone" ] } ) ;
581
+ let claims = json ! ( { "aud" : "Everyone" } ) ;
582
582
let mut validation = Validation :: new ( Algorithm :: HS256 ) ;
583
583
validation. validate_exp = false ;
584
584
validation. required_spec_claims = HashSet :: new ( ) ;
You can’t perform that action at this time.
0 commit comments