doorkeeper-openid_connect 1.7.3 → 1.7.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e1c45a5eaa2846559e44cfc7d7526c18dafaca9bec5bad06eead06983819ad6c
|
|
4
|
+
data.tar.gz: 7705035b123d843861e8850854ce9a06d8b4dd4f21f478785aac050509f0e891
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dec4fdd4c2be0301a8b812c710055fa610567902a023a84c83615edf3390e0ea135cc520de315f18091e165536d0e27553d8a83eddd7f9485f2a2fd926304197
|
|
7
|
+
data.tar.gz: 287118857266949e24cb44ca74cc3762277baffe08e010e687b9f5fa886f0d74b1dc328cdce88de887ec3794247a49ddc7abb5fc725c12780fa05c0e292b81e6
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
## Unreleased
|
|
2
2
|
|
|
3
|
+
## v1.7.4 (2020-07-06)
|
|
4
|
+
|
|
5
|
+
- [#119] Execute end_session_endpoint in the controllers context (thanks to @joeljunstrom)
|
|
6
|
+
|
|
3
7
|
## v1.7.3 (2020-07-06)
|
|
4
8
|
|
|
5
9
|
- [#111] Add configuration callback `select_account_for_resource_owner` to support the `prompt=select_account` param
|
|
@@ -8,7 +12,6 @@
|
|
|
8
12
|
- [#116] Support Doorkeeper API (> 5.4) for registering custom grant flows.
|
|
9
13
|
- [#117] Fix migration template to use Rails migrations DSL for association.
|
|
10
14
|
- [#118] Use fragment urls for implicit flow error redirects (thanks to @joeljunstrom)
|
|
11
|
-
- [#119] Execute end_session_endpoint in the controllers context (thanks to @joeljunstrom)
|
|
12
15
|
|
|
13
16
|
## v1.7.2 (2020-05-20)
|
|
14
17
|
|
|
@@ -32,7 +32,7 @@ module Doorkeeper
|
|
|
32
32
|
introspection_endpoint: oauth_introspect_url(protocol: protocol),
|
|
33
33
|
userinfo_endpoint: oauth_userinfo_url(protocol: protocol),
|
|
34
34
|
jwks_uri: oauth_discovery_keys_url(protocol: protocol),
|
|
35
|
-
end_session_endpoint: openid_connect.end_session_endpoint
|
|
35
|
+
end_session_endpoint: instance_exec(&openid_connect.end_session_endpoint),
|
|
36
36
|
|
|
37
37
|
scopes_supported: doorkeeper.scopes,
|
|
38
38
|
|