chore: release 0.14.0

This commit is contained in:
cduvray 2024-01-21 09:05:56 +01:00
parent f0b09235a1
commit a31cde1dd3
3 changed files with 10 additions and 3 deletions

View file

@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Unreleased ## 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) ## 0.13.0 (2023-11-20)
- added support for custom http client in jwks discovery (fixes #41) - added support for custom http client in jwks discovery (fixes #41)

2
Cargo.lock generated
View file

@ -977,7 +977,7 @@ dependencies = [
[[package]] [[package]]
name = "jwt-authorizer" name = "jwt-authorizer"
version = "0.13.0" version = "0.14.0"
dependencies = [ dependencies = [
"axum", "axum",
"chrono", "chrono",

View file

@ -1,7 +1,7 @@
[package] [package]
name = "jwt-authorizer" name = "jwt-authorizer"
description = "jwt authorizer middleware for axum and tonic" description = "jwt authorizer middleware for axum and tonic"
version = "0.13.0" version = "0.14.0"
edition = "2021" edition = "2021"
authors = ["cduvray <c_duvray@proton.me>"] authors = ["cduvray <c_duvray@proton.me>"]
license = "MIT" license = "MIT"
@ -23,7 +23,7 @@ serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0" serde_json = "1.0"
thiserror = "1.0" thiserror = "1.0"
tokio = { version = "1.25", features = ["full"] } 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-layer = "0.3"
tower-service = "0.3" tower-service = "0.3"
tracing = "0.1" tracing = "0.1"