Skip to content

Bump strimzi-oauth.version from 0.16.2 to 0.17.1#345

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/maven/main/strimzi-oauth.version-0.17.1
Open

Bump strimzi-oauth.version from 0.16.2 to 0.17.1#345
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/maven/main/strimzi-oauth.version-0.17.1

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 31, 2025

Bumps strimzi-oauth.version from 0.16.2 to 0.17.1.
Updates io.strimzi:kafka-oauth-server from 0.16.2 to 0.17.1

Release notes

Sourced from io.strimzi:kafka-oauth-server's releases.

0.17.1

Main Changes since 0.17.0

Fix for KeycloakAuthorizer incompatibility with Kafka 4.1.0

When deploying KeycloakAuthorizer with Kafka ACL delegation enabled (strimzi.authorization.delegate.to.kafka.acl=true) there was an exception each time the authorization decision was delegated to Kafka's StandardAuthorizer, and the actions were denied.

Kafka 4.1.0 introduced a new metrics pluggability mechanism and updated StandardAuthorizer to implement Monitorable interface and expect a PluginMetrics object to be provided by the instantiating server via Monitorable.withPluginMetrics(PluginMetrics). KeycloakAuthorizer did not provide this part of the expected initialisation to StandardAuthorizer which resulted in NullPointerException at runtime.

This issue should now be fixed.

For more details about the new features see the RELEASE_NOTES.md and the README.md. All changes can be found under the 0.17.1 milestone.

Full Changelog: strimzi/strimzi-kafka-oauth@0.17.0...0.17.1

0.17.1-rc1

Main Changes since 0.17.0

Fix for KeycloakAuthorizer incompatibility with Kafka 4.1.0

When deploying KeycloakAuthorizer with Kafka ACL delegation enabled (strimzi.authorization.delegate.to.kafka.acl=true) there was an exception each time the authorization decision was delegated to Kafka's StandardAuthorizer, and the actions were denied.

Kafka 4.1.0 introduced a new metrics pluggability mechanism and updated StandardAuthorizer to implement Monitorable interface and expect a PluginMetrics object to be provided by the instantiating server via Monitorable.withPluginMetrics(PluginMetrics). KeycloakAuthorizer did not provide this part of the expected initialisation to StandardAuthorizer which resulted in NullPointerException at runtime.

This issue should now be fixed.

For more details about the new features see the RELEASE_NOTES.md and the README.md. All changes can be found under the 0.17.1 milestone.

How to test

Released Maven repository artifacts are available in Maven Central using version 0.17.1-RC1

Example:

<dependency>
    <groupId>io.strimzi</groupId>
    <artifactId>kafka-oauth-client</artifactId>
    <version>0.17.1-RC1</version>
</dependency>

Full Changelog: strimzi/strimzi-kafka-oauth@0.17.0...0.17.1-rc1

0.17.0

Main Changes since 0.16.2

Make client credentials grant type configurable

... (truncated)

Changelog

Sourced from io.strimzi:kafka-oauth-server's changelog.

0.17.1

Fix for KeycloakAuthorizer incompatibility with Kafka 4.1.0

When deploying KeycloakAuthorizer with Kafka ACL delegation enabled (strimzi.authorization.delegate.to.kafka.acl=true) there was an exception each time the authorization decision was delegated to Kafka's StandardAuthorizer, and the actions were denied.

Kafka 4.1.0 introduced a new metrics pluggability mechanism and updated StandardAuthorizer to implement Monitorable interface and expect a PluginMetrics object to be provided by the instantiating server via Monitorable.withPluginMetrics(PluginMetrics). KeycloakAuthorizer did not provide this part of the expected initialisation to StandardAuthorizer which resulted in NullPointerException at runtime.

This issue should now be fixed.

See PR 283

0.17.0

Make client credentials grant type configurable

OAuth clients using client_credentials can now set grant_type to a custom value. Custom authorization servers' OAuth implementations of client_credentials mechanism can now use grant_type as a discriminator.

A new configuration option was introduced: oauth.client.credentials.grant.type.

See PR 279

