From a31cde1dd374327abe850ed9bdf49c65ad9df5b8 Mon Sep 17 00:00:00 2001 From: cduvray Date: Sun, 21 Jan 2024 09:05:56 +0100 Subject: [PATCH] chore: release 0.14.0 --- CHANGELOG.md | 7 +++++++ Cargo.lock | 2 +- jwt-authorizer/Cargo.toml | 4 ++-- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 75c132d..db946c7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## 0.14.0 (2024-01-22) + +- update to axum 0.7 + - tower-http 0.5, header 0.4, http 1.0 +- jsonwebtoken 9.2 +- tonic support removed temporarily (waiting for tonic migration to axum 0.7) + ## 0.13.0 (2023-11-20) - added support for custom http client in jwks discovery (fixes #41) diff --git a/Cargo.lock b/Cargo.lock index 437f290..149be1d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -977,7 +977,7 @@ dependencies = [ [[package]] name = "jwt-authorizer" -version = "0.13.0" +version = "0.14.0" dependencies = [ "axum", "chrono", diff --git a/jwt-authorizer/Cargo.toml b/jwt-authorizer/Cargo.toml index 914c51f..ed1bb5e 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 and tonic" -version = "0.13.0" +version = "0.14.0" edition = "2021" authors = ["cduvray "] license = "MIT" @@ -23,7 +23,7 @@ serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" thiserror = "1.0" tokio = { version = "1.25", features = ["full"] } -tower-http = { version = "0.5.0", features = ["trace", "auth"] } +tower-http = { version = "0.5", features = ["trace", "auth"] } tower-layer = "0.3" tower-service = "0.3" tracing = "0.1"