Skip to content

Commit 22ba135

Browse files
Merge branch 'main' into patch-1
2 parents 6bcb626 + 60f5c4e commit 22ba135

File tree

12 files changed

+47
-35
lines changed

12 files changed

+47
-35
lines changed

.github/ISSUE_TEMPLATE/bug.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ body:
3838
label: Version
3939
description: |
4040
examples:
41-
- **Keycloak**: 26.0.7
41+
- **Keycloak**: 26.1.0
4242
- **This extension**: 26.0.0
4343
value: |
4444
- Keycloak:

.github/workflows/buildAndTest.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
strategy:
3030
fail-fast: false
3131
matrix:
32-
keycloak_version: [ 25.0.6, 26.0.0, 26.0.1, 26.0.2, 26.0.4, 26.0.5, 26.0.6, 26.0.7, latest ]
32+
keycloak_version: [ 25.0.6, 26.0.8, 26.1.0, latest ]
3333
keycloak_dist: [quarkus]
3434
experimental: [false]
3535
include:

.github/workflows/matrix.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
fail-fast: false
1111
matrix:
12-
keycloak_version: [ 21.0.2, 21.1.2, 22.0.5, 23.0.7, 24.0.5, 25.0.6, 26.0.0, 26.0.1, 26.0.2, 26.0.4, 26.0.5, 26.0.6, 26.0.7, latest, nightly ]
12+
keycloak_version: [ 21.0.2, 21.1.2, 22.0.5, 23.0.7, 24.0.5, 25.0.6, 26.0.8, 26.1.0, latest, nightly ]
1313
extension_version: [ 20.0.1, 21.0.0, 22.0.0, 23.0.0, 24.0.0, 25.0.0, 26.0.0 ]
1414
name: Compatibility (KC ${{ matrix.keycloak_version }}, Extension ${{ matrix.extension_version }})
1515
steps:

CONTRIBUTING.md

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# Contributing
2+
3+
I kindly ask anyone who wants to contribute to this project to follow some basic guidelines:
4+
5+
1. Open a discussion around the change before contributing any code
6+
7+
https://github.com/sventorben/keycloak-restrict-client-auth/discussions/categories/ideas)
8+
2. Create a GitHub Issue with a good description associated with the PR
9+
4. One feature/change per PR
10+
5. One commit per PR
11+
6. PR rebased on main (`git rebase`, not `git pull`)
12+
7. Good descriptive [conventional commit message](https://www.conventionalcommits.org/en/v1.0.0/), with link to issue
13+
8. No changes to code not directly related to your PR
14+
9. Includes basic tests
15+
16+
Please do not add additional test frameworks without prior consultation
17+
10. Include some documentation/extend the README
18+
11. PR must pass DCO check
19+
20+
## Sign off Your Work
21+
22+
The Developer Certificate of Origin (DCO) is a lightweight way for contributors to certify that they wrote or otherwise have the right to submit the code they are contributing to the project. Here is the full text of the [DCO](http://developercertificate.org/). Contributors must sign-off that they adhere to these requirements by adding a `Signed-off-by` line to commit messages.
23+
24+
```text
25+
This is my commit message
26+
27+
Signed-off-by: Random J Developer <[email protected]>
28+
```
29+
30+
See `git help commit`:
31+
32+
```text
33+
-s, --signoff
34+
Add Signed-off-by line by the committer at the end of the commit log
35+
message. The meaning of a signoff depends on the project, but it typically
36+
certifies that committer has the rights to submit this work under the same
37+
license and agrees to a Developer Certificate of Origin (see
38+
http://developercertificate.org/ for more information).
39+
```

Dockerfile

-16
This file was deleted.

Dockerfile2

-11
This file was deleted.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
This is a simple Keycloak authenticator to restrict user authorization on clients.
44

55
![GitHub release (latest SemVer)](https://img.shields.io/github/v/release/sventorben/keycloak-restrict-client-auth?sort=semver)
6-
![Keycloak Dependency Version](https://img.shields.io/badge/Keycloak-26.0.7-blue)
6+
![Keycloak Dependency Version](https://img.shields.io/badge/Keycloak-26.1.0-blue)
77
![GitHub Release Date](https://img.shields.io/github/release-date-pre/sventorben/keycloak-restrict-client-auth)
88
![Github Last Commit](https://img.shields.io/github/last-commit/sventorben/keycloak-restrict-client-auth)
99

docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: '3'
22
services:
33
keycloak:
44
container_name: keycloak
5-
image: quay.io/keycloak/keycloak:26.0.7
5+
image: quay.io/keycloak/keycloak:26.1.0
66
environment:
77
KC_BOOTSTRAP_ADMIN_USERNAME: admin
88
KC_BOOTSTRAP_ADMIN_PASSWORD: admin

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
<maven.compiler.release>17</maven.compiler.release>
5252

5353
<!-- For compilation -->
54-
<version.keycloak>26.0.7</version.keycloak>
54+
<version.keycloak>26.1.0</version.keycloak>
5555

5656
<!-- For compatibility tests -->
5757
<keycloak.version>${version.keycloak}</keycloak.version>

src/test/java/de/sventorben/keycloak/authorization/client/ClientPolicyIT.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class ClientPolicyIT {
3636
private static final KeycloakContainer KEYCLOAK_CONTAINER = FullImageName.createContainer()
3737
.withExposedPorts(KEYCLOAK_HTTP_PORT)
3838
.withLogConsumer(new Slf4jLogConsumer(LOGGER).withSeparateOutputStreams())
39-
.withRealmImportFile("/test-realm.json")
39+
.withRealmImportFile("/test-realm-realm.json")
4040
.withStartupTimeout(Duration.ofSeconds(90));
4141

4242
@BeforeAll

src/test/java/de/sventorben/keycloak/authorization/client/LoginIT.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class LoginIT {
3535
private static final KeycloakContainer KEYCLOAK_CONTAINER = FullImageName.createContainer()
3636
.withExposedPorts(KEYCLOAK_HTTP_PORT)
3737
.withLogConsumer(new Slf4jLogConsumer(LOGGER).withSeparateOutputStreams())
38-
.withRealmImportFile("/test-realm.json")
38+
.withRealmImportFile("/test-realm-realm.json")
3939
.withStartupTimeout(Duration.ofSeconds(90));
4040

4141
@BeforeAll

0 commit comments

Comments
 (0)