From 6aafb7d49e5fee945536023f34fa433fc75d4766 Mon Sep 17 00:00:00 2001 From: David Butenhof Date: Wed, 19 Apr 2023 10:58:12 -0400 Subject: [PATCH] Quick fix `keycloak-js` 21.1.0 adds an explicit `keycloak-masthead` dependency that's broken. This went in early this morning, and has broken all users. To mitigate this, back off our `package.json` to depend on the latest previous verion, which is 21.0.2 to get our builds running again. --- dashboard/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashboard/package.json b/dashboard/package.json index 4e78c1b249..71d66f11f2 100644 --- a/dashboard/package.json +++ b/dashboard/package.json @@ -22,7 +22,7 @@ "gulp": "^4.0.2", "jest": "^27.5.1", "js-cookie": "^3.0.1", - "keycloak-js": "^21.0.1", + "keycloak-js": "21.0.2", "less-watch-compiler": "^1.16.3", "patternfly": "^3.9.0", "react": "^17.0.2",