omniauth-keycloak 1.5.0 → 1.5.1

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: 2d8d99fcc7f0918b7fb7dd8190badbb8a0f47864171ad4f2db3a5f7576f010ac
4
- data.tar.gz: 5ecaebf0b46ac4c953c93d53642d7dc71e074c68dc54736e3958f1f44e4489fb
3
+ metadata.gz: abf0318ebff69089a3b27e84c5ef50575875cd21b525d62845d30e9dd86893aa
4
+ data.tar.gz: 9da9b321758ea6227e476cee096cc3bc53b6a18f9db7e5458284fe5ad4b0fa4c
5
5
  SHA512:
6
- metadata.gz: 24b46f0e102b524ee70ce0a751135d7ea4eec64db1406d2a67af2c45434e634d61879b0fd78a6e57bbdc1f2632495a1d09335bd61069ad59bb86a0b807895146
7
- data.tar.gz: d7165cafe46c8cd15aba9efff3229e91287061e6d52853b4e64ae0fc23618e4bc49b5d45aae11badaff048ba0e08d5db8a8724f5f56b266fb53669ff3621a403
6
+ metadata.gz: e8f45c365ccf4d823522da850cdc1dbde5f656d32aff2445fad157c579777615b2b508ce798aee23a0628ddfc6665d4ce53c603c0208047bdfbb098e2a97b626
7
+ data.tar.gz: 0431be28d8cbfb0f92d24b0c52090e4baf8a4a7206e3da87c10bd8ba497f5fee0b64dfdabaeb845d5bf032fdf6c3d1753fb0cbd34cc6c2d267217aa6bbef3413
data/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ## [v1.5.0](https://github.com/ccrockett/omniauth-keycloak/tree/v1.5.0) (2023-03-01)
4
+
5
+ [Full Changelog](https://github.com/ccrockett/omniauth-keycloak/compare/v1.4.4...v1.5.0)
6
+
7
+ **Closed issues:**
8
+
9
+ - When in test mode, setup phase tries to fetch Keycloak configuration [\#32](https://github.com/ccrockett/omniauth-keycloak/issues/32)
10
+ - Dependency update - json-jwt [\#36](https://github.com/ccrockett/omniauth-keycloak/issues/36)
11
+
12
+ **Merged pull requests:**
13
+
14
+ - Fix typo [\#34](https://github.com/ccrockett/omniauth-keycloak/pull/34) ([Kazhuu](https://github.com/Kazhuu))
15
+ - Skip fetching keycloak configuration when in testing mode [\#33](https://github.com/ccrockett/omniauth-keycloak/pull/33) ([Kazhuu](https://github.com/Kazhuu))
16
+
3
17
  ## [v1.4.4](https://github.com/ccrockett/omniauth-keycloak/tree/v1.4.4) (2022-07-25)
4
18
 
5
19
  [Full Changelog](https://github.com/ccrockett/omniauth-keycloak/compare/v1.4.3...v1.4.4)
@@ -7,7 +21,6 @@
7
21
  **Merged pull requests:**
8
22
 
9
23
  - Fix NoMethodError when querying for JSON Web keys [\#31](https://github.com/ccrockett/omniauth-keycloak/pull/31) ([Kazhuu](https://github.com/Kazhuu))
10
- - expose id\_token inside extra hash of auth hash [\#26](https://github.com/ccrockett/omniauth-keycloak/pull/26) ([rah-wtag](https://github.com/rah-wtag))
11
24
 
12
25
  ## [v1.4.3](https://github.com/ccrockett/omniauth-keycloak/tree/v1.4.3) (2022-07-24)
13
26
 
@@ -38,10 +51,11 @@
38
51
 
39
52
  - Get Request is now Post Request [\#23](https://github.com/ccrockett/omniauth-keycloak/issues/23)
40
53
  - Is the "/auth/" part mandatory in Keycloak's configuration URL? [\#19](https://github.com/ccrockett/omniauth-keycloak/issues/19)
41
- - Add example instructions for Keycloak configuration [\#14](https://github.com/ccrockett/omniauth-keycloak/issues/14)
54
+ - Keycloak reports incorrect redirect\_uri [\#14](https://github.com/ccrockett/omniauth-keycloak/issues/14)
42
55
 
43
56
  **Merged pull requests:**
44
57
 
58
+ - expose id\_token inside extra hash of auth hash [\#26](https://github.com/ccrockett/omniauth-keycloak/pull/26) ([Riz-v](https://github.com/Riz-v))
45
59
  - Bump bindata from 2.4.9 to 2.4.10 [\#22](https://github.com/ccrockett/omniauth-keycloak/pull/22) ([dependabot[bot]](https://github.com/apps/dependabot))
46
60
 
47
61
  ## [v1.4.0](https://github.com/ccrockett/omniauth-keycloak/tree/v1.4.0) (2021-12-18)
@@ -1,5 +1,5 @@
1
1
  module Omniauth
2
2
  module Keycloak
3
- VERSION = "1.5.0"
3
+ VERSION = "1.5.1"
4
4
  end
5
5
  end
@@ -98,6 +98,11 @@ module OmniAuth
98
98
  deep_symbolize(options.auth_token_params))
99
99
  end
100
100
 
101
+ def request_phase
102
+ options.authorize_options.each {|key| options[key] = request.params[key.to_s] }
103
+ super
104
+ end
105
+
101
106
  uid{ raw_info['sub'] }
102
107
 
103
108
  info do
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: omniauth-keycloak
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.0
4
+ version: 1.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Cameron Crockett