File tree Expand file tree Collapse file tree 3 files changed +8
-6
lines changed
Expand file tree Collapse file tree 3 files changed +8
-6
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ version Files.readAllLines(Paths.get("version")).first()
2929
3030sourceCompatibility = JavaVersion . VERSION_1_8
3131
32- String nettyVersion = ' 4.1.93 .Final'
32+ String nettyVersion = ' 4.1.94 .Final'
3333
3434buildscript {
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
6261task generateGemJarRequiresFile {
Original file line number Diff line number Diff line change 1- 6.3.4
1+ 6.3.5
You can’t perform that action at this time.
0 commit comments