MIGRATION-GUIDE-v1.md in rodauth-oauth-1.0.0.pre.beta2 vs MIGRATION-GUIDE-v1.md in rodauth-oauth-1.0.0
- old
+ new
@@ -88,10 +88,14 @@
```ruby
oauth_applications_client_secret_hash_column nil
```
+## oauth applications: oauth_applications_homepage_url_column no longer required
+
+The homepage url is no longer considered a require prooperty of an OAuth client application.
+
## oauth grants: access token and refresh token hashed by default
access token and refresh token columns are now hashed by default, and point to the same column as the main counterpart:
```ruby
@@ -201,9 +205,17 @@
JWKs URI endpoint has been moved to its plugin. If you require this functionality, make sure you enable it:
```ruby
enable :oauth_jwt, :oauth_jwt_jwks
+```
+
+## OIDC RP-initiated logout segregated in its plugin
+
+It was previously being loaded in the `:oidc` plugin by default. If you require this funtionality, enable the plugin:
+
+```ruby
+enable :oidc_rp_initiated_logout
```
## routing functions renamed
Previously, loading well-known routes, the oauth server metadata, or oauth application/tokens (now grants) management dashboard implied calling a function on roda to load those routes. These have been renamed:
\ No newline at end of file