@continuoussecuritytooling/keycloak-reporter 1.1.4 → 1.1.5
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/.bin/wait-for-server.sh +1 -1
- package/.eslintrc.cjs +49 -13
- package/CHANGELOG.md +11 -0
- package/Dockerfile +1 -1
- package/charts/keycloak-reporter/Chart.yaml +2 -2
- package/charts/keycloak-reporter/README.md +1 -1
- package/continuoussecuritytooling-keycloak-reporting-cli-latest_digest.txt +1 -1
- package/keycloak-reporter-1.4.6.tgz +0 -0
- package/package.json +3 -4
- package/.eslintignore +0 -1
- package/keycloak-reporter-1.4.5.tgz +0 -0
package/.bin/wait-for-server.sh
CHANGED
|
@@ -4,7 +4,7 @@ counter=0
|
|
|
4
4
|
printf 'Waiting for Keycloak server to start'
|
|
5
5
|
until $(curl --output /dev/null --silent --head --fail http://localhost:8080/realms/master/.well-known/openid-configuration); do
|
|
6
6
|
printf '.'
|
|
7
|
-
sleep
|
|
7
|
+
sleep 10
|
|
8
8
|
if [[ "$counter" -gt 24 ]]; then
|
|
9
9
|
printf "Keycloak server failed to start. Timeout!"
|
|
10
10
|
curl --head --fail http://localhost:8080/realms/master/.well-known/openid-configuration
|
package/.eslintrc.cjs
CHANGED
|
@@ -1,15 +1,51 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
const { defineConfig } = require('eslint/config');
|
|
2
|
+
|
|
3
|
+
const globals = require('globals');
|
|
4
|
+
const tsParser = require('@typescript-eslint/parser');
|
|
5
|
+
const typescriptEslint = require('@typescript-eslint/eslint-plugin');
|
|
6
|
+
const js = require('@eslint/js');
|
|
7
|
+
|
|
8
|
+
const { FlatCompat } = require('@eslint/eslintrc');
|
|
9
|
+
|
|
10
|
+
const compat = new FlatCompat({
|
|
11
|
+
baseDirectory: __dirname,
|
|
12
|
+
recommendedConfig: js.configs.recommended,
|
|
13
|
+
allConfig: js.configs.all,
|
|
14
|
+
});
|
|
15
|
+
|
|
16
|
+
module.exports = defineConfig([
|
|
17
|
+
{
|
|
18
|
+
languageOptions: {
|
|
19
|
+
globals: {
|
|
20
|
+
...globals.node,
|
|
21
|
+
...globals.commonjs,
|
|
22
|
+
},
|
|
23
|
+
|
|
24
|
+
parser: tsParser,
|
|
25
|
+
},
|
|
26
|
+
|
|
27
|
+
extends: compat.extends(
|
|
28
|
+
'eslint:recommended',
|
|
29
|
+
'plugin:@typescript-eslint/recommended',
|
|
30
|
+
),
|
|
31
|
+
|
|
32
|
+
plugins: {
|
|
33
|
+
'@typescript-eslint': typescriptEslint,
|
|
34
|
+
},
|
|
35
|
+
|
|
36
|
+
rules: {
|
|
37
|
+
quotes: [
|
|
38
|
+
2,
|
|
39
|
+
'single',
|
|
40
|
+
{
|
|
41
|
+
avoidEscape: true,
|
|
42
|
+
},
|
|
43
|
+
],
|
|
44
|
+
|
|
45
|
+
'comma-dangle': ['error', 'only-multiline'],
|
|
46
|
+
},
|
|
6
47
|
},
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
plugins: ['@typescript-eslint'],
|
|
10
|
-
root: true,
|
|
11
|
-
rules: {
|
|
12
|
-
quotes: [2, 'single', { avoidEscape: true }],
|
|
13
|
-
'comma-dangle': ['error', 'only-multiline'],
|
|
48
|
+
{
|
|
49
|
+
ignores: ['.eslintrc.cjs', 'dist/*'],
|
|
14
50
|
},
|
|
15
|
-
|
|
51
|
+
]);
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,14 @@
|
|
|
1
|
+
## [1.1.5](https://github.com/ContinuousSecurityTooling/keycloak-reporter/compare/v1.1.4...v1.1.5) (2025-09-26)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **deps:** update dependency @keycloak/keycloak-admin-client to v26.3.4 ([46eca25](https://github.com/ContinuousSecurityTooling/keycloak-reporter/commit/46eca256036d072947c6fbfbd3cd698e27d368c1))
|
|
7
|
+
* **deps:** update dependency @keycloak/keycloak-admin-client to v26.3.5 ([25a0d5f](https://github.com/ContinuousSecurityTooling/keycloak-reporter/commit/25a0d5f63fa957a662f89323e0854b26c75fb3b5))
|
|
8
|
+
* **deps:** update dependency openid-client to v6.8.0 ([71d6229](https://github.com/ContinuousSecurityTooling/keycloak-reporter/commit/71d62296cfba5634e146a0271a297b0a5b1dc4f3))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
1
12
|
## [1.1.4](https://github.com/ContinuousSecurityTooling/keycloak-reporter/compare/v1.1.3...v1.1.4) (2025-09-11)
|
|
2
13
|
|
|
3
14
|
|
package/Dockerfile
CHANGED
|
@@ -15,14 +15,14 @@ type: application
|
|
|
15
15
|
# This is the chart version. This version number should be incremented each time you make changes
|
|
16
16
|
# to the chart and its templates, including the app version.
|
|
17
17
|
# Versions are expected to follow Semantic Versioning (https://semver.org/)
|
|
18
|
-
version: 1.4.
|
|
18
|
+
version: 1.4.6
|
|
19
19
|
|
|
20
20
|
# This is the version number of the application being deployed. This version number should be
|
|
21
21
|
# incremented each time you make changes to the application. Versions are not expected to
|
|
22
22
|
# follow Semantic Versioning. They should reflect the version the application is using.
|
|
23
23
|
# It is recommended to use it with quotes.
|
|
24
24
|
# renovate: datasource=docker depName=ContinuousSecurityTooling/keycloak-reporter
|
|
25
|
-
appVersion: 1.1.
|
|
25
|
+
appVersion: 1.1.5
|
|
26
26
|
maintainers:
|
|
27
27
|
# Martin Reinhardt
|
|
28
28
|
- name: hypery2k
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# keycloak-reporter
|
|
2
2
|
|
|
3
|
-
  
|
|
4
4
|
|
|
5
5
|
Keycloak user and client reporting tool for automated regular access checks.
|
|
6
6
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
sha256:
|
|
1
|
+
sha256:fbc88a0b2de2fa91a0fc83b3179b9428a62a90364023a00c9c972f8305be8f1c
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@continuoussecuritytooling/keycloak-reporter",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.5",
|
|
4
4
|
"description": "Reporting Tools for Keycloak",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"scripts": {
|
|
11
11
|
"clean": "rm -rf dist/* && npm i",
|
|
12
12
|
"build": "tsc && chmod +x dist/cli.js && cp -rp config dist/",
|
|
13
|
-
"test": "eslint . && jest",
|
|
13
|
+
"test": "eslint --config .eslintrc.cjs . && jest",
|
|
14
14
|
"end2end:start-server": ".bin/start-server.mjs -Dkeycloak.profile.feature.account_api=enabled -Dkeycloak.profile.feature.account2=disabled -Dkeycloak.migration.action=import -Dkeycloak.migration.provider=singleFile -Dkeycloak.migration.file=e2e/fixtures/auth-utils/test-realm.json -Dkeycloak.migration.strategy=OVERWRITE_EXISTING",
|
|
15
15
|
"end2end:test": "./e2e/run-tests.sh",
|
|
16
16
|
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
|
|
@@ -40,7 +40,6 @@
|
|
|
40
40
|
"ajv": "^8.12.0",
|
|
41
41
|
"install": "^0.13.0",
|
|
42
42
|
"ms-teams-webhook": "^2.0.2",
|
|
43
|
-
"npm": "^10.0.0",
|
|
44
43
|
"openid-client": "^6.0.0",
|
|
45
44
|
"ramda": "^0.31.0",
|
|
46
45
|
"winston": "^3.17.0",
|
|
@@ -54,7 +53,7 @@
|
|
|
54
53
|
"@typescript-eslint/eslint-plugin": "^8.0.0",
|
|
55
54
|
"@typescript-eslint/parser": "^8.0.0",
|
|
56
55
|
"conventional-changelog-cli": "^5.0.0",
|
|
57
|
-
"eslint": "^
|
|
56
|
+
"eslint": "^9.0.0",
|
|
58
57
|
"eslint-config-prettier": "^10.0.0",
|
|
59
58
|
"eslint-plugin-prettier": "^5.0.0",
|
|
60
59
|
"gunzip-maybe": "^1.4.2",
|
package/.eslintignore
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
dist/**
|
|
Binary file
|