Skip to content

Commit 840206a

Browse files
authored
Update build.gradle to bump kafka client to 3.7.1 (#186)
also upgrade transitive dependencies. bump to 11.5.3
1 parent 0757b62 commit 840206a

File tree

6 files changed

+14
-11
lines changed

6 files changed

+14
-11
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 11.5.3
2+
- Update kafka client to 3.7.1 and transitive dependencies [#186](https://github.com/logstash-plugins/logstash-integration-kafka/pull/186)
3+
14
## 11.5.2
25
- Update avro to 1.11.4 and confluent kafka to 7.4.7 [#184](https://github.com/logstash-plugins/logstash-integration-kafka/pull/184)
36

build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ java {
3838
}
3939

4040
// given https://docs.confluent.io/current/installation/versions-interoperability.html matrix
41-
// Confluent Platform 7.4.x is Apache Kafka 3.4.x
42-
String confluentKafkaVersion = '7.4.7'
43-
String apacheKafkaVersion = '3.4.1'
41+
// Confluent Platform 7.7.x is Apache Kafka 3.7.x
42+
String confluentKafkaVersion = '7.7.1'
43+
String apacheKafkaVersion = '3.7.1'
4444

4545
repositories {
4646
mavenCentral()
@@ -67,9 +67,9 @@ dependencies {
6767
implementation "org.apache.kafka:kafka-clients:${apacheKafkaVersion}"
6868
// slf4j, zstd, lz4-java, snappy are dependencies from "kafka-clients"
6969
implementation 'org.slf4j:slf4j-api:1.7.36'
70-
implementation 'com.github.luben:zstd-jni:1.5.5-4'
70+
implementation 'com.github.luben:zstd-jni:1.5.6-8'
7171
implementation 'org.lz4:lz4-java:1.8.0'
72-
implementation 'org.xerial.snappy:snappy-java:1.1.10.5'
72+
implementation 'org.xerial.snappy:snappy-java:1.1.10.7'
7373
}
7474
task generateGemJarRequiresFile {
7575
doLast {

docs/index.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
:plugin: kafka
22
:type: integration
33
:no_codec:
4-
:kafka_client: 3.4.1
4+
:kafka_client: 3.7.1
55

66
///////////////////////////////////////////
77
START - GENERATED VARIABLES, DO NOT EDIT!

docs/input-kafka.asciidoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
:plugin: kafka
33
:type: input
44
:default_codec: plain
5-
:kafka_client: 3.4
6-
:kafka_client_doc: 34
5+
:kafka_client: 3.7
6+
:kafka_client_doc: 37
77

88
///////////////////////////////////////////
99
START - GENERATED VARIABLES, DO NOT EDIT!

docs/output-kafka.asciidoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
:plugin: kafka
33
:type: output
44
:default_codec: plain
5-
:kafka_client: 3.4
6-
:kafka_client_doc: 34
5+
:kafka_client: 3.7
6+
:kafka_client_doc: 37
77

88
///////////////////////////////////////////
99
START - GENERATED VARIABLES, DO NOT EDIT!

logstash-integration-kafka.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Gem::Specification.new do |s|
22
s.name = 'logstash-integration-kafka'
3-
s.version = '11.5.2'
3+
s.version = '11.5.3'
44
s.licenses = ['Apache-2.0']
55
s.summary = "Integration with Kafka - input and output plugins"
66
s.description = "This gem is a Logstash plugin required to be installed on top of the Logstash core pipeline "+

0 commit comments

Comments
 (0)