@continuoussecuritytooling/keycloak-reporter 0.8.9 → 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.
@@ -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.9.0
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'
@@ -36,11 +36,8 @@ jobs:
36
36
  - name: Run chart-testing (lint)
37
37
  run: ct lint --config .ct.yaml
38
38
 
39
- - name: Run chart-releaser
40
- uses: helm/chart-releaser-action@v1.6.0
41
- env:
42
- CR_TOKEN: '${{ secrets.GITHUB_TOKEN }}'
43
- CR_GENERATE_RELEASE_NOTES: true
39
+ - name: Helm Package
40
+ run: helm package charts/keycloak-reporter/
44
41
 
45
42
  - name: Login to GitHub Container Registry
46
43
  run: |
@@ -49,7 +46,7 @@ jobs:
49
46
  - name: Push Charts to GHCR
50
47
  run: |
51
48
  shopt -s nullglob
52
- for pkg in .cr-release-packages/*; do
49
+ for pkg in *.tgz; do
53
50
  if [ -z "${pkg:-}" ]; then
54
51
  break
55
52
  fi
package/CHANGELOG.md CHANGED
@@ -1,3 +1,19 @@
1
+ ## [0.8.10](https://github.com/ContinuousSecurityTooling/keycloak-reporter/compare/v0.8.9...v0.8.10) (2024-03-28)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **deps:** update dependency @continuoussecuritytooling/keycloak-auditor to v1.1.6 ([44501b0](https://github.com/ContinuousSecurityTooling/keycloak-reporter/commit/44501b0ea8f8a07591705adc00ee24523d846963))
7
+ * **deps:** update dependency @continuoussecuritytooling/keycloak-auditor to v1.1.7 ([72f0cac](https://github.com/ContinuousSecurityTooling/keycloak-reporter/commit/72f0cacf4c3231aeca5dd7e43610d3023afb1649))
8
+ * **deps:** update dependency @keycloak/keycloak-admin-client to v24 ([1ac56fe](https://github.com/ContinuousSecurityTooling/keycloak-reporter/commit/1ac56fef8509835460827682ef1d35f164822ab0))
9
+ * **deps:** update dependency @keycloak/keycloak-admin-client to v24.0.1 ([bbeeab4](https://github.com/ContinuousSecurityTooling/keycloak-reporter/commit/bbeeab4eba4797f82a4acb1733c264aff3dd6325))
10
+ * **deps:** update dependency @keycloak/keycloak-admin-client to v24.0.2 ([cfcecd9](https://github.com/ContinuousSecurityTooling/keycloak-reporter/commit/cfcecd9ed55fef601945a1350ccb67ec7ed3b73c))
11
+ * **deps:** update dependency ms-teams-webhook to v2.0.3 ([892234c](https://github.com/ContinuousSecurityTooling/keycloak-reporter/commit/892234c09266257ada8fa52c6ec3c936357e9d61))
12
+ * **deps:** update dependency openid-client to v5.6.5 ([f7ee41d](https://github.com/ContinuousSecurityTooling/keycloak-reporter/commit/f7ee41d51b6c622d36acd2ce95c40aa6d2104f40))
13
+ * **Helm:** Correcting labels and annotations ([14ccc97](https://github.com/ContinuousSecurityTooling/keycloak-reporter/commit/14ccc979e4a922ad356efe436ae921813a4a6743))
14
+
15
+
16
+
1
17
  ## [0.8.9](https://github.com/ContinuousSecurityTooling/keycloak-reporter/compare/v0.8.8...v0.8.9) (2024-03-03)
2
18
 
3
19
 
package/Dockerfile CHANGED
@@ -1,4 +1,4 @@
1
- FROM node:20.11.1-slim
1
+ FROM node:20.14.0-slim
2
2
 
3
3
  ARG BUILD_DATE
4
4
  ARG APP_VERSION
@@ -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.3.1
18
+ version: 1.3.3
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: '0.8.9'
25
+ appVersion: '0.8.10'
26
26
  maintainers:
27
27
  # Martin Reinhardt
28
28
  - name: hypery2k
@@ -1,6 +1,6 @@
1
1
  # keycloak-reporter
2
2
 
3
- ![Version: 1.3.1](https://img.shields.io/badge/Version-1.3.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.8.8](https://img.shields.io/badge/AppVersion-0.8.8-informational?style=flat-square)
3
+ ![Version: 1.3.3](https://img.shields.io/badge/Version-1.3.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.8.10](https://img.shields.io/badge/AppVersion-0.8.10-informational?style=flat-square)
4
4
 
5
5
  Keycloak user and client reporting tool for automated regular access checks.
6
6
 
@@ -35,4 +35,4 @@ Keycloak user and client reporting tool for automated regular access checks.
35
35
  | tolerations | list | `[]` | |
36
36
 
37
37
  ----------------------------------------------
38
- Autogenerated from chart metadata using [helm-docs v1.12.0](https://github.com/norwoodj/helm-docs/releases/v1.12.0)
38
+ Autogenerated from chart metadata using [helm-docs v1.13.1](https://github.com/norwoodj/helm-docs/releases/v1.13.1)
@@ -14,9 +14,9 @@ spec:
14
14
  spec:
15
15
  template:
16
16
  annotations:
17
- {{- include "keycloak-reporter.annotations" $ | nindent 8 }}
17
+ {{- include "keycloak-reporter.annotations" $ | nindent 10 }}
18
18
  labels:
19
- {{- include "keycloak-reporter.labels" $ | nindent 8 }}
19
+ {{- include "keycloak-reporter.labels" $ | nindent 10 }}
20
20
  spec:
21
21
  {{- with $.Values.imagePullSecrets }}
22
22
  imagePullSecrets:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@continuoussecuritytooling/keycloak-reporter",
3
- "version": "0.8.9",
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": "^23.0.0",
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.29.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",