Skip to content

Commit

Permalink
Update jsonwebtoken requirement from 8 to 9 (#304)
Browse files Browse the repository at this point in the history
* Update jsonwebtoken requirement from 8 to 9

Updates the requirements on [jsonwebtoken](https://github.com/Keats/jsonwebtoken) to permit the latest version.
- [Changelog](https://github.com/Keats/jsonwebtoken/blob/master/CHANGELOG.md)
- [Commits](Keats/jsonwebtoken@v8.0.0...v9.1.0)

---
updated-dependencies:
- dependency-name: jsonwebtoken
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>

* Skip aud validation

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Craig Colegrove <[email protected]>
  • Loading branch information
dependabot[bot] and giarc3 authored Jan 2, 2024
1 parent bca9378 commit 5a75094
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ futures = "0.3.1"
hex = "0.4"
ironcore-search-helpers = { version = "0.2", optional = true }
itertools = "0.10"
jsonwebtoken = "8"
jsonwebtoken = "9"
lazy_static = "1.4"
log = "0.4"
percent-encoding = "2.1"
Expand Down
1 change: 1 addition & 0 deletions src/internal/user_api.rs
Original file line number Diff line number Diff line change
Expand Up @@ -333,6 +333,7 @@ impl Jwt {
let validation = {
let mut temp: Validation = Default::default();
temp.insecure_disable_signature_validation();
temp.validate_aud = false;
temp.validate_exp = false;
temp
};
Expand Down

0 comments on commit 5a75094

Please sign in to comment.