@continuoussecuritytooling/keycloak-reporter 0.8.10 → 0.8.11
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/.github/workflows/pipeline.yml +1 -1
- package/Dockerfile +1 -1
- package/package.json +12 -4
|
@@ -72,7 +72,7 @@ jobs:
|
|
|
72
72
|
|
|
73
73
|
- name: Create kind cluster
|
|
74
74
|
if: steps.list-changed.outputs.changed == 'true'
|
|
75
|
-
uses: helm/kind-action@v1.
|
|
75
|
+
uses: helm/kind-action@v1.10.0
|
|
76
76
|
|
|
77
77
|
- name: Run chart-testing (install - no further args)
|
|
78
78
|
if: steps.list-changed.outputs.changed == 'true'
|
package/Dockerfile
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@continuoussecuritytooling/keycloak-reporter",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.11",
|
|
4
4
|
"description": "Reporting Tools for Keycloak",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -12,7 +12,14 @@
|
|
|
12
12
|
"build": "tsc && chmod +x dist/cli.js && cp -rp config dist/",
|
|
13
13
|
"test": "eslint . && 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
|
-
"end2end:test": "./e2e/run-tests.sh"
|
|
15
|
+
"end2end:test": "./e2e/run-tests.sh",
|
|
16
|
+
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
|
|
17
|
+
"changelog:add": "git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md'",
|
|
18
|
+
"release": "npm run test",
|
|
19
|
+
"release:major": "npm run release && npm version major && npm run version-and-push",
|
|
20
|
+
"release:minor": "npm run release && npm version minor && npm run version-and-push",
|
|
21
|
+
"release:patch": "npm run release && npm version patch && npm run version-and-push",
|
|
22
|
+
"version-and-push": "npm run changelog && npm run changelog:add && git push origin && git push origin --tags && git checkout main && git merge develop && git push && git checkout develop"
|
|
16
23
|
},
|
|
17
24
|
"repository": {
|
|
18
25
|
"type": "git",
|
|
@@ -27,14 +34,14 @@
|
|
|
27
34
|
"dependencies": {
|
|
28
35
|
"@continuoussecuritytooling/keycloak-auditor": "^1.1.5",
|
|
29
36
|
"@json2csv/node": "^7.0.0",
|
|
30
|
-
"@keycloak/keycloak-admin-client": "^
|
|
37
|
+
"@keycloak/keycloak-admin-client": "^25.0.0",
|
|
31
38
|
"@slack/webhook": "^7.0.0",
|
|
32
39
|
"ajv": "^8.12.0",
|
|
33
40
|
"install": "^0.13.0",
|
|
34
41
|
"ms-teams-webhook": "^2.0.2",
|
|
35
42
|
"npm": "^10.0.0",
|
|
36
43
|
"openid-client": "^5.4.2",
|
|
37
|
-
"ramda": "^0.
|
|
44
|
+
"ramda": "^0.30.0",
|
|
38
45
|
"yargs": "^17.7.2"
|
|
39
46
|
},
|
|
40
47
|
"devDependencies": {
|
|
@@ -44,6 +51,7 @@
|
|
|
44
51
|
"@types/yargs": "^17.0.24",
|
|
45
52
|
"@typescript-eslint/eslint-plugin": "^7.0.0",
|
|
46
53
|
"@typescript-eslint/parser": "^7.0.0",
|
|
54
|
+
"conventional-changelog-cli": "^5.0.0",
|
|
47
55
|
"eslint": "^8.40.0",
|
|
48
56
|
"eslint-config-prettier": "^9.0.0",
|
|
49
57
|
"eslint-plugin-prettier": "^5.0.0",
|