Skip to content

Commit 26a711e

Browse files
authored
update netty to 4.1.94 and other dependencies (#216)
1 parent 2401ca5 commit 26a711e

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
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.5
2+
- update netty to 4.1.94 and other dependencies [#216](https://github.com/logstash-plugins/logstash-input-tcp/pull/216)
3+
14
## 6.3.4
25
- Fix: reduce error logging (to info level) on connection resets [#214](https://github.com/logstash-plugins/logstash-input-tcp/pull/214)
36

build.gradle

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ version Files.readAllLines(Paths.get("version")).first()
2929

3030
sourceCompatibility = JavaVersion.VERSION_1_8
3131

32-
String nettyVersion = '4.1.93.Final'
32+
String nettyVersion = '4.1.94.Final'
3333

3434
buildscript {
3535
repositories {
@@ -52,11 +52,10 @@ dependencies {
5252
implementation "io.netty:netty-handler:${nettyVersion}"
5353
implementation "io.netty:netty-transport-native-unix-common:${nettyVersion}" // this is needed from Netty 4.1.78.Final on
5454

55-
implementation group: 'commons-io', name: 'commons-io', version: '2.8.0' // used from Netty
55+
implementation group: 'commons-io', name: 'commons-io', version: '2.13.0' // used from Netty
5656
compileOnly 'org.apache.logging.log4j:log4j-api:2.17.1' // provided by Logstash
57-
compileOnly group: 'org.jruby', name: 'jruby-core', version: "9.3.10.0" // provided by Logstash
58-
// 1.60 effectively means jruby-openssl >= 0.10.2 (logstash > 6.7)
59-
compileOnly group: 'org.bouncycastle', name: 'bcpkix-jdk15on', version: "1.60" // provided by Logstash (JRuby-OpenSSL)
57+
compileOnly group: 'org.jruby', name: 'jruby-core', version: "9.4.3.0" // provided by Logstash
58+
compileOnly group: 'org.bouncycastle', name: 'bcpkix-jdk18on', version: "1.71" // provided by Logstash (JRuby-OpenSSL)
6059
}
6160

6261
task generateGemJarRequiresFile {

version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
6.3.4
1+
6.3.5

0 commit comments

Comments
 (0)