@continuoussecuritytooling/keycloak-reporter 1.0.1 → 1.0.2-1857

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.
@@ -198,13 +198,14 @@ jobs:
198
198
  APP_VERSION=${{env.APP_VERSION}}
199
199
 
200
200
  - name: Push To NPM Registry
201
- id: push-to-npm-tagged
201
+ id: push-to-npm-preview
202
202
  env:
203
203
  NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
204
204
  run: |
205
205
  echo "//registry.npmjs.org/:_authToken=$NODE_AUTH_TOKEN" >> ~/.npmrc
206
+ npm version --no-git-tag-version ${{env.APP_VERSION}}-${{ github.run_number }}
206
207
  npm publish
207
- if: github.ref_type == 'tag' || github.tag != ''
208
+ if: github.ref == 'refs/heads/develop'
208
209
 
209
210
  - name: Push To Docker Hub
210
211
  id: push-to-dockerhub-preview
@@ -216,14 +217,3 @@ jobs:
216
217
  username: continuoussecuritytooling
217
218
  password: ${{ secrets.DOCKER_HUB_TOKEN }}
218
219
  if: github.ref == 'refs/heads/develop'
219
-
220
- - name: Push To Docker Hub
221
- id: push-to-dockerhub-tagged
222
- uses: redhat-actions/push-to-registry@v2
223
- with:
224
- image: ${{ steps.build-image.outputs.image }}
225
- tags: 'latest ${{env.APP_VERSION}}'
226
- registry: registry.hub.docker.com
227
- username: continuoussecuritytooling
228
- password: ${{ secrets.DOCKER_HUB_TOKEN }}
229
- if: github.ref_type == 'tag' || github.tag != ''
@@ -187,25 +187,26 @@ jobs:
187
187
  uses: redhat-actions/buildah-build@v2
188
188
  with:
189
189
  image: continuoussecuritytooling/keycloak-reporting-cli
190
- tags: 'latest ${{ env.APP_VERSION }}'
190
+ tags: 'latest ${{ github.event.inputs.releaseversion }}'
191
191
  containerfiles: |
192
192
  ./Dockerfile
193
193
  build-args: |
194
194
  BUILD_DATE=${{ env.BUILD_DATE }}
195
- APP_VERSION=${{ env.APP_VERSION }}
195
+ APP_VERSION=${{ github.event.inputs.releaseversion }}
196
196
 
197
197
  - name: Push To Docker Hub
198
198
  id: push-to-dockerhub-preview
199
199
  uses: redhat-actions/push-to-registry@v2
200
200
  with:
201
201
  image: ${{ steps.build-image.outputs.image }}
202
- tags: 'latest ${{ env.APP_VERSION }}'
202
+ tags: 'latest ${{ github.event.inputs.releaseversion }}'
203
203
  registry: registry.hub.docker.com
204
204
  username: continuoussecuritytooling
205
205
  password: ${{ secrets.DOCKER_HUB_TOKEN }}
206
206
 
207
207
  - name: Publish npm package
208
208
  run: |
209
+ npm version --no-git-tag-version ${{ github.event.inputs.releaseversion }}
209
210
  npm publish
210
211
  env:
211
212
  NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
package/CHANGELOG.md CHANGED
@@ -1,3 +1,16 @@
1
+ ## [1.0.2](https://github.com/ContinuousSecurityTooling/keycloak-reporter/compare/v1.0.1...v1.0.2) (2024-11-22)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **deps:** update dependency @continuoussecuritytooling/keycloak-auditor to v2.0.8 ([c235380](https://github.com/ContinuousSecurityTooling/keycloak-reporter/commit/c23538068b54f0f326642e83c132d69b3a7cfcc7))
7
+ * **deps:** update dependency @continuoussecuritytooling/keycloak-auditor to v2.0.9 ([3b7ca63](https://github.com/ContinuousSecurityTooling/keycloak-reporter/commit/3b7ca632baccdc660aca70402d2c02d9b4ceabc4))
8
+ * **deps:** update dependency @keycloak/keycloak-admin-client to v26.0.5 ([ecc5d2f](https://github.com/ContinuousSecurityTooling/keycloak-reporter/commit/ecc5d2fe7a9ff8de6b99d356f9f828d2b21941e4))
9
+ * **deps:** update dependency @keycloak/keycloak-admin-client to v26.0.6 ([2cd12b7](https://github.com/ContinuousSecurityTooling/keycloak-reporter/commit/2cd12b7e0ea627cde535203e21fe4a181e97e1a9))
10
+ * **deps:** update dependency npm to v10.9.1 ([cd1e62a](https://github.com/ContinuousSecurityTooling/keycloak-reporter/commit/cd1e62a35980b3d7c4cd1fbbda631b600c89031c))
11
+
12
+
13
+
1
14
  ## [1.0.1](https://github.com/ContinuousSecurityTooling/keycloak-reporter/compare/v1.0.0...v1.0.1) (2024-10-31)
2
15
 
3
16
 
@@ -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.6
18
+ version: 1.3.7
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.0.1
25
+ appVersion: 1.0.2
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.6](https://img.shields.io/badge/Version-1.3.6-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.0.1](https://img.shields.io/badge/AppVersion-1.0.1-informational?style=flat-square)
3
+ ![Version: 1.3.7](https://img.shields.io/badge/Version-1.3.7-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.0.2](https://img.shields.io/badge/AppVersion-1.0.2-informational?style=flat-square)
4
4
 
5
5
  Keycloak user and client reporting tool for automated regular access checks.
6
6
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@continuoussecuritytooling/keycloak-reporter",
3
- "version": "1.0.1",
3
+ "version": "1.0.2-1857",
4
4
  "description": "Reporting Tools for Keycloak",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
@@ -1 +0,0 @@
1
- sha256:b707ebf14cb1176d648babdfb527909e36ccaaf0c6c4029533d956a4125e6a09
Binary file