Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ The recommended way to use this library is to consume it from maven central whil
<dependency>
<groupId>software.amazon.msk</groupId>
<artifactId>aws-msk-iam-auth</artifactId>
<version>2.3.5</version>
<version>2.3.6</version>
</dependency>
```
If you want to use it with a pre-existing Kafka client, you could build the uber jar and place it in the Kafka client's
Expand Down Expand Up @@ -567,6 +567,11 @@ public static String UriEncode(CharSequence input, boolean encodeSlash) {

## Release Notes

### Release 2.3.6
- GHSA-2x2g-32r7-p4x8 addressed by kafka-clients 3.9.1
- GHSA-72hv-8253-57qq addressed by jackson-databind 2.21.1
- GHSA-j288-q9x7-2f5v addressed by commons-lang3 3.18.0

### Release 2.3.5
- Upgrade AWS SDK version to address CVE-2025-58056 and CVE-2025-58057
- Updated dependencies to address build issues. It's now recommended to build the package using Gradle 8.0+ and JDK 17+.
Expand Down
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -43,26 +43,26 @@ version = readVersion()
group "software.amazon.msk"

dependencies {
compileOnly('org.apache.kafka:kafka-clients:2.8.1')
compileOnly('org.apache.kafka:kafka-clients:3.9.1')
// aws sdk imports.
implementation(platform('software.amazon.awssdk:bom:2.36.3'))
implementation('software.amazon.awssdk:auth')
implementation('software.amazon.awssdk:sso')
implementation('software.amazon.awssdk:ssooidc')
implementation('software.amazon.awssdk:sts')
implementation('com.fasterxml.jackson.core:jackson-databind:2.18.3')
implementation('com.fasterxml.jackson.core:jackson-databind:2.21.1')
implementation('org.slf4j:slf4j-api:1.7.25')

runtimeOnly('software.amazon.awssdk:apache-client')

//test dependencies
testImplementation('org.apache.kafka:kafka-clients:2.2.1')
testImplementation('org.apache.kafka:kafka-clients:3.9.1')
testImplementation('org.junit.jupiter:junit-jupiter-api:5.7.0')
testImplementation('org.apache.commons:commons-lang3:3.11')
testImplementation('org.apache.commons:commons-lang3:3.18.0')
testImplementation('org.mockito:mockito-inline:5.0.0')

testRuntimeOnly('org.junit.jupiter:junit-jupiter-engine:5.7.0')
testRuntimeOnly('org.apache.logging.log4j:log4j-core:2.17.1')
testRuntimeOnly('org.apache.logging.log4j:log4j-core:2.25.3')
testRuntimeOnly('org.apache.logging.log4j:log4j-slf4j-impl:2.17.1')
}

Expand Down