mirror of
https://github.com/TECHNOFAB11/jwt-authorizer.git
synced 2025-12-11 23:50:07 +01:00
chore: release 0.6.0
This commit is contained in:
parent
f1b11ecf3b
commit
3a6a31b418
4 changed files with 27 additions and 12 deletions
14
CHANGELOG.md
14
CHANGELOG.md
|
|
@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
|
|
||||||
## Unreleased
|
## Unreleased
|
||||||
|
|
||||||
|
## 0.6.0 (2023-02-05)
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- JwtAuthorizer::from_oidc(issuer_uri) - building from oidc discovery page
|
||||||
|
|
||||||
|
### Chnaged
|
||||||
|
|
||||||
|
- JwtAuthorizer::layer() becomes async
|
||||||
|
|
||||||
|
### Minor Changes
|
||||||
|
|
||||||
|
- demo-server refactoring
|
||||||
|
|
||||||
## 0.5.0 - (2023-1-28)
|
## 0.5.0 - (2023-1-28)
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
|
||||||
2
Cargo.lock
generated
2
Cargo.lock
generated
|
|
@ -717,7 +717,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "jwt-authorizer"
|
name = "jwt-authorizer"
|
||||||
version = "0.5.0"
|
version = "0.6.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"axum",
|
"axum",
|
||||||
"futures-core",
|
"futures-core",
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
name = "jwt-authorizer"
|
name = "jwt-authorizer"
|
||||||
description = "jwt authorizer middleware for axum"
|
description = "jwt authorizer middleware for axum"
|
||||||
version = "0.5.0"
|
version = "0.6.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
authors = ["cduvray <c_duvray@proton.me>"]
|
authors = ["cduvray <c_duvray@proton.me>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
|
|
||||||
|
|
@ -8,6 +8,7 @@ JWT authoriser Layer for Axum.
|
||||||
- Algoritms: ECDSA, RSA, EdDSA, HS
|
- Algoritms: ECDSA, RSA, EdDSA, HS
|
||||||
- JWKS endpoint support
|
- JWKS endpoint support
|
||||||
- Configurable refresh
|
- Configurable refresh
|
||||||
|
- OpenId Connect Discovery
|
||||||
- Claims extraction
|
- Claims extraction
|
||||||
- Claims checker
|
- Claims checker
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue