diff --git a/CHANGELOG.md b/CHANGELOG.md index 3fa73d7..2086368 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +## v0.5.1 + +### ⚙️ Miscellaneous Tasks + +- **(deps)**: update proxy-wasm to v0.2.2 (from v0.2.1) + ## v0.5.0 ### 🐛 Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index 3404801..24fbe8f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1161,7 +1161,7 @@ checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96" [[package]] name = "wasm-oidc-plugin" -version = "0.5.0" +version = "0.5.1" dependencies = [ "aes-gcm", "base64 0.22.1", diff --git a/Cargo.toml b/Cargo.toml index 349024c..ee0bf4a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] publish = false name = "wasm-oidc-plugin" -version = "0.5.0" +version = "0.5.1" authors = ["WWU Cloud Developer , Anton Engelhardt "] description = "A plugin for the Envoy-Proxy written in Rust. It is a HTTP Filter, that implements the OIDC Authorization Code Flow. Requests sent to the filter are checked for the presence of a valid session cookie. If the cookie is not present, the user is redirected to the authorization_endpoint to authenticate. After successful authentication, the user is redirected back to the original request with a code in the URL query. The plugin then exchanges the code for a token using the token_endpoint and stores the token in the session. If the cookie is present, the plugin validates the token and passes the request to the backend, if the token is valid (optional)." license = "Apache-2.0"