keycloakify 7.13.1 → 7.13.2-rc.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.
@@ -34,6 +34,8 @@
34
34
  <#-- https://github.com/keycloakify/keycloakify/pull/359 Compat with Keycloak prior v12 -->
35
35
  <#if !messagesPerField.existsError??>
36
36
 
37
+ /* Consider updating to Keycloak v12 or newer */
38
+
37
39
  <#-- https://github.com/keycloakify/keycloakify/pull/218 -->
38
40
  <#if '${fieldName}' == 'username' || '${fieldName}' == 'password'>
39
41
 
@@ -42,6 +44,7 @@
42
44
  <#attempt>
43
45
  <#assign doExistMessageForUsernameOrPassword = messagesPerField.exists('username')>
44
46
  <#recover>
47
+ /* There was an FTL error calling messagesPerField.exists('username') */
45
48
  <#assign doExistMessageForUsernameOrPassword = true>
46
49
  </#attempt>
47
50
 
@@ -49,6 +52,7 @@
49
52
  <#attempt>
50
53
  <#assign doExistMessageForUsernameOrPassword = messagesPerField.exists('password')>
51
54
  <#recover>
55
+ /* There was an FTL error calling messagesPerField.exists('password') */
52
56
  <#assign doExistMessageForUsernameOrPassword = true>
53
57
  </#attempt>
54
58
  </#if>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "keycloakify",
3
- "version": "7.13.1",
3
+ "version": "7.13.2-rc.0",
4
4
  "description": "Create Keycloak themes using React",
5
5
  "repository": {
6
6
  "type": "git",
@@ -34,6 +34,8 @@
34
34
  <#-- https://github.com/keycloakify/keycloakify/pull/359 Compat with Keycloak prior v12 -->
35
35
  <#if !messagesPerField.existsError??>
36
36
 
37
+ /* Consider updating to Keycloak v12 or newer */
38
+
37
39
  <#-- https://github.com/keycloakify/keycloakify/pull/218 -->
38
40
  <#if '${fieldName}' == 'username' || '${fieldName}' == 'password'>
39
41
 
@@ -42,6 +44,7 @@
42
44
  <#attempt>
43
45
  <#assign doExistMessageForUsernameOrPassword = messagesPerField.exists('username')>
44
46
  <#recover>
47
+ /* There was an FTL error calling messagesPerField.exists('username') */
45
48
  <#assign doExistMessageForUsernameOrPassword = true>
46
49
  </#attempt>
47
50
 
@@ -49,6 +52,7 @@
49
52
  <#attempt>
50
53
  <#assign doExistMessageForUsernameOrPassword = messagesPerField.exists('password')>
51
54
  <#recover>
55
+ /* There was an FTL error calling messagesPerField.exists('password') */
52
56
  <#assign doExistMessageForUsernameOrPassword = true>
53
57
  </#attempt>
54
58
  </#if>