rodauth-oauth 0.6.0 has been released.
rodauth-oauth is a rack-compatible toolkit for building OAuth 2.0
authorization servers, as well as OpenID Authentication Providers.
# as simple as
rodauth do
enable :oauth
end
It can also be used with Rails (via the "rodauth-rails" gem).
Website: · Rodauth OAuth
Documentation: Rodauth OAuth: OAuth 2.0 and OpenID for rodauth
Wiki: Home · Wiki · HoneyryderChuck / rodauth-oauth · GitLab
CI: https://gitlab.com/honeyryderchuck/rodauth-oauth/pipeline
These are the release notes since the last update:
### 0.7.0 (02/12/2021)
#### Features
* Internationalization (i18n) support by hooking on [rodauth-oauth](
GitHub - janko/rodauth-i18n: I18n integration and translations for Rodauth authentication framework).
* Sets all text using `translatable_method`.
* Provides english translations for all `rodauth-oauth` related user
facing text.
#### Improvements
* Enable CORS requests for OpenID configuration endpoint (@ianks)
* Introspect endpoint now exposes the `exp` token property (@gmanley)
#### Bugfixes
* on rotation policy, although the first refresh token was invalidated, a
new one wasn't being provided. This change allows a new refresh token to be
generated and exposed in the response (@gmanley)
#### Chore
Setting `rodauth` minimal supported version to `2.0.0`.
### 0.6.1 (08/09/2021)
#### Bugfixes
* Fixed rails view templates escaping.
* Fixed declaration of authorize template in the generator.