Skip to content

Commit

Permalink
Merge branch 'main' into patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
andreasgeisslerdt authored Oct 8, 2024
2 parents 2dbfc9f + 89c0134 commit 60acf32
Show file tree
Hide file tree
Showing 26 changed files with 2,672 additions and 87 deletions.
32 changes: 16 additions & 16 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,12 @@ jobs:
- KEYCLOAK_VERSION: 24.0.5
- KEYCLOAK_VERSION: 25.0.1
steps:
- uses: actions/checkout@v4.1.7
- uses: actions/checkout@v4.2.0
with:
fetch-depth: 0

- name: Setup java
uses: actions/setup-java@v4.2.1
uses: actions/setup-java@v4.4.0
with:
distribution: 'temurin'
java-version: 21
Expand Down Expand Up @@ -87,14 +87,14 @@ jobs:
run: echo "::set-output name=VERSION::$(tail -n1 .env | cut -d= -f2)"

- name: Login to Docker Hub
uses: docker/login-action@v3.2.0
uses: docker/login-action@v3.3.0
if: startsWith(github.event.ref, 'refs/tags/v')
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}

- name: Login to Quay.io
uses: docker/login-action@v3.2.0
uses: docker/login-action@v3.3.0
if: startsWith(github.event.ref, 'refs/tags/v')
with:
registry: quay.io
Expand Down Expand Up @@ -130,13 +130,13 @@ jobs:
maintainer=adorsys GmbH & Co. KG
- name: Set up QEMU
uses: docker/setup-qemu-action@v3.0.0
uses: docker/setup-qemu-action@v3.2.0

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3.3.0
uses: docker/setup-buildx-action@v3.6.1

- name: Build and push
uses: docker/build-push-action@v5.4.0
uses: docker/build-push-action@v6.7.0
with:
build-args: |-
KEYCLOAK_VERSION=${{ matrix.env.KEYCLOAK_VERSION }}
Expand All @@ -155,7 +155,7 @@ jobs:
cp target/keycloak-config-cli.jar keycloak-config-cli-${{ matrix.env.KEYCLOAK_VERSION }}.jar
sha256sum keycloak-config-cli-${{ matrix.env.KEYCLOAK_VERSION }}.jar > keycloak-config-cli-${{ matrix.env.KEYCLOAK_VERSION }}.jar.sha256
- uses: actions/upload-artifact@v4.3.3
- uses: actions/upload-artifact@v4.4.0
with:
name: keycloak-config-cli-${{ matrix.env.KEYCLOAK_VERSION }}
if-no-files-found: error
Expand All @@ -171,10 +171,10 @@ jobs:
matrix:
java: [17, 21]
steps:
- uses: actions/checkout@v4.1.7
- uses: actions/checkout@v4.2.0

- name: Setup java ${{ matrix.java }}
uses: actions/setup-java@v4.2.1
uses: actions/setup-java@v4.4.0
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
Expand Down Expand Up @@ -208,10 +208,10 @@ jobs:
env:
- KEYCLOAK_VERSION: 19.0.3
steps:
- uses: actions/checkout@v4.1.7
- uses: actions/checkout@v4.2.0

- name: Setup java
uses: actions/setup-java@v4.2.1
uses: actions/setup-java@v4.4.0
with:
distribution: 'temurin'
java-version: '21'
Expand All @@ -238,7 +238,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4.1.7
- uses: actions/checkout@v4.2.0

- name: Lint .github/workflows/*.yaml files
uses: ibiqlik/action-yamllint@v3.1.1
Expand All @@ -260,7 +260,7 @@ jobs:
with:
version: v3.4.0

- uses: actions/setup-python@v5.1.0
- uses: actions/setup-python@v5.2.0
with:
python-version: 3.7

Expand All @@ -283,7 +283,7 @@ jobs:
needs: [build]
if: startsWith(github.ref, 'refs/tags/v')
steps:
- uses: actions/download-artifact@v4.1.7
- uses: actions/download-artifact@v4.1.8
with:
path: assets
- name: Write release tag without v
Expand All @@ -293,7 +293,7 @@ jobs:
echo Tag: $Tag
echo "::set-output name=tag::$TAG"
- name: Create Release
uses: softprops/action-gh-release@v2.0.6
uses: softprops/action-gh-release@v2.0.8
with:
name: Release ${{ github.ref_name }}
draft: false
Expand Down
19 changes: 18 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,20 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
### Fixed
- Fixed securityContext entries in job template

- Added support for User Profile Setting: `unmanagedAttributePolicy`

- Crash after inserting more than 100 roles in realm-management authorization
[#1090](/adorsys/keycloak-config-cli/issues/1090):

- NPE when using custom policy in AuthorizationPolicy [#1095](/adorsys/keycloak-config-cli/issues/1095):

- Fix Keycloak startup issue with admin-fine-grained-authz feature flag

## [6.1.7] - 2024-09-30

## [6.1.6] - 2024-07-26


## [6.1.5] - 2024-06-27

## [6.1.3] - 2024-06-27
Expand Down Expand Up @@ -42,6 +56,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
- Upgrade to Spring Boot 3
- This affects the capability of the path matcher

- Added option to calculate checksum for each import file ([#1015](https://github.com/adorsys/keycloak-config-cli/issues/1015))

## [5.12.0] - 2024-03-28
- Added support for managing message bundles

Expand Down Expand Up @@ -776,7 +792,8 @@ A lot of import properties are added over the years. this major release of keycl

<!-- @formatter:off -->

[Unreleased]: https://github.com/adorsys/keycloak-config-cli/compare/v6.1.5...HEAD
[Unreleased]: https://github.com/adorsys/keycloak-config-cli/compare/v6.1.6...HEAD
[6.1.6]: https://github.com/adorsys/keycloak-config-cli/compare/v6.1.5...v6.1.6
[6.1.5]: https://github.com/adorsys/keycloak-config-cli/compare/v6.1.3...v6.1.5
[6.1.3]: https://github.com/adorsys/keycloak-config-cli/compare/v6.1.2...v6.1.3
[6.1.2]: https://github.com/adorsys/keycloak-config-cli/compare/v6.1.1...v6.1.2
Expand Down
Loading

0 comments on commit 60acf32

Please sign in to comment.