Skip to content

Commit

Permalink
feat: Add support for keycloak-js@26
Browse files Browse the repository at this point in the history
Signed-off-by: tomaThomas <tomathomas@mailbox.org>
  • Loading branch information
tomaThomas committed Oct 12, 2024
1 parent 4d32d41 commit f217d92
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 31 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ Note that `keycloak-js` is a peer dependency of Keycloak Angular. This change al

| Angular | keycloak-js | keycloak-angular | Support |
| :-----: |:-----------:| :--------------: | :-----------------: |
| 18.x | 18 - 25 | 16.x.x | New Features / Bugs |
| 18.x | 18 - 26 | 16.x.x | New Features / Bugs |
| 17.x | 18 - 25 | 15.x.x | Bugs |
| 16.x | 18 - 25 | 14.x.x | - |
| 15.x | 18 - 21 | 13.x.x | - |
Expand Down
28 changes: 5 additions & 23 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
"karma-coverage-istanbul-reporter": "~3.0.3",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"keycloak-js": "^25.0.0",
"keycloak-js": "^26.0.0",
"ng-packagr": "^18.0.0",
"prettier": "^3.3.2",
"rxjs": "^7.8.1",
Expand Down
3 changes: 1 addition & 2 deletions projects/example/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
version: '3'
services:
keycloak:
image: quay.io/keycloak/keycloak:25.0.0
image: quay.io/keycloak/keycloak:26.0.0
environment:
KEYCLOAK_ADMIN: admin
KEYCLOAK_ADMIN_PASSWORD: admin
Expand Down
4 changes: 2 additions & 2 deletions projects/keycloak-angular/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "keycloak-angular",
"version": "16.0.1",
"version": "16.0.2",
"description": "Easy Keycloak setup for Angular applications",
"repository": {
"type": "git",
Expand Down Expand Up @@ -29,7 +29,7 @@
"@angular/common": "^18",
"@angular/core": "^18",
"@angular/router": "^18",
"keycloak-js": "^18 || ^19 || ^20 || ^21 || ^22 || ^23 || ^24 || ^25"
"keycloak-js": "^18 || ^19 || ^20 || ^21 || ^22 || ^23 || ^24 || ^25 || ^26"
},
"dependencies": {
"tslib": "^2.3.1"
Expand Down
2 changes: 1 addition & 1 deletion projects/keycloak-angular/tsconfig.lib.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"compilerOptions": {
"module": "es2015",
"declarationMap": true,
"moduleResolution": "node",
"moduleResolution": "bundler",
"declaration": true,
"sourceMap": true,
"inlineSources": true,
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"esModuleInterop": true,
"sourceMap": true,
"declaration": true,
"moduleResolution": "node",
"moduleResolution": "bundler",
"experimentalDecorators": true,
"target": "ES2022",
"typeRoots": ["node_modules/@types"],
Expand Down

0 comments on commit f217d92

Please sign in to comment.