Commits
  • b214e42 Prepare for 0.17.1 release
  • 1436d50 Fix for "this.authorizerMetrics" is null issue in Kafka 4.1.0 (#283)
  • b4c5d53 Use kafka 4.1.0 image in testsuite and minor other fixes (#286)
  • d708cb4 Fix testsuite hydra-test (#284)
  • a098d20 Update RELEASE_NOTES.md (#285)
  • e18a819 Prepare for 0.17.0 release
  • e453b12 Update dependencies - libraries with CVEs, image versions used in examples an...
  • 3fea88d Custom client credentials grant type (#279)
  • 769f95e Change nimbus-jose-jwt to version 10.0.2 to minimise diff from 9.37.3 (#278)
  • 5d5d7ee Bump nimbus-jose-jwt to version 10.3 (#277)
  • Additional commits viewable in compare view

Updates io.strimzi:kafka-oauth-common from 0.16.2 to 0.17.1

Release notes

Sourced from io.strimzi:kafka-oauth-common's releases.

0.17.1

Main Changes since 0.17.0

Fix for KeycloakAuthorizer incompatibility with Kafka 4.1.0

When deploying KeycloakAuthorizer with Kafka ACL delegation enabled (strimzi.authorization.delegate.to.kafka.acl=true) there was an exception each time the authorization decision was delegated to Kafka's StandardAuthorizer, and the actions were denied.

Kafka 4.1.0 introduced a new metrics pluggability mechanism and updated StandardAuthorizer to implement Monitorable interface and expect a PluginMetrics object to be provided by the instantiating server via Monitorable.withPluginMetrics(PluginMetrics). KeycloakAuthorizer did not provide this part of the expected initialisation to StandardAuthorizer which resulted in NullPointerException at runtime.

This issue should now be fixed.

For more details about the new features see the RELEASE_NOTES.md and the README.md. All changes can be found under the 0.17.1 milestone.

Full Changelog: strimzi/strimzi-kafka-oauth@0.17.0...0.17.1

0.17.1-rc1

Main Changes since 0.17.0

Fix for KeycloakAuthorizer incompatibility with Kafka 4.1.0

When deploying KeycloakAuthorizer with Kafka ACL delegation enabled (strimzi.authorization.delegate.to.kafka.acl=true) there was an exception each time the authorization decision was delegated to Kafka's StandardAuthorizer, and the actions were denied.

Kafka 4.1.0 introduced a new metrics pluggability mechanism and updated StandardAuthorizer to implement Monitorable interface and expect a PluginMetrics object to be provided by the instantiating server via Monitorable.withPluginMetrics(PluginMetrics). KeycloakAuthorizer did not provide this part of the expected initialisation to StandardAuthorizer which resulted in NullPointerException at runtime.

This issue should now be fixed.

For more details about the new features see the RELEASE_NOTES.md and the README.md. All changes can be found under the 0.17.1 milestone.

How to test

Released Maven repository artifacts are available in Maven Central using version 0.17.1-RC1

Example:

<dependency>
    <groupId>io.strimzi</groupId>
    <artifactId>kafka-oauth-client</artifactId>
    <version>0.17.1-RC1</version>
</dependency>

Full Changelog: strimzi/strimzi-kafka-oauth@0.17.0...0.17.1-rc1

0.17.0

Main Changes since 0.16.2

Make client credentials grant type configurable

... (truncated)

Changelog

Sourced from io.strimzi:kafka-oauth-common's changelog.

0.17.1

Fix for KeycloakAuthorizer incompatibility with Kafka 4.1.0

When deploying KeycloakAuthorizer with Kafka ACL delegation enabled (strimzi.authorization.delegate.to.kafka.acl=true) there was an exception each time the authorization decision was delegated to Kafka's StandardAuthorizer, and the actions were denied.

Kafka 4.1.0 introduced a new metrics pluggability mechanism and updated StandardAuthorizer to implement Monitorable interface and expect a PluginMetrics object to be provided by the instantiating server via Monitorable.withPluginMetrics(PluginMetrics). KeycloakAuthorizer did not provide this part of the expected initialisation to StandardAuthorizer which resulted in NullPointerException at runtime.

This issue should now be fixed.

See PR 283

0.17.0

Make client credentials grant type configurable

OAuth clients using client_credentials can now set grant_type to a custom value. Custom authorization servers' OAuth implementations of client_credentials mechanism can now use grant_type as a discriminator.

A new configuration option was introduced: oauth.client.credentials.grant.type.

See PR 279

Commits
  • b214e42 Prepare for 0.17.1 release
  • 1436d50 Fix for "this.authorizerMetrics" is null issue in Kafka 4.1.0 (#283)
  • b4c5d53 Use kafka 4.1.0 image in testsuite and minor other fixes (#286)
  • d708cb4 Fix testsuite hydra-test (#284)
  • a098d20 Update RELEASE_NOTES.md (#285)
  • e18a819 Prepare for 0.17.0 release
  • e453b12 Update dependencies - libraries with CVEs, image versions used in examples an...
  • 3fea88d Custom client credentials grant type (#279)
  • 769f95e Change nimbus-jose-jwt to version 10.0.2 to minimise diff from 9.37.3 (#278)
  • 5d5d7ee Bump nimbus-jose-jwt to version 10.3 (#277)
  • Additional commits viewable in compare view

Updates io.strimzi:kafka-oauth-client from 0.16.2 to 0.17.1

Release notes

Sourced from io.strimzi:kafka-oauth-client's releases.

0.17.1

Main Changes since 0.17.0

Fix for KeycloakAuthorizer incompatibility with Kafka 4.1.0

When deploying KeycloakAuthorizer with Kafka ACL delegation enabled (strimzi.authorization.delegate.to.kafka.acl=true) there was an exception each time the authorization decision was delegated to Kafka's StandardAuthorizer, and the actions were denied.

Kafka 4.1.0 introduced a new metrics pluggability mechanism and updated StandardAuthorizer to implement Monitorable interface and expect a PluginMetrics object to be provided by the instantiating server via Monitorable.withPluginMetrics(PluginMetrics). KeycloakAuthorizer did not provide this part of the expected initialisation to StandardAuthorizer which resulted in NullPointerException at runtime.

This issue should now be fixed.

For more details about the new features see the RELEASE_NOTES.md and the README.md. All changes can be found under the 0.17.1 milestone.

Full Changelog: strimzi/strimzi-kafka-oauth@0.17.0...0.17.1

0.17.1-rc1

Main Changes since 0.17.0

Fix for KeycloakAuthorizer incompatibility with Kafka 4.1.0

When deploying KeycloakAuthorizer with Kafka ACL delegation enabled (strimzi.authorization.delegate.to.kafka.acl=true) there was an exception each time the authorization decision was delegated to Kafka's StandardAuthorizer, and the actions were denied.

Kafka 4.1.0 introduced a new metrics pluggability mechanism and updated StandardAuthorizer to implement Monitorable interface and expect a PluginMetrics object to be provided by the instantiating server via Monitorable.withPluginMetrics(PluginMetrics). KeycloakAuthorizer did not provide this part of the expected initialisation to StandardAuthorizer which resulted in NullPointerException at runtime.

This issue should now be fixed.

For more details about the new features see the RELEASE_NOTES.md and the README.md. All changes can be found under the 0.17.1 milestone.

How to test

Released Maven repository artifacts are available in Maven Central using version 0.17.1-RC1

Example:

<dependency>
    <groupId>io.strimzi</groupId>
    <artifactId>kafka-oauth-client</artifactId>
    <version>0.17.1-RC1</version>
</dependency>

Full Changelog: strimzi/strimzi-kafka-oauth@0.17.0...0.17.1-rc1

0.17.0

Main Changes since 0.16.2

Make client credentials grant type configurable

... (truncated)

Changelog

Sourced from io.strimzi:kafka-oauth-client's changelog.

0.17.1

Fix for KeycloakAuthorizer incompatibility with Kafka 4.1.0

When deploying KeycloakAuthorizer with Kafka ACL delegation enabled (strimzi.authorization.delegate.to.kafka.acl=true) there was an exception each time the authorization decision was delegated to Kafka's StandardAuthorizer, and the actions were denied.

Kafka 4.1.0 introduced a new metrics pluggability mechanism and updated StandardAuthorizer to implement Monitorable interface and expect a PluginMetrics object to be provided by the instantiating server via Monitorable.withPluginMetrics(PluginMetrics). KeycloakAuthorizer did not provide this part of the expected initialisation to StandardAuthorizer which resulted in NullPointerException at runtime.

This issue should now be fixed.

See PR 283

0.17.0

Make client credentials grant type configurable

OAuth clients using client_credentials can now set grant_type to a custom value. Custom authorization servers' OAuth implementations of client_credentials mechanism can now use grant_type as a discriminator.

A new configuration option was introduced: oauth.client.credentials.grant.type.

See PR 279

Commits
  • b214e42 Prepare for 0.17.1 release
  • 1436d50 Fix for "this.authorizerMetrics" is null issue in Kafka 4.1.0 (#283)
  • b4c5d53 Use kafka 4.1.0 image in testsuite and minor other fixes (#286)
  • d708cb4 Fix testsuite hydra-test (#284)
  • a098d20 Update RELEASE_NOTES.md (#285)
  • e18a819 Prepare for 0.17.0 release
  • e453b12 Update dependencies - libraries with CVEs, image versions used in examples an...
  • 3fea88d Custom client credentials grant type (#279)
  • 769f95e Change nimbus-jose-jwt to version 10.0.2 to minimise diff from 9.37.3 (#278)
  • 5d5d7ee Bump nimbus-jose-jwt to version 10.3 (#277)
  • Additional commits viewable in compare view

Updates io.strimzi:kafka-oauth-server-plain from 0.16.2 to 0.17.1

Release notes

Sourced from io.strimzi:kafka-oauth-server-plain's releases.

0.17.1

Main Changes since 0.17.0

Fix for KeycloakAuthorizer incompatibility with Kafka 4.1.0

When deploying KeycloakAuthorizer with Kafka ACL delegation enabled (strimzi.authorization.delegate.to.kafka.acl=true) there was an exception each time the authorization decision was delegated to Kafka's StandardAuthorizer, and the actions were denied.

Kafka 4.1.0 introduced a new metrics pluggability mechanism and updated StandardAuthorizer to implement Monitorable interface and expect a PluginMetrics object to be provided by the instantiating server via Monitorable.withPluginMetrics(PluginMetrics). KeycloakAuthorizer did not provide this part of the expected initialisation to StandardAuthorizer which resulted in NullPointerException at runtime.

This issue should now be fixed.

For more details about the new features see the RELEASE_NOTES.md and the README.md. All changes can be found under the 0.17.1 milestone.

Full Changelog: strimzi/strimzi-kafka-oauth@0.17.0...0.17.1

0.17.1-rc1

Main Changes since 0.17.0

Fix for KeycloakAuthorizer incompatibility with Kafka 4.1.0

When deploying KeycloakAuthorizer with Kafka ACL delegation enabled (strimzi.authorization.delegate.to.kafka.acl=true) there was an exception each time the authorization decision was delegated to Kafka's StandardAuthorizer, and the actions were denied.

Kafka 4.1.0 introduced a new metrics pluggability mechanism and updated StandardAuthorizer to implement Monitorable interface and expect a PluginMetrics object to be provided by the instantiating server via Monitorable.withPluginMetrics(PluginMetrics). KeycloakAuthorizer did not provide this part of the expected initialisation to StandardAuthorizer which resulted in NullPointerException at runtime.

This issue should now be fixed.

For more details about the new features see the RELEASE_NOTES.md and the README.md. All changes can be found under the 0.17.1 milestone.

How to test

Released Maven repository artifacts are available in Maven Central using version 0.17.1-RC1

Example:

<dependency>
    <groupId>io.strimzi</groupId>
    <artifactId>kafka-oauth-client</artifactId>
    <version>0.17.1-RC1</version>
</dependency>

Full Changelog: strimzi/strimzi-kafka-oauth@0.17.0...0.17.1-rc1

0.17.0

Main Changes since 0.16.2

Make client credentials grant type configurable

... (truncated)

Changelog

Sourced from io.strimzi:kafka-oauth-server-plain's changelog.

0.17.1

Fix for KeycloakAuthorizer incompatibility with Kafka 4.1.0

When deploying KeycloakAuthorizer with Kafka ACL delegation enabled (strimzi.authorization.delegate.to.kafka.acl=true) there was an exception each time the authorization decision was delegated to Kafka's StandardAuthorizer, and the actions were denied.

Kafka 4.1.0 introduced a new metrics pluggability mechanism and updated StandardAuthorizer to implement Monitorable interface and expect a PluginMetrics object to be provided by the instantiating server via Monitorable.withPluginMetrics(PluginMetrics). KeycloakAuthorizer did not provide this part of the expected initialisation to StandardAuthorizer which resulted in NullPointerException at runtime.

This issue should now be fixed.

See PR 283

0.17.0

Make client credentials grant type configurable

OAuth clients using client_credentials can now set grant_type to a custom value. Custom authorization servers' OAuth implementations of client_credentials mechanism can now use grant_type as a discriminator.

A new configuration option was introduced: oauth.client.credentials.grant.type.

See PR 279

Commits
  • b214e42 Prepare for 0.17.1 release
  • 1436d50 Fix for "this.authorizerMetrics" is null issue in Kafka 4.1.0 (#283)
  • b4c5d53 Use kafka 4.1.0 image in testsuite and minor other fixes (#286)
  • d708cb4 Fix testsuite hydra-test (#284)
  • a098d20 Update RELEASE_NOTES.md (#285)
  • e18a819 Prepare for 0.17.0 release
  • e453b12 Update dependencies - libraries with CVEs, image versions used in examples an...
  • 3fea88d Custom client credentials grant type (#279)
  • 769f95e Change nimbus-jose-jwt to version 10.0.2 to minimise diff from 9.37.3 (#278)
  • 5d5d7ee Bump nimbus-jose-jwt to version 10.3 (#277)
  • Additional commits viewable in compare view

Updates io.strimzi:kafka-oauth-keycloak-authorizer from 0.16.2 to 0.17.1

Release notes

Sourced from io.strimzi:kafka-oauth-keycloak-authorizer's releases.

0.17.1

Main Changes since 0.17.0

Fix for KeycloakAuthorizer incompatibility with Kafka 4.1.0

When deploying KeycloakAuthorizer with Kafka ACL delegation enabled (strimzi.authorization.delegate.to.kafka.acl=true) there was an exception each time the authorization decision was delegated to Kafka's StandardAuthorizer, and the actions were denied.

Kafka 4.1.0 introduced a new metrics pluggability mechanism and updated StandardAuthorizer to implement Monitorable interface and expect a PluginMetrics object to be provided by the instantiating server via Monitorable.withPluginMetrics(PluginMetrics). KeycloakAuthorizer did not provide this part of the expected initialisation to StandardAuthorizer which resulted in NullPointerException at runtime.

This issue should now be fixed.

For more details about the new features see the RELEASE_NOTES.md and the README.md. All changes can be found under the 0.17.1 milestone.

Full Changelog: strimzi/strimzi-kafka-oauth@0.17.0...0.17.1

0.17.1-rc1

Main Changes since 0.17.0

Fix for KeycloakAuthorizer incompatibility with Kafka 4.1.0

When deploying KeycloakAuthorizer with Kafka ACL delegation enabled (strimzi.authorization.delegate.to.kafka.acl=true) there was an exception each time the authorization decision was delegated to Kafka's StandardAuthorizer, and the actions were denied.

Kafka 4.1.0 introduced a new metrics pluggability mechanism and updated StandardAuthorizer to implement Monitorable interface and expect a PluginMetrics object to be provided by the instantiating server via Monitorable.withPluginMetrics(PluginMetrics). KeycloakAuthorizer did not provide this part of the expected initialisation to StandardAuthorizer which resulted in NullPointerException at runtime.

This issue should now be fixed.

For more details about the new features see the RELEASE_NOTES.md and the README.md. All changes can be found under the 0.17.1 milestone.

How to test

Released Maven repository artifacts are available in Maven Central using version 0.17.1-RC1

Example:

<dependency>
    <groupId>io.strimzi</groupId>
    <artifactId>kafka-oauth-client</artifactId>
    <version>0.17.1-RC1</version>
</dependency>

Full Changelog: strimzi/strimzi-kafka-oauth@0.17.0...0.17.1-rc1

0.17.0

Main Changes since 0.16.2

Make client credentials grant type configurable

... (truncated)

Changelog

Sourced from io.strimzi:kafka-oauth-keycloak-authorizer's changelog.

0.17.1

Fix for KeycloakAuthorizer incompatibility with Kafka 4.1.0

When deploying KeycloakAuthorizer with Kafka ACL delegation enabled (strimzi.authorization.delegate.to.kafka.acl=true) there was an exception each time the authorization decision was delegated to Kafka's StandardAuthorizer, and the actions were denied.

Kafka 4.1.0 introduced a new metrics pluggability mechanism and updated StandardAuthorizer to implement Monitorable interface and expect a PluginMetrics object to be provided by the instantiating server via Monitorable.withPluginMetrics(PluginMetrics). KeycloakAuthorizer did not provide this part of the expected initialisation to StandardAuthorizer which resulted in NullPointerException at runtime.

This issue should now be fixed.

See PR 283

0.17.0

Make client credentials grant type configurable

OAuth clients using client_credentials can now set grant_type to a custom value. Custom authorization servers' OAuth implementations of client_credentials mechanism can now use grant_type as a discriminator.

A new configuration option was introduced: oauth.client.credentials.grant.type.

See PR 279

Commits
  • b214e42 Prepare for 0.17.1 release
  • 1436d50 Fix for "this.authorizerMetrics" is null issue in Kafka 4.1.0 (#283)
  • b4c5d53 Use kafka 4.1.0 image in testsuite and minor other fixes (#286)
  • d708cb4 Fix testsuite hydra-test (#284)
  • a098d20 Update RELEASE_NOTES.md (#285)
  • e18a819 Prepare for 0.17.0 release
  • e453b12 Update dependencies - libraries with CVEs, image versions used in examples an...
  • 3fea88d Custom client credentials grant type (#279)
  • 769f95e Change nimbus-jose-jwt to version 10.0.2 to minimise diff from 9.37.3 (#278)
  • 5d5d7ee Bump nimbus-jose-jwt to version 10.3 (#277)
  • Additional commits viewable in compare view

You can trigger a rebase of this PR by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

Bumps `strimzi-oauth.version` from 0.16.2 to 0.17.1.

Updates `io.strimzi:kafka-oauth-server` from 0.16.2 to 0.17.1
- [Release notes](https://github.com/strimzi/strimzi-kafka-oauth/releases)
- [Changelog](https://github.com/strimzi/strimzi-kafka-oauth/blob/0.17.1/RELEASE_NOTES.md)
- [Commits](strimzi/strimzi-kafka-oauth@0.16.2...0.17.1)

Updates `io.strimzi:kafka-oauth-common` from 0.16.2 to 0.17.1
- [Release notes](https://github.com/strimzi/strimzi-kafka-oauth/releases)
- [Changelog](https://github.com/strimzi/strimzi-kafka-oauth/blob/0.17.1/RELEASE_NOTES.md)
- [Commits](strimzi/strimzi-kafka-oauth@0.16.2...0.17.1)

Updates `io.strimzi:kafka-oauth-client` from 0.16.2 to 0.17.1
- [Release notes](https://github.com/strimzi/strimzi-kafka-oauth/releases)
- [Changelog](https://github.com/strimzi/strimzi-kafka-oauth/blob/0.17.1/RELEASE_NOTES.md)
- [Commits](strimzi/strimzi-kafka-oauth@0.16.2...0.17.1)

Updates `io.strimzi:kafka-oauth-server-plain` from 0.16.2 to 0.17.1
- [Release notes](https://github.com/strimzi/strimzi-kafka-oauth/releases)
- [Changelog](https://github.com/strimzi/strimzi-kafka-oauth/blob/0.17.1/RELEASE_NOTES.md)
- [Commits](strimzi/strimzi-kafka-oauth@0.16.2...0.17.1)

Updates `io.strimzi:kafka-oauth-keycloak-authorizer` from 0.16.2 to 0.17.1
- [Release notes](https://github.com/strimzi/strimzi-kafka-oauth/releases)
- [Changelog](https://github.com/strimzi/strimzi-kafka-oauth/blob/0.17.1/RELEASE_NOTES.md)
- [Commits](strimzi/strimzi-kafka-oauth@0.16.2...0.17.1)

---
updated-dependencies:
- dependency-name: io.strimzi:kafka-oauth-server
  dependency-version: 0.17.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: io.strimzi:kafka-oauth-common
  dependency-version: 0.17.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: io.strimzi:kafka-oauth-client
  dependency-version: 0.17.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
- dependency-name: io.strimzi:kafka-oauth-server-plain
  dependency-version: 0.17.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: io.strimzi:kafka-oauth-keycloak-authorizer
  dependency-version: 0.17.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Oct 31, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file java Pull requests that update Java code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants