Skip to content

Commit e18a819

Browse files
committed
Prepare for 0.17.0 release
Signed-off-by: Marko Strukelj <[email protected]>
1 parent e453b12 commit e18a819

File tree

28 files changed

+45
-33
lines changed

28 files changed

+45
-33
lines changed

HACKING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ cd strimzi-kafka-operator
340340

341341
We have to update the oauth library dependency version:
342342

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' \
344344
pom.xml \
345345
docker-images/artifacts/kafka-thirdparty-libs/3.8.x/pom.xml \
346346
docker-images/artifacts/kafka-thirdparty-libs/3.9.x/pom.xml
@@ -371,10 +371,10 @@ instead of doing the whole `docker_build` again:
371371

372372
Let's make sure the SNAPSHOT Strimzi OAuth libraries are included.
373373

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*'
375375

376376
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.
378378

379379

380380
### Building a custom Strimzi Kafka 'override' image based on existing one

RELEASE_NOTES.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
Release Notes
22
=============
33

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+
416
0.16.2
517
------
618

examples/consumer/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<groupId>io.strimzi</groupId>
88
<artifactId>oauth</artifactId>
99
<relativePath>../../pom.xml</relativePath>
10-
<version>1.0.0-SNAPSHOT</version>
10+
<version>0.17.0</version>
1111
</parent>
1212

1313
<artifactId>kafka-oauth-examples-consumer</artifactId>

examples/docker/kafka-oauth-strimzi/kafka/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<groupId>io.strimzi.oauth.docker</groupId>
88
<artifactId>kafka-oauth-docker-strimzi</artifactId>
99
<relativePath>../pom.xml</relativePath>
10-
<version>1.0.0-SNAPSHOT</version>
10+
<version>0.17.0</version>
1111
</parent>
1212

1313
<artifactId>kafka-oauth-docker-strimzi-kafka</artifactId>

examples/docker/kafka-oauth-strimzi/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<groupId>io.strimzi.oauth.docker</groupId>
88
<artifactId>kafka-oauth-docker-parent</artifactId>
99
<relativePath>../pom.xml</relativePath>
10-
<version>1.0.0-SNAPSHOT</version>
10+
<version>0.17.0</version>
1111
</parent>
1212

1313
<artifactId>kafka-oauth-docker-strimzi</artifactId>

examples/docker/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>io.strimzi.oauth.docker</groupId>
88
<artifactId>kafka-oauth-docker-parent</artifactId>
9-
<version>1.0.0-SNAPSHOT</version>
9+
<version>0.17.0</version>
1010
<packaging>pom</packaging>
1111

1212
<properties>
@@ -15,7 +15,7 @@
1515
<plugins.resources.version>3.1.0</plugins.resources.version>
1616

1717
<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>
1919
</properties>
2020

2121
<licenses>

examples/docker/spring/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
<groupId>io.strimzi.oauth.docker</groupId>
1313
<artifactId>kafka-oauth-docker-spring</artifactId>
14-
<version>1.0.0-SNAPSHOT</version>
14+
<version>0.17.0</version>
1515

1616
<name>kafka-oauth-docker-spring</name>
1717
<description>OAuth2 Example using Spring Authorization Server</description>

examples/docker/strimzi-kafka-image/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
<groupId>io.strimzi.oauth.docker</groupId>
88
<artifactId>kafka-oauth-docker-parent</artifactId>
99
<relativePath>../pom.xml</relativePath>
10-
<version>1.0.0-SNAPSHOT</version>
10+
<version>0.17.0</version>
1111
</parent>
1212

1313
<groupId>org.example</groupId>
1414
<artifactId>kafka-oauth-docker-strimzi-kafka</artifactId>
15-
<version>1.0.0-SNAPSHOT</version>
15+
<version>0.17.0</version>
1616

1717
<packaging>pom</packaging>
1818

examples/producer/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<groupId>io.strimzi</groupId>
88
<artifactId>oauth</artifactId>
99
<relativePath>../../pom.xml</relativePath>
10-
<version>1.0.0-SNAPSHOT</version>
10+
<version>0.17.0</version>
1111
</parent>
1212

1313
<artifactId>kafka-oauth-examples-producer</artifactId>

oauth-client/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.strimzi</groupId>
88
<artifactId>oauth</artifactId>
9-
<version>1.0.0-SNAPSHOT</version>
9+
<version>0.17.0</version>
1010
</parent>
1111

1212
<name>Strimzi Kafka OAuth client</name>

0 commit comments

Comments
 (0)