File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,6 +10,16 @@ and this project adheres to
1010
1111---
1212
13+ ## [ 0.8.3] - 2025-05-30
14+
15+ ### Changed
16+
17+ - Client secret is optional for the authorization code flow (thanks to
18+ @linkdotnet for the contribution 👏 ) and will be checked only if present in
19+ the response
20+
21+ ---
22+
1323## [ 0.8.2] - 2025-02-17
1424
1525### Changed
@@ -22,16 +32,19 @@ and this project adheres to
2232
2333# Fixed
2434
25- - Chrome ERR_SSL_KEY_USAGE_INCOMPATIBLE due to the key usage not being configured.
35+ - Chrome ERR_SSL_KEY_USAGE_INCOMPATIBLE due to the key usage not being
36+ configured.
2637
2738---
2839
2940## [ 0.8.0] - 2024-08-28
3041
3142- Improve documentation about how to configure Localauth0 in docker.
3243- Add new API routes to:
33- - Get/set custom claims in JWT. The route is available at ` /oauth/token/custom_claims ` .
34- - Get/set user info properties (w custom fields). The route is available at ` /oauth/token/user_info ` .
44+ - Get/set custom claims in JWT. The route is available at
45+ ` /oauth/token/custom_claims ` .
46+ - Get/set user info properties (w custom fields). The route is available at
47+ ` /oauth/token/user_info ` .
3548
3649---
3750
@@ -201,8 +214,8 @@ Note: images temporairly use the public.ecr.aws/c6i9l4r6/localauth0 registry.
201214- First release 🎉
202215
203216
204-
205- [ Unreleased ] : https://github.com/primait/localauth0/compare/0.8.2...HEAD
217+ [ Unreleased ] : https://github.com/primait/localauth0/compare/0.8.3...HEAD
218+ [ 0.8.3 ] : https://github.com/primait/localauth0/compare/0.8.2...0.8.3
206219[ 0.8.2 ] : https://github.com/primait/localauth0/compare/0.8.1...0.8.2
207220[ 0.8.1 ] : https://github.com/primait/localauth0/compare/0.8.0...0.8.1
208221[ 0.8.0 ] : https://github.com/primait/localauth0/compare/0.7.2...0.8.0
Original file line number Diff line number Diff line change 11[package ]
22edition = " 2021"
33name = " localauth0"
4- version = " 0.8.2 "
4+ version = " 0.8.3 "
55
66# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
77
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ tenant and test it offline for "real".
2727In order to run localauth0 docker image execute the following:
2828
2929``` shell
30- docker run -d -p 3000:3000 public.ecr.aws/primaassicurazioni/localauth0:0.8.2
30+ docker run -d -p 3000:3000 public.ecr.aws/primaassicurazioni/localauth0:0.8.3
3131```
3232
3333By default, the container exposes an http server on the port 3000 and an https
@@ -248,7 +248,7 @@ Add this snippet to your `docker-compose.yml` file and reference it in your app
248248
249249``` yaml
250250auth0 :
251- image : public.ecr.aws/primaassicurazioni/localauth0:0.8.2
251+ image : public.ecr.aws/primaassicurazioni/localauth0:0.8.3
252252 healthcheck :
253253 test : ["CMD", "/localauth0", "healthcheck"]
254254 ports :
You can’t perform that action at this time.
0 commit comments