keycloakify 5.8.1 → 5.9.3
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
@@ -36,6 +36,9 @@
|
|
36
36
|
<img src="https://user-images.githubusercontent.com/6702424/110260457-a1c3d380-7fac-11eb-853a-80459b65626b.png">
|
37
37
|
</p>
|
38
38
|
|
39
|
+
> 🗣 Beloved contributors: [Keycloakify v6](https://docs.keycloakify.dev/v/v6/) is just around the corner, please stop
|
40
|
+
> submitting PRs against `main` but work on [the `v6` branch](https://github.com/InseeFrLab/keycloakify/tree/v6) instead.
|
41
|
+
|
39
42
|
# Changelog highlights
|
40
43
|
|
41
44
|
## 5.8.0
|
@@ -14,7 +14,8 @@ ${ftl_object_to_js_code_declaring_an_object(.data_model, [])?no_esc};
|
|
14
14
|
"totp", "totpSecret", "SAMLRequest", "SAMLResponse", "relayState", "device_user_code", "code",
|
15
15
|
"password-new", "rememberMe", "login", "authenticationExecution", "cancel-aia", "clientDataJSON",
|
16
16
|
"authenticatorData", "signature", "credentialId", "userHandle", "error", "authn_use_chk", "authenticationExecution",
|
17
|
-
"isSetRetry", "try-again", "attestationObject", "publicKeyCredentialId", "authenticatorLabel"
|
17
|
+
"isSetRetry", "try-again", "attestationObject", "publicKeyCredentialId", "authenticatorLabel",
|
18
|
+
"user.attributes.dateOfBirth", "user.attributes.country", "user.attributes.acceptedTermsAndConditions"
|
18
19
|
]>
|
19
20
|
|
20
21
|
<#attempt>
|
@@ -272,7 +273,12 @@ ${ftl_object_to_js_code_declaring_an_object(.data_model, [])?no_esc};
|
|
272
273
|
|
273
274
|
<#list object as array_item>
|
274
275
|
|
275
|
-
<#local rec_out =
|
276
|
+
<#local rec_out = "">
|
277
|
+
<#attempt>
|
278
|
+
<#local rec_out = ftl_object_to_js_code_declaring_an_object(array_item, path + [ i ])>
|
279
|
+
<#recover>
|
280
|
+
<#return "ABORT: Unable to convert recursive array item in enumerable">
|
281
|
+
</#attempt>
|
276
282
|
|
277
283
|
<#local i = i + 1>
|
278
284
|
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "keycloakify",
|
3
|
-
"version": "5.
|
3
|
+
"version": "5.9.3",
|
4
4
|
"description": "Keycloak theme generator for Reacts app",
|
5
5
|
"repository": {
|
6
6
|
"type": "git",
|
@@ -378,11 +378,11 @@
|
|
378
378
|
"@octokit/rest": "^18.12.0",
|
379
379
|
"cheerio": "^1.0.0-rc.5",
|
380
380
|
"cli-select": "^1.1.2",
|
381
|
-
"evt": "^2.
|
381
|
+
"evt": "^2.4.1",
|
382
382
|
"memoizee": "^0.4.15",
|
383
383
|
"minimal-polyfills": "^2.2.1",
|
384
384
|
"path-browserify": "^1.0.1",
|
385
|
-
"powerhooks": "^0.20.
|
385
|
+
"powerhooks": "^0.20.16",
|
386
386
|
"react-markdown": "^5.0.3",
|
387
387
|
"scripting-tools": "^0.19.13",
|
388
388
|
"tsafe": "^0.10.1",
|
package/src/bin/build-keycloak-theme/generateFtl/ftl_object_to_js_code_declaring_an_object.ftl
CHANGED
@@ -14,7 +14,8 @@ ${ftl_object_to_js_code_declaring_an_object(.data_model, [])?no_esc};
|
|
14
14
|
"totp", "totpSecret", "SAMLRequest", "SAMLResponse", "relayState", "device_user_code", "code",
|
15
15
|
"password-new", "rememberMe", "login", "authenticationExecution", "cancel-aia", "clientDataJSON",
|
16
16
|
"authenticatorData", "signature", "credentialId", "userHandle", "error", "authn_use_chk", "authenticationExecution",
|
17
|
-
"isSetRetry", "try-again", "attestationObject", "publicKeyCredentialId", "authenticatorLabel"
|
17
|
+
"isSetRetry", "try-again", "attestationObject", "publicKeyCredentialId", "authenticatorLabel",
|
18
|
+
"user.attributes.dateOfBirth", "user.attributes.country", "user.attributes.acceptedTermsAndConditions"
|
18
19
|
]>
|
19
20
|
|
20
21
|
<#attempt>
|
@@ -272,7 +273,12 @@ ${ftl_object_to_js_code_declaring_an_object(.data_model, [])?no_esc};
|
|
272
273
|
|
273
274
|
<#list object as array_item>
|
274
275
|
|
275
|
-
<#local rec_out =
|
276
|
+
<#local rec_out = "">
|
277
|
+
<#attempt>
|
278
|
+
<#local rec_out = ftl_object_to_js_code_declaring_an_object(array_item, path + [ i ])>
|
279
|
+
<#recover>
|
280
|
+
<#return "ABORT: Unable to convert recursive array item in enumerable">
|
281
|
+
</#attempt>
|
276
282
|
|
277
283
|
<#local i = i + 1>
|
278
284
|
|