oidc_provider 0.6.0 → 0.7.0

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: e4231c966d6dde889dbb66dd422032cb86e930a254eb3e2ba63d91f9f5fdd39b
4
- data.tar.gz: 98261296d4c636097a092b7cabdbb31c8da5d933356c625b1fa443201219a415
3
+ metadata.gz: 96fc579002b69bf4274b426dc72fa5f17faa21b671ef2efda3a77da57ad87df7
4
+ data.tar.gz: 72d98a17ea78cd0d5f434065b0446e8a2912d8917e120e635b53d9ad0de63662
5
5
  SHA512:
6
- metadata.gz: 4f3899352aa0c25c1e93ea34649fc90812f9babed14a1e6e3261bf70775d7749aa67bfad150f4b9b4b8fae8499246317ca45349eaa65c12917859bcc947c3118
7
- data.tar.gz: 1013a95b8fcfc12b54f66f6bc792d1021fc416694c0e5d84ad18a34321b59bdf71b89b8e893898bdc3f3f1041ce69c1ebff6e44bc4b860ea9179d3170329e2db
6
+ metadata.gz: c345282497779df9fd407de374ab3796d0a65e63e9d7de99f638fa4dee109866326d7e39ee4c52036c943ee834b9356d142aefd9ce06bb9c20f4f0af6ce2f549
7
+ data.tar.gz: 93d63b921a1202547009333afa209bc7a03a4ef43d3382c8cfdb2906e6d49d0f5c31bb23673a1b38f1625649b229023f9c4b6465c7c4ea6e317729ddc025673b
@@ -57,7 +57,7 @@ module OIDCProvider
57
57
  # So we will forcibly sign out the user here and then redirect them so they
58
58
  # don't get redirected back to the url that contains `prompt=login`
59
59
  unauthenticate!
60
- redirect_to url_for(request.query_parameters.except(:prompt))
60
+ redirect_to url_for(request.query_parameters.except(:prompt)), allow_other_host: true
61
61
  end
62
62
  end
63
63
  end
@@ -5,7 +5,7 @@ module OIDCProvider
5
5
  def destroy
6
6
  unauthenticate!
7
7
  redirect_to "/" unless OIDCProvider.after_sign_out_path
8
- redirect_to OIDCProvider.after_sign_out_path.respond_to?(:call) ? OIDCProvider.after_sign_out_path.call(params) : OIDCProvider.after_sign_out_path
8
+ redirect_to (OIDCProvider.after_sign_out_path.respond_to?(:call) ? OIDCProvider.after_sign_out_path.call(params) : OIDCProvider.after_sign_out_path), allow_other_host: true
9
9
  end
10
10
  end
11
11
  end
@@ -1,3 +1,3 @@
1
1
  module OIDCProvider
2
- VERSION = '0.6.0'
2
+ VERSION = '0.7.0'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: oidc_provider
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - William Carey
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-05-01 00:00:00.000000000 Z
11
+ date: 2025-05-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails