keycloakify 10.0.0-rc.144 → 10.0.0-rc.146
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
@@ -132,6 +132,7 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
|
|
132
132
|
<td align="center" valign="top" width="14.28%"><a href="https://github.com/law108000"><img src="https://avatars.githubusercontent.com/u/8112024?v=4?s=100" width="100px;" alt="Rlok"/><br /><sub><b>Rlok</b></sub></a><br /><a href="https://github.com/keycloakify/keycloakify/commits?author=law108000" title="Code">💻</a></td>
|
133
133
|
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Moulyy"><img src="https://avatars.githubusercontent.com/u/115405804?v=4?s=100" width="100px;" alt="Moulyy"/><br /><sub><b>Moulyy</b></sub></a><br /><a href="https://github.com/keycloakify/keycloakify/commits?author=Moulyy" title="Code">💻</a></td>
|
134
134
|
<td align="center" valign="top" width="14.28%"><a href="https://github.com/madmadson"><img src="https://avatars.githubusercontent.com/u/798831?v=4?s=100" width="100px;" alt="Tobias Matt"/><br /><sub><b>Tobias Matt</b></sub></a><br /><a href="https://github.com/keycloakify/keycloakify/commits?author=madmadson" title="Code">💻</a></td>
|
135
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/oliviergoulet5"><img src="https://avatars.githubusercontent.com/u/17685861?v=4?s=100" width="100px;" alt="Olivier Goulet"/><br /><sub><b>Olivier Goulet</b></sub></a><br /><a href="https://github.com/keycloakify/keycloakify/commits?author=oliviergoulet5" title="Code">💻</a></td>
|
135
136
|
</tr>
|
136
137
|
</tbody>
|
137
138
|
</table>
|
package/bin/526.index.js
CHANGED
@@ -753,7 +753,7 @@ async function command(params) {
|
|
753
753
|
: [
|
754
754
|
`-v${SPACE_PLACEHOLDER}".${external_path_.sep}${(0,external_path_.relative)(process.cwd(), realmJsonFilePath)}":/opt/keycloak/data/import/myrealm-realm.json`
|
755
755
|
]),
|
756
|
-
`-v${SPACE_PLACEHOLDER}"
|
756
|
+
`-v${SPACE_PLACEHOLDER}".${external_path_.sep}${(0,external_path_.relative)(process.cwd(), jarFilePath_cacheDir)}":/opt/keycloak/providers/keycloak-theme.jar`,
|
757
757
|
...extensionJarFilePaths.map(jarFilePath => `-v${SPACE_PLACEHOLDER}".${external_path_.sep}${(0,external_path_.relative)(process.cwd(), jarFilePath)}":/opt/keycloak/providers/${(0,external_path_.basename)(jarFilePath)}`),
|
758
758
|
...(keycloakMajorVersionNumber <= 20
|
759
759
|
? [`-e${SPACE_PLACEHOLDER}JAVA_OPTS=-Dkeycloak.profile=preview`]
|
@@ -130,7 +130,7 @@ export default function WebauthnRegister(props) {
|
|
130
130
|
|
131
131
|
function getPubKeyCredParams(signatureAlgorithmsList) {
|
132
132
|
let pubKeyCredParams = [];
|
133
|
-
if (signatureAlgorithmsList ===
|
133
|
+
if (signatureAlgorithmsList.length === 0) {
|
134
134
|
pubKeyCredParams.push({type: "public-key", alg: -7});
|
135
135
|
return pubKeyCredParams;
|
136
136
|
}
|
@@ -161,7 +161,7 @@ export default function WebauthnRegister(props) {
|
|
161
161
|
}
|
162
162
|
|
163
163
|
function getTransportsAsString(transportsList) {
|
164
|
-
if (transportsList === '' || transportsList
|
164
|
+
if (transportsList === '' || Array.isArray(transportsList)) return "";
|
165
165
|
|
166
166
|
let transportsString = "";
|
167
167
|
|
package/package.json
CHANGED
@@ -357,7 +357,7 @@ export async function command(params: { cliCommandOptions: CliCommandOptions })
|
|
357
357
|
: [
|
358
358
|
`-v${SPACE_PLACEHOLDER}".${pathSep}${pathRelative(process.cwd(), realmJsonFilePath)}":/opt/keycloak/data/import/myrealm-realm.json`
|
359
359
|
]),
|
360
|
-
`-v${SPACE_PLACEHOLDER}"
|
360
|
+
`-v${SPACE_PLACEHOLDER}".${pathSep}${pathRelative(process.cwd(), jarFilePath_cacheDir)}":/opt/keycloak/providers/keycloak-theme.jar`,
|
361
361
|
...extensionJarFilePaths.map(
|
362
362
|
jarFilePath =>
|
363
363
|
`-v${SPACE_PLACEHOLDER}".${pathSep}${pathRelative(process.cwd(), jarFilePath)}":/opt/keycloak/providers/${pathBasename(jarFilePath)}`
|
@@ -153,7 +153,7 @@ export default function WebauthnRegister(props: PageProps<Extract<KcContext, { p
|
|
153
153
|
|
154
154
|
function getPubKeyCredParams(signatureAlgorithmsList) {
|
155
155
|
let pubKeyCredParams = [];
|
156
|
-
if (signatureAlgorithmsList ===
|
156
|
+
if (signatureAlgorithmsList.length === 0) {
|
157
157
|
pubKeyCredParams.push({type: "public-key", alg: -7});
|
158
158
|
return pubKeyCredParams;
|
159
159
|
}
|
@@ -184,7 +184,7 @@ export default function WebauthnRegister(props: PageProps<Extract<KcContext, { p
|
|
184
184
|
}
|
185
185
|
|
186
186
|
function getTransportsAsString(transportsList) {
|
187
|
-
if (transportsList === '' || transportsList
|
187
|
+
if (transportsList === '' || Array.isArray(transportsList)) return "";
|
188
188
|
|
189
189
|
let transportsString = "";
|
190
190
|
|