keycloakify 9.6.2 → 9.6.4

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
@@ -40,6 +40,9 @@
40
40
 
41
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)!
42
42
 
43
+ > NOTE: Keycloak 24 introduces [important changes](https://www.keycloak.org/docs/latest/upgrading/index.html#changes-to-freemarker-templates-to-render-pages-based-on-the-user-profile-and-realm).
44
+ > We're actively working on incorporating them into Keycloakify.
45
+
43
46
  ## Sponsor
44
47
 
45
48
  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.
@@ -497,6 +497,14 @@
497
497
  ) || (
498
498
  are_same_path(path, ["user"]) &&
499
499
  key == "delegateForUpdate"
500
+ ) || (
501
+ <#-- Security audit forwarded by Garth (Gmail) -->
502
+ are_same_path(path, ["client", "attributes"]) &&
503
+ key == "saml.signing.private.key"
504
+ ) || (
505
+ <#-- See: https://github.com/keycloakify/keycloakify/issues/534 -->
506
+ are_same_path(path, ["login"]) &&
507
+ key == "password"
500
508
  )
501
509
  >
502
510
  <#local out_seq += ["/*If you need '" + path?join(".") + "." + key + "' on " + pageId + ", please submit an issue to the Keycloakify repo*/"]>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "keycloakify",
3
- "version": "9.6.2",
3
+ "version": "9.6.4",
4
4
  "description": "Create Keycloak themes using React",
5
5
  "repository": {
6
6
  "type": "git",
@@ -497,6 +497,14 @@
497
497
  ) || (
498
498
  are_same_path(path, ["user"]) &&
499
499
  key == "delegateForUpdate"
500
+ ) || (
501
+ <#-- Security audit forwarded by Garth (Gmail) -->
502
+ are_same_path(path, ["client", "attributes"]) &&
503
+ key == "saml.signing.private.key"
504
+ ) || (
505
+ <#-- See: https://github.com/keycloakify/keycloakify/issues/534 -->
506
+ are_same_path(path, ["login"]) &&
507
+ key == "password"
500
508
  )
501
509
  >
502
510
  <#local out_seq += ["/*If you need '" + path?join(".") + "." + key + "' on " + pageId + ", please submit an issue to the Keycloakify repo*/"]>