Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade Kafka clients dependency version to 3.8.0 #738

Closed
wants to merge 3 commits into from
Closed
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
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ Release Notes.
* Add empty judgment for constructorInterceptPoint
* Bump up gRPC to 1.68.1
* Bump up netty to 4.1.115.Final
* Upgrade Kafka clients dependency version to 3.8.0

All issues and pull requests are [here](https://github.com/apache/skywalking/milestone/222?closed=1)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -150,19 +150,19 @@
<artifactItem>
<groupId>org.xerial.snappy</groupId>
<artifactId>snappy-java</artifactId>
<version>1.1.7.3</version>
<version>1.1.10.5</version>
<outputDirectory>${optional.reporter.plugins.dest.dir}</outputDirectory>
</artifactItem>
<artifactItem>
<groupId>org.lz4</groupId>
<artifactId>lz4-java</artifactId>
<version>1.6.0</version>
<version>1.8.0</version>
<outputDirectory>${optional.reporter.plugins.dest.dir}</outputDirectory>
</artifactItem>
<artifactItem>
<groupId>com.github.luben</groupId>
<artifactId>zstd-jni</artifactId>
<version>1.4.3-1</version>
<version>1.5.6-3</version>
<outputDirectory>${optional.reporter.plugins.dest.dir}</outputDirectory>
</artifactItem>
</artifactItems>
Expand Down
2 changes: 1 addition & 1 deletion apm-sniffer/optional-reporter-plugins/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
<ant-contrib.version>1.0b3</ant-contrib.version>
<ant-nodeps.version>1.8.1</ant-nodeps.version>

<kafka-clients.version>2.4.1</kafka-clients.version>
<kafka-clients.version>3.8.0</kafka-clients.version>
<spring-kafka-test.version>2.4.6.RELEASE</spring-kafka-test.version>
</properties>

Expand Down
4 changes: 2 additions & 2 deletions test/e2e/case/kafka/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ services:
retries: 120

broker-a:
image: bitnami/kafka:2.4.1
image: bitnami/kafka:3.8
hostname: broker-a
expose:
- 9092
Expand All @@ -52,7 +52,7 @@ services:
retries: 120

broker-b:
image: bitnami/kafka:2.4.1
image: bitnami/kafka:3.8
hostname: broker-b
expose:
- 9092
Expand Down
Loading