From ff1758cdce641ea09ab3278cbd04cf343cd5d92a Mon Sep 17 00:00:00 2001 From: Joseph Garrone Date: Sat, 13 Apr 2024 04:50:34 +0200 Subject: [PATCH 1/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 03a669d8..0d4c7702 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ 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)! > 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). -> We're actively working on incorporating them into Keycloakify. +> We're actively working on incorporating them into Keycloakify. [Follow progress](https://github.com/keycloakify/keycloakify/pull/538). ## Sponsor From 51bc65e671526684ecdeae1be0cb57857b1fe9eb Mon Sep 17 00:00:00 2001 From: Joseph Garrone Date: Wed, 17 Apr 2024 15:57:13 +0200 Subject: [PATCH 2/3] Avoid logging expected error messages to the console --- src/bin/keycloakify/buildOptions/getNpmWorkspaceRootDirPath.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/keycloakify/buildOptions/getNpmWorkspaceRootDirPath.ts b/src/bin/keycloakify/buildOptions/getNpmWorkspaceRootDirPath.ts index a51a7e8c..99215304 100644 --- a/src/bin/keycloakify/buildOptions/getNpmWorkspaceRootDirPath.ts +++ b/src/bin/keycloakify/buildOptions/getNpmWorkspaceRootDirPath.ts @@ -26,7 +26,7 @@ export function getNpmWorkspaceRootDirPath(params: { reactAppRootDirPath: string const cwd = pathResolve(pathJoin(...[reactAppRootDirPath, ...Array(depth).fill("..")])); try { - child_process.execSync("npm config get", { cwd: cwd }); + child_process.execSync("npm config get", { cwd, "stdio": ["pipe", "pipe", "pipe"] }); } catch (error) { if (String(error).includes("ENOWORKSPACES")) { assert(cwd !== pathSep, "NPM workspace not found"); From 585c279d10e3080f8a9e4fb0361563fbaf3bace6 Mon Sep 17 00:00:00 2001 From: Joseph Garrone Date: Wed, 17 Apr 2024 15:57:39 +0200 Subject: [PATCH 3/3] Bump version --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 8dcad265..991d67ca 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "keycloakify", - "version": "9.6.6", + "version": "9.6.7", "description": "Create Keycloak themes using React", "repository": { "type": "git",