diff --git a/CHANGELOG.md b/CHANGELOG.md index 9ee1d28..806bedb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,10 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +--- + +## [0.5.0] + ### Added - Added https server in addition to the current http server. - Made http/https port configurable in toml file (defaults are 3000/3001). +- Added the subject field to the id_token and userinfo type. + +### Changed + +- Changed id_token audience to return the client_id as described in the [auth0 doc](https://auth0.com/docs/secure/tokens/id-tokens/validate-id-tokens). --- @@ -93,7 +102,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - First release 🎉 -[Unreleased]: https://github.com/primait/localauth0/compare/0.4.1...HEAD +[Unreleased]: https://github.com/primait/localauth0/compare/0.5.0...HEAD +[0.5.0]: https://github.com/primait/localauth0/compare/0.4.1...0.5.0 [0.4.1]: https://github.com/primait/localauth0/compare/0.4.0...0.4.1 [0.4.0]: https://github.com/primait/localauth0/compare/0.3.0...0.4.0 [0.3.0]: https://github.com/primait/localauth0/compare/0.2.2...0.3.0 diff --git a/Cargo.lock b/Cargo.lock index 17d35f5..f789123 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -927,7 +927,7 @@ checksum = "e34f76eb3611940e0e7d53a9aaa4e6a3151f69541a282fd0dad5571420c53ff1" [[package]] name = "localauth0" -version = "0.4.1" +version = "0.5.0" dependencies = [ "actix-files", "actix-web", diff --git a/Cargo.toml b/Cargo.toml index 2429a10..f82c45d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] edition = "2021" name = "localauth0" -version = "0.4.1" +version = "0.5.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html