doorkeeper-openid_connect 1.7.3 → 1.7.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ab0de01b3be4241280fd4846f9c38b4c915685918a6401e464dce609fb588ace
4
- data.tar.gz: 999e38663483020d9c84b525f38842e0d9a5811c72ddfd04bdb7c86e1e018b2a
3
+ metadata.gz: e1c45a5eaa2846559e44cfc7d7526c18dafaca9bec5bad06eead06983819ad6c
4
+ data.tar.gz: 7705035b123d843861e8850854ce9a06d8b4dd4f21f478785aac050509f0e891
5
5
  SHA512:
6
- metadata.gz: '09f0860be72310e44989febad8997e4fce1a82bf8d2986cfa3dfe56a0c9e55414d74f19a6dae35636aa5871c5778baad7b8776627835a30bd356bbb251fc4e32'
7
- data.tar.gz: d6d42d010bd3e216dd1f1c84d60f86b4944f43a64d48db2cd613fddb189c7ac6ef079b713a86dd0b95a3551756b15a4868287c1af836fc0ada87efc6e1efc630
6
+ metadata.gz: dec4fdd4c2be0301a8b812c710055fa610567902a023a84c83615edf3390e0ea135cc520de315f18091e165536d0e27553d8a83eddd7f9485f2a2fd926304197
7
+ data.tar.gz: 287118857266949e24cb44ca74cc3762277baffe08e010e687b9f5fa886f0d74b1dc328cdce88de887ec3794247a49ddc7abb5fc725c12780fa05c0e292b81e6
@@ -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.call,
35
+ end_session_endpoint: instance_exec(&openid_connect.end_session_endpoint),
36
36
 
37
37
  scopes_supported: doorkeeper.scopes,
38
38
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Doorkeeper
4
4
  module OpenidConnect
5
- VERSION = '1.7.3'
5
+ VERSION = '1.7.4'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: doorkeeper-openid_connect
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.7.3
4
+ version: 1.7.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sam Dengler