File tree Expand file tree Collapse file tree 28 files changed +45
-33
lines changed
oauth-keycloak-authorizer
keycloak-authz-kraft-tests Expand file tree Collapse file tree 28 files changed +45
-33
lines changed Original file line number Diff line number Diff line change @@ -340,7 +340,7 @@ cd strimzi-kafka-operator
340
340
341
341
We have to update the oauth library dependency version:
342
342
343
- sed -Ei 's#<strimzi-oauth.version>[0-9a-zA-Z.-]+</strimzi-oauth.version>#<strimzi-oauth.version>1.0.0-SNAPSHOT </strimzi-oauth.version>#g' \
343
+ sed -Ei 's#<strimzi-oauth.version>[0-9a-zA-Z.-]+</strimzi-oauth.version>#<strimzi-oauth.version>0.17.0 </strimzi-oauth.version>#g' \
344
344
pom.xml \
345
345
docker-images/artifacts/kafka-thirdparty-libs/3.8.x/pom.xml \
346
346
docker-images/artifacts/kafka-thirdparty-libs/3.9.x/pom.xml
@@ -371,10 +371,10 @@ instead of doing the whole `docker_build` again:
371
371
372
372
Let's make sure the SNAPSHOT Strimzi OAuth libraries are included.
373
373
374
- docker run --rm -ti $DOCKER_REG/strimzi/kafka:0.35 .0-kafka-3.9 .0 /bin/sh -c 'ls -la /opt/kafka/libs/kafka-oauth*'
374
+ docker run --rm -ti $DOCKER_REG/strimzi/kafka:0.47 .0-kafka-4.0 .0 /bin/sh -c 'ls -la /opt/kafka/libs/kafka-oauth*'
375
375
376
376
This executes a ` ls ` command inside a new Kafka container, which it removes afterwards.
377
- The deployed version should be 1.0.0-SNAPSHOT .
377
+ The deployed version should be 0.17.0 .
378
378
379
379
380
380
### Building a custom Strimzi Kafka 'override' image based on existing one
Original file line number Diff line number Diff line change 1
1
Release Notes
2
2
=============
3
3
4
+ 0.17.0
5
+ ------
6
+
7
+ ### Make client credentials grant type configurable
8
+
9
+ OAuth clients using client_credentials can now set grant_type to a custom value.
10
+ Custom authorization servers' OAuth implementations of client_credentials mechanism can now use grant_type as a discriminator.
11
+
12
+ A new configuration option was introduced: ` oauth.client.credentials.grant.type ` .
13
+
14
+ See [ PR 279] ( https://github.com/strimzi/strimzi-kafka-oauth/pull/279 )
15
+
4
16
0.16.2
5
17
------
6
18
Original file line number Diff line number Diff line change 7
7
<groupId >io.strimzi</groupId >
8
8
<artifactId >oauth</artifactId >
9
9
<relativePath >../../pom.xml</relativePath >
10
- <version >1.0.0-SNAPSHOT </version >
10
+ <version >0.17.0 </version >
11
11
</parent >
12
12
13
13
<artifactId >kafka-oauth-examples-consumer</artifactId >
Original file line number Diff line number Diff line change 7
7
<groupId >io.strimzi.oauth.docker</groupId >
8
8
<artifactId >kafka-oauth-docker-strimzi</artifactId >
9
9
<relativePath >../pom.xml</relativePath >
10
- <version >1.0.0-SNAPSHOT </version >
10
+ <version >0.17.0 </version >
11
11
</parent >
12
12
13
13
<artifactId >kafka-oauth-docker-strimzi-kafka</artifactId >
Original file line number Diff line number Diff line change 7
7
<groupId >io.strimzi.oauth.docker</groupId >
8
8
<artifactId >kafka-oauth-docker-parent</artifactId >
9
9
<relativePath >../pom.xml</relativePath >
10
- <version >1.0.0-SNAPSHOT </version >
10
+ <version >0.17.0 </version >
11
11
</parent >
12
12
13
13
<artifactId >kafka-oauth-docker-strimzi</artifactId >
Original file line number Diff line number Diff line change 6
6
7
7
<groupId >io.strimzi.oauth.docker</groupId >
8
8
<artifactId >kafka-oauth-docker-parent</artifactId >
9
- <version >1.0.0-SNAPSHOT </version >
9
+ <version >0.17.0 </version >
10
10
<packaging >pom</packaging >
11
11
12
12
<properties >
15
15
<plugins .resources.version>3.1.0</plugins .resources.version>
16
16
17
17
<nimbus .jose.version>10.0.2</nimbus .jose.version>
18
- <strimzi-oauth .version>1.0.0-SNAPSHOT </strimzi-oauth .version>
18
+ <strimzi-oauth .version>0.17.0 </strimzi-oauth .version>
19
19
</properties >
20
20
21
21
<licenses >
Original file line number Diff line number Diff line change 11
11
12
12
<groupId >io.strimzi.oauth.docker</groupId >
13
13
<artifactId >kafka-oauth-docker-spring</artifactId >
14
- <version >1.0.0-SNAPSHOT </version >
14
+ <version >0.17.0 </version >
15
15
16
16
<name >kafka-oauth-docker-spring</name >
17
17
<description >OAuth2 Example using Spring Authorization Server</description >
Original file line number Diff line number Diff line change 7
7
<groupId >io.strimzi.oauth.docker</groupId >
8
8
<artifactId >kafka-oauth-docker-parent</artifactId >
9
9
<relativePath >../pom.xml</relativePath >
10
- <version >1.0.0-SNAPSHOT </version >
10
+ <version >0.17.0 </version >
11
11
</parent >
12
12
13
13
<groupId >org.example</groupId >
14
14
<artifactId >kafka-oauth-docker-strimzi-kafka</artifactId >
15
- <version >1.0.0-SNAPSHOT </version >
15
+ <version >0.17.0 </version >
16
16
17
17
<packaging >pom</packaging >
18
18
Original file line number Diff line number Diff line change 7
7
<groupId >io.strimzi</groupId >
8
8
<artifactId >oauth</artifactId >
9
9
<relativePath >../../pom.xml</relativePath >
10
- <version >1.0.0-SNAPSHOT </version >
10
+ <version >0.17.0 </version >
11
11
</parent >
12
12
13
13
<artifactId >kafka-oauth-examples-producer</artifactId >
Original file line number Diff line number Diff line change 6
6
<parent >
7
7
<groupId >io.strimzi</groupId >
8
8
<artifactId >oauth</artifactId >
9
- <version >1.0.0-SNAPSHOT </version >
9
+ <version >0.17.0 </version >
10
10
</parent >
11
11
12
12
<name >Strimzi Kafka OAuth client</name >
You can’t perform that action at this time.
0 commit comments