Skip to content

Commit f493de3

Browse files
authored
Update Netty to 4.1.87 (#209)
* Update Netty to 4.1.87
1 parent 3663173 commit f493de3

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 6.3.2
2+
- Update Netty dependency to 4.1.87 [#209](https://github.com/logstash-plugins/logstash-input-tcp/pull/209)
3+
14
## 6.3.1
25
- Fixes a regression in which the ssl_subject was missing for SSL-secured connections in server mode [#199](https://github.com/logstash-plugins/logstash-input-tcp/pull/199)
36

build.gradle

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ version Files.readAllLines(Paths.get("version")).first()
2929

3030
sourceCompatibility = JavaVersion.VERSION_1_8
3131

32+
String nettyVersion = '4.1.87.Final'
33+
3234
buildscript {
3335
repositories {
3436
mavenCentral()
@@ -43,7 +45,13 @@ repositories {
4345
dependencies {
4446
testImplementation 'org.apache.logging.log4j:log4j-core:2.17.1'
4547

46-
implementation 'io.netty:netty-all:4.1.65.Final'
48+
implementation "io.netty:netty-buffer:${nettyVersion}"
49+
implementation "io.netty:netty-codec:${nettyVersion}"
50+
implementation "io.netty:netty-common:${nettyVersion}"
51+
implementation "io.netty:netty-transport:${nettyVersion}"
52+
implementation "io.netty:netty-handler:${nettyVersion}"
53+
implementation "io.netty:netty-transport-native-unix-common:${nettyVersion}" // this is needed from Netty 4.1.78.Final on
54+
4755
implementation group: 'commons-io', name: 'commons-io', version: '2.8.0' // used from Netty
4856
compileOnly 'org.apache.logging.log4j:log4j-api:2.17.1' // provided by Logstash
4957
compileOnly group: 'org.jruby', name: 'jruby-complete', version: "9.1.13.0" // provided by Logstash

version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
6.3.1
1+
6.3.2

0 commit comments

Comments
 (0)