@continuoussecuritytooling/keycloak-reporter 1.0.2 → 1.0.4

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 publish
207
- if: github.ref_type == 'tag' || github.tag != ''
206
+ npm version --no-git-tag-version ${{env.APP_VERSION}}-${{ github.run_number }}
207
+ npm publish --tag next
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,19 +187,19 @@ 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 }}
package/CHANGELOG.md CHANGED
@@ -1,3 +1,24 @@
1
+ ## [1.0.4](https://github.com/ContinuousSecurityTooling/keycloak-reporter/compare/v1.0.2...v1.0.4) (2024-11-22)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **Build:** Correcting npm publish ([76b84fb](https://github.com/ContinuousSecurityTooling/keycloak-reporter/commit/76b84fb1c5d50173d5f19475790b74d4aa45960f))
7
+ * **Build:** Correcting npm versioning ([afaa792](https://github.com/ContinuousSecurityTooling/keycloak-reporter/commit/afaa79215fee5612ea8502947524684ec3c691ef))
8
+ * **Build:** Drop redundant version set ([907156b](https://github.com/ContinuousSecurityTooling/keycloak-reporter/commit/907156b5954e12d19514e4eb5181b1c4eaf200f1))
9
+
10
+
11
+
12
+ ## [1.0.3](https://github.com/ContinuousSecurityTooling/keycloak-reporter/compare/v1.0.2...v1.0.3) (2024-11-22)
13
+
14
+
15
+ ### Bug Fixes
16
+
17
+ * **Build:** Correcting npm publish ([76b84fb](https://github.com/ContinuousSecurityTooling/keycloak-reporter/commit/76b84fb1c5d50173d5f19475790b74d4aa45960f))
18
+ * **Build:** Correcting npm versioning ([afaa792](https://github.com/ContinuousSecurityTooling/keycloak-reporter/commit/afaa79215fee5612ea8502947524684ec3c691ef))
19
+
20
+
21
+
1
22
  ## [1.0.2](https://github.com/ContinuousSecurityTooling/keycloak-reporter/compare/v1.0.1...v1.0.2) (2024-11-22)
2
23
 
3
24
 
@@ -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.7
18
+ version: 1.3.9
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.2
25
+ appVersion: 1.0.4
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.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)
3
+ ![Version: 1.3.9](https://img.shields.io/badge/Version-1.3.9-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.0.4](https://img.shields.io/badge/AppVersion-1.0.4-informational?style=flat-square)
4
4
 
5
5
  Keycloak user and client reporting tool for automated regular access checks.
6
6
 
@@ -1 +1 @@
1
- sha256:5d93a00fc6fb55a1d5a5ad400701879985d1c2c7be01295e27e752b34b8c93da
1
+ sha256:24cf6d40855974b1b8ff0ef28f82d9166e1e6e09386c89f09245e3c3a6db18fa
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@continuoussecuritytooling/keycloak-reporter",
3
- "version": "1.0.2",
3
+ "version": "1.0.4",
4
4
  "description": "Reporting Tools for Keycloak",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
Binary file