keycloakify 9.4.1 → 9.4.2
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.
package/README.md
CHANGED
@@ -14,9 +14,6 @@
|
|
14
14
|
<a href="https://github.com/garronej/keycloakify/blob/main/LICENSE">
|
15
15
|
<img src="https://img.shields.io/npm/l/keycloakify">
|
16
16
|
</a>
|
17
|
-
<a href="https://github.com/keycloakify/keycloakify/blob/729503fe31a155a823f46dd66ad4ff34ca274e0a/tsconfig.json#L14">
|
18
|
-
<img src="https://camo.githubusercontent.com/0f9fcc0ac1b8617ad4989364f60f78b2d6b32985ad6a508f215f14d8f897b8d3/68747470733a2f2f62616467656e2e6e65742f62616467652f547970655363726970742f7374726963742532302546302539462539322541412f626c7565">
|
19
|
-
</a>
|
20
17
|
<a href="https://github.com/thomasdarimont/awesome-keycloak">
|
21
18
|
<img src="https://awesome.re/mentioned-badge.svg"/>
|
22
19
|
</a>
|
@@ -43,10 +40,6 @@
|
|
43
40
|
|
44
41
|
Keycloakify is fully compatible with Keycloak 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, [~~22~~](https://github.com/keycloakify/keycloakify/issues/389#issuecomment-1822509763), **23** [and up](https://github.com/keycloakify/keycloakify/discussions/346#discussioncomment-5889791)!
|
45
42
|
|
46
|
-
> 📣 I've observed that a few people have unstarred the project recently.
|
47
|
-
> I'm concerned that I may have inadvertently introduced some misinformation in the documentation, leading to frustration.
|
48
|
-
> If you're having a negative experience, [please let me know so I can resolve the issue](https://github.com/keycloakify/keycloakify/discussions/507).
|
49
|
-
|
50
43
|
## Sponsor 👼
|
51
44
|
|
52
45
|
We are exclusively sponsored by [Cloud IAM](https://cloud-iam.com/?mtm_campaign=keycloakify-deal&mtm_source=keycloakify-github), a French company offering Keycloak as a service.
|
@@ -132,7 +125,12 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
|
|
132
125
|
|
133
126
|
## 9.4
|
134
127
|
|
135
|
-
**Vite Support 🎉**
|
128
|
+
**Vite Support! 🎉**
|
129
|
+
|
130
|
+
- [The starter is now a Vite project](https://github.com/keycloakify/keycloakify-starter).
|
131
|
+
The Webpack based starter is accessible [here](https://github.com/keycloakify/keycloakify-starter-cra).
|
132
|
+
- CRA (Webpack) remains supported for the forseable future.
|
133
|
+
- If you have a CRA Keycloakify theme that you wish to migrate to Vite checkout [this migration guide](https://docs.keycloakify.dev/migration-guides/cra-greater-than-vite).
|
136
134
|
|
137
135
|
## 9.0
|
138
136
|
|
@@ -463,9 +463,10 @@
|
|
463
463
|
<#-- https://github.com/keycloakify/keycloakify/issues/91#issue-1212319466 (reports with error.ftl and Kc18) -->
|
464
464
|
<#-- https://github.com/keycloakify/keycloakify/issues/109#issuecomment-1134610163 -->
|
465
465
|
<#-- https://github.com/keycloakify/keycloakify/issues/357 -->
|
466
|
+
<#-- https://github.com/keycloakify/keycloakify/discussions/406#discussioncomment-7514787 -->
|
466
467
|
key == "loginAction" &&
|
467
468
|
are_same_path(path, ["url"]) &&
|
468
|
-
["saml-post-form.ftl", "error.ftl", "info.ftl", "login-oauth-grant.ftl", "logout-confirm.ftl"]?seq_contains(pageId) &&
|
469
|
+
["saml-post-form.ftl", "error.ftl", "info.ftl", "login-oauth-grant.ftl", "logout-confirm.ftl", "login-oauth2-device-verify-user-code.ftl"]?seq_contains(pageId) &&
|
469
470
|
!(auth?has_content && auth.showTryAnotherWayLink())
|
470
471
|
) || (
|
471
472
|
<#-- https://github.com/keycloakify/keycloakify/issues/362 -->
|
@@ -498,14 +499,19 @@
|
|
498
499
|
<#continue>
|
499
500
|
</#if>
|
500
501
|
|
501
|
-
|
502
|
+
<#-- https://github.com/keycloakify/keycloakify/discussions/406 -->
|
503
|
+
<#if (
|
504
|
+
["register.ftl", "info.ftl", "login.ftl", "login-update-password.ftl", "login-oauth2-device-verify-user-code.ftl"]?seq_contains(pageId) &&
|
505
|
+
key == "attemptedUsername" && are_same_path(path, ["auth"])
|
506
|
+
)>
|
502
507
|
<#attempt>
|
503
508
|
<#-- https://github.com/keycloak/keycloak/blob/3a2bf0c04bcde185e497aaa32d0bb7ab7520cf4a/themes/src/main/resources/theme/base/login/template.ftl#L63 -->
|
504
|
-
<#-- https://github.com/keycloakify/keycloakify/discussions/406 -->
|
505
509
|
<#if !(auth?has_content && auth.showUsername() && !auth.showResetCredentials())>
|
510
|
+
<#local out_seq += ["/*If you need '" + key + "' on " + pageId + ", please submit an issue to the Keycloakify repo*/"]>
|
506
511
|
<#continue>
|
507
512
|
</#if>
|
508
513
|
<#recover>
|
514
|
+
<#local out_seq += ["/*Testing if attemptedUsername should be skipped throwed an exception */"]>
|
509
515
|
</#attempt>
|
510
516
|
</#if>
|
511
517
|
|
package/package.json
CHANGED
@@ -463,9 +463,10 @@
|
|
463
463
|
<#-- https://github.com/keycloakify/keycloakify/issues/91#issue-1212319466 (reports with error.ftl and Kc18) -->
|
464
464
|
<#-- https://github.com/keycloakify/keycloakify/issues/109#issuecomment-1134610163 -->
|
465
465
|
<#-- https://github.com/keycloakify/keycloakify/issues/357 -->
|
466
|
+
<#-- https://github.com/keycloakify/keycloakify/discussions/406#discussioncomment-7514787 -->
|
466
467
|
key == "loginAction" &&
|
467
468
|
are_same_path(path, ["url"]) &&
|
468
|
-
["saml-post-form.ftl", "error.ftl", "info.ftl", "login-oauth-grant.ftl", "logout-confirm.ftl"]?seq_contains(pageId) &&
|
469
|
+
["saml-post-form.ftl", "error.ftl", "info.ftl", "login-oauth-grant.ftl", "logout-confirm.ftl", "login-oauth2-device-verify-user-code.ftl"]?seq_contains(pageId) &&
|
469
470
|
!(auth?has_content && auth.showTryAnotherWayLink())
|
470
471
|
) || (
|
471
472
|
<#-- https://github.com/keycloakify/keycloakify/issues/362 -->
|
@@ -498,14 +499,19 @@
|
|
498
499
|
<#continue>
|
499
500
|
</#if>
|
500
501
|
|
501
|
-
|
502
|
+
<#-- https://github.com/keycloakify/keycloakify/discussions/406 -->
|
503
|
+
<#if (
|
504
|
+
["register.ftl", "info.ftl", "login.ftl", "login-update-password.ftl", "login-oauth2-device-verify-user-code.ftl"]?seq_contains(pageId) &&
|
505
|
+
key == "attemptedUsername" && are_same_path(path, ["auth"])
|
506
|
+
)>
|
502
507
|
<#attempt>
|
503
508
|
<#-- https://github.com/keycloak/keycloak/blob/3a2bf0c04bcde185e497aaa32d0bb7ab7520cf4a/themes/src/main/resources/theme/base/login/template.ftl#L63 -->
|
504
|
-
<#-- https://github.com/keycloakify/keycloakify/discussions/406 -->
|
505
509
|
<#if !(auth?has_content && auth.showUsername() && !auth.showResetCredentials())>
|
510
|
+
<#local out_seq += ["/*If you need '" + key + "' on " + pageId + ", please submit an issue to the Keycloakify repo*/"]>
|
506
511
|
<#continue>
|
507
512
|
</#if>
|
508
513
|
<#recover>
|
514
|
+
<#local out_seq += ["/*Testing if attemptedUsername should be skipped throwed an exception */"]>
|
509
515
|
</#attempt>
|
510
516
|
</#if>
|
511
517
|
|