@continuoussecuritytooling/keycloak-reporter 0.8.2 → 0.8.3

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.
@@ -61,7 +61,7 @@ jobs:
61
61
  - name: Run chart-testing (list-changed)
62
62
  id: list-changed
63
63
  run: |
64
- changed=$(ct list-changed --target-branch main)
64
+ changed=$(ct list-changed --target-branch ${{ github.event.repository.default_branch }})
65
65
  if [[ -n "$changed" ]]; then
66
66
  echo "changed=true" >> "$GITHUB_OUTPUT"
67
67
  fi
@@ -88,6 +88,7 @@ jobs:
88
88
  path: dist
89
89
 
90
90
  end2end:
91
+ # TODO: Docker End2End
91
92
  name: 'End2End Test on Node ${{ matrix.node_version }} and ${{ matrix.os }}'
92
93
  runs-on: '${{ matrix.os }}'
93
94
  strategy:
package/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ ## [0.8.2](https://github.com/ContinuousSecurityTooling/keycloak-reporter/compare/v0.8.1...v0.8.2) (2023-12-15)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * Fix GitHub pipeline
7
+
8
+
1
9
  ## [0.8.1](https://github.com/ContinuousSecurityTooling/keycloak-reporter/compare/v0.8.0...v0.8.1) (2023-12-15)
2
10
 
3
11
 
@@ -61,23 +61,19 @@ Create the name of the service account to use
61
61
  {{- end }}
62
62
  {{- end }}
63
63
 
64
- }
65
64
 
66
65
  {{/*
67
66
  Create the name of the service account to use
68
67
  */}}
69
68
  {{- define "keycloak-reporter.cronJobs" -}}
70
69
  {{- if .Values.cronjobs.users }}
71
- users:
70
+ users:
72
71
  script: "listUsers"
73
72
  schedule: {{ .Values.cronjobs.users }}
74
73
  {{- end }}
75
74
  {{- if .Values.cronjobs.clients }}
76
- clients:
75
+ clients:
77
76
  script: "listClients"
78
77
  schedule: {{ .Values.cronjobs.clients }}
79
78
  {{- end }}
80
79
  {{- end -}}
81
-
82
-
83
-
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@continuoussecuritytooling/keycloak-reporter",
3
- "version": "0.8.2",
3
+ "version": "0.8.3",
4
4
  "description": "Reporting Tools for Keycloak",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
@@ -11,7 +11,7 @@
11
11
  "clean": "rm -rf dist/* && npm i",
12
12
  "build": "tsc && chmod +x dist/cli.js && cp -rp config dist/",
13
13
  "test": "eslint . && jest",
14
- "end2end:start-server": ".bin/start-server.mjs -Dkeycloak.profile.feature.account_api=disabled -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",
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
  },
17
17
  "repository": {
@@ -25,7 +25,7 @@
25
25
  },
26
26
  "homepage": "https://github.com/ContinuousSecurityTooling/keycloak-reporter#readme",
27
27
  "dependencies": {
28
- "@continuoussecuritytooling/keycloak-auditor": "^1.1.0",
28
+ "@continuoussecuritytooling/keycloak-auditor": "^1.1.5",
29
29
  "@json2csv/node": "^7.0.0",
30
30
  "@keycloak/keycloak-admin-client": "^23.0.0",
31
31
  "@slack/webhook": "^7.0.0",
package/renovate.json CHANGED
@@ -1,31 +1,4 @@
1
1
  {
2
2
  "$schema": "https://docs.renovatebot.com/renovate-schema.json",
3
- "labels": ["dependencies"],
4
- "extends": ["config:base", ":dependencyDashboard", ":rebaseStalePrs"],
5
- "automergeSchedule": ["after 5am and before 5pm every weekday"],
6
- "separateMinorPatch": true,
7
- "platformAutomerge": true,
8
- "packageRules": [
9
- {
10
- "description": "Automatically merge minor and patch-level updates",
11
- "matchUpdateTypes": ["minor", "patch", "digest"],
12
- "automerge": true,
13
- "automergeType": "branch"
14
- }
15
- ],
16
- "regexManagers": [
17
- {
18
- "description": "Update image variables in YAML files",
19
- "fileMatch": ["\\.y[a]?ml$", "\\.y[a]?ml\\.tpl$"],
20
- "matchStrings": [
21
- "# renovate: datasource=(?<datasource>[a-z-]+?) depName=(?<depName>[^\\s]+?)(?: (lookupName|packageName)=(?<packageName>[^\\s]+?))?(?: versioning=(?<versioning>[^\\s]+?))?\\s.+?_version: (?<currentValue>.+?)\\s",
22
- "# renovate: datasource=(?<datasource>[a-z-]+?) depName=(?<depName>[^\\s]+?)(?: (lookupName|packageName)=(?<packageName>[^\\s]+?))?(?: versioning=(?<versioning>[^\\s]+?))?\\s.+?-version: (?<currentValue>.+?)\\s",
23
- "# renovate: datasource=(?<datasource>[a-z-]+?) depName=(?<depName>[^\\s]+?)(?: (lookupName|packageName)=(?<packageName>[^\\s]+?))?(?: versioning=(?<versioning>[^\\s]+?))?\\simage: (?<currentValue>.+?)\\s",
24
- "# renovate: datasource=(?<datasource>[a-z-]+?) depName=(?<depName>.+?) versioning=(?<versioning>.+?)\\s\\s*image: (?<currentValue>.*)",
25
- "# renovate: datasource=(?<datasource>[a-z-]+?) depName=(?<depName>.+?) \\s\\s*image: (?<currentValue>.*)"
26
- ],
27
- "extractVersionTemplate": "{{#if extractVersion}}{{{extractVersion}}}{{else}}^v?(?<version>.+)${{/if}}"
28
- }
29
- ],
30
- "prHourlyLimit": 10
3
+ "extends": ["github>ContinuousSecurityTooling/renovate-config"]
31
4
  }