From 582206b24c5a959b5803d43d2f1aba4aa67f301f Mon Sep 17 00:00:00 2001 From: cduvray Date: Wed, 18 Jan 2023 07:38:00 +0100 Subject: [PATCH] chore: release 0.3.2 --- CHANGELOG.md | 6 ++++++ Cargo.lock | 2 +- jwt-authorizer/Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a7ffe0a..2ab6111 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## 0.3.2 - (2023-1-??) + +### Fixed + +- fix: when jwks store endpoint is unavailable response should be an error 500 (not 403) + ## 0.3.1 - (2023-1-14) ### Fixed diff --git a/Cargo.lock b/Cargo.lock index 71f9694..f5c2ed2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -708,7 +708,7 @@ dependencies = [ [[package]] name = "jwt-authorizer" -version = "0.3.1" +version = "0.3.2" dependencies = [ "axum", "futures-core", diff --git a/jwt-authorizer/Cargo.toml b/jwt-authorizer/Cargo.toml index aef8cc7..744d0d3 100644 --- a/jwt-authorizer/Cargo.toml +++ b/jwt-authorizer/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "jwt-authorizer" description = "jwt authorizer middleware for axum" -version = "0.3.1" +version = "0.3.2" edition = "2021" authors = ["cduvray "] license = "MIT"