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 +4 -4
- data/CHANGELOG.md +16 -2
- data/lib/keycloak/version.rb +1 -1
- data/lib/omniauth/strategies/keycloak-openid.rb +5 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: abf0318ebff69089a3b27e84c5ef50575875cd21b525d62845d30e9dd86893aa
|
|
4
|
+
data.tar.gz: 9da9b321758ea6227e476cee096cc3bc53b6a18f9db7e5458284fe5ad4b0fa4c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
-
-
|
|
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)
|
data/lib/keycloak/version.rb
CHANGED