logstash-input-tcp 7.0.5-java → 7.0.7-java

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 69feda824e271ae4a47c71f0b82756e41e5553114230a0261ae3fb7798e0507b
4
- data.tar.gz: be313ccd098609c464aee5c15bfe208acc654742f778e92cc4064cfcb87650a0
3
+ metadata.gz: 8f21421fea5277e0ca99a866ee51fdcd8dd0c93bff379b9cb5b5aa340103849c
4
+ data.tar.gz: d41eebf4063f5880b7d2e800c86b586e13a812e8229c612ba53356f93971a314
5
5
  SHA512:
6
- metadata.gz: 5341043a45dca63996758a69036e313f6426fa2c67fbb53bf9e61476dcf16cd9fe1a3d3f1dceff106338859855a464f128b46365114d771c6bec3725498e9c86
7
- data.tar.gz: 706226b1143394f8e09d4acd51b2122881ac11ba6c68ad28ba194bc01ed6b274ec116774298d95a600ef2efee97b74ca31c7e322115b7e573d13b7805ced2220
6
+ metadata.gz: 1eb5108530b49bbfcd76f969532d9709ca85eecddec979d0af8bc911df2a8dd09839937b89af4c382afac78549d5620273a3d50d64bbc2f0fd081ea5ac2f4b65
7
+ data.tar.gz: 336169504ec66c2460c9cd90d838111642dd8f41525722f31add74fda72d7628663e18bcb835ee455407287e7a804411358a32fafc8027a0063498c93c71d48a
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## 7.0.7
2
+ - Update Netty dependency to 4.1.132.Final [#249](https://github.com/logstash-plugins/logstash-input-tcp/pull/249)
3
+
4
+ ## 7.0.6
5
+ - Upgrade netty to 4.1.131 [#246](https://github.com/logstash-plugins/logstash-input-tcp/pull/246)
6
+
1
7
  ## 7.0.5
2
8
  - Re-packaging the plugin [#242](https://github.com/logstash-plugins/logstash-input-tcp/pull/242)
3
9
 
@@ -1,12 +1,12 @@
1
1
  # AUTOGENERATED BY THE GRADLE SCRIPT. DO NOT EDIT.
2
2
 
3
3
  require 'jar_dependencies'
4
- require_jar('io.netty', 'netty-handler', '4.1.129.Final')
4
+ require_jar('io.netty', 'netty-handler', '4.1.132.Final')
5
5
  require_jar('commons-io', 'commons-io', '2.17.0')
6
- require_jar('io.netty', 'netty-transport-native-unix-common', '4.1.129.Final')
7
- require_jar('io.netty', 'netty-codec', '4.1.129.Final')
8
- require_jar('io.netty', 'netty-transport', '4.1.129.Final')
9
- require_jar('io.netty', 'netty-resolver', '4.1.129.Final')
10
- require_jar('io.netty', 'netty-buffer', '4.1.129.Final')
11
- require_jar('io.netty', 'netty-common', '4.1.129.Final')
12
- require_jar('org.logstash.inputs', 'logstash-input-tcp', '7.0.5')
6
+ require_jar('io.netty', 'netty-transport-native-unix-common', '4.1.132.Final')
7
+ require_jar('io.netty', 'netty-codec', '4.1.132.Final')
8
+ require_jar('io.netty', 'netty-transport', '4.1.132.Final')
9
+ require_jar('io.netty', 'netty-resolver', '4.1.132.Final')
10
+ require_jar('io.netty', 'netty-buffer', '4.1.132.Final')
11
+ require_jar('io.netty', 'netty-common', '4.1.132.Final')
12
+ require_jar('org.logstash.inputs', 'logstash-input-tcp', '7.0.7')
@@ -859,7 +859,7 @@ describe LogStash::Inputs::Tcp, :ecs_compatibility_support do
859
859
  base_config.merge 'ssl_cipher_suites' => [ cipher_suite ]
860
860
  end
861
861
 
862
- let(:cipher_suite) { 'TLS_RSA_WITH_AES_128_GCM_SHA256' }
862
+ let(:cipher_suite) { 'TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256' }
863
863
 
864
864
  it "should be able to connect and write data" do
865
865
  used_cipher_suite = nil
@@ -878,7 +878,7 @@ describe LogStash::Inputs::Tcp, :ecs_compatibility_support do
878
878
 
879
879
  context "with unsupported client cipher" do
880
880
  let(:config) do
881
- base_config.merge 'ssl_cipher_suites' => [ 'TLS_RSA_WITH_AES_128_GCM_SHA256', 'TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256' ]
881
+ base_config.merge 'ssl_cipher_suites' => [ 'TLS_DHE_RSA_WITH_AES_128_GCM_SHA256', 'TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256' ]
882
882
  end
883
883
 
884
884
  let(:sslcontext) do
@@ -994,11 +994,11 @@ describe LogStash::Inputs::Tcp, :ecs_compatibility_support do
994
994
  super().merge 'ssl_cipher_suites' => [ cipher_suite ]
995
995
  end
996
996
 
997
- let(:cipher_suite) { 'TLS_RSA_WITH_AES_128_GCM_SHA256' }
997
+ let(:cipher_suite) { 'TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256' }
998
998
 
999
999
  it "sets ciphers" do
1000
1000
  cipher_ary = ssl_context.ciphers.first
1001
- expect( cipher_ary[0] ).to eql 'AES128-GCM-SHA256'
1001
+ expect( cipher_ary[0] ).to eql 'ECDHE-RSA-AES128-GCM-SHA256'
1002
1002
  end
1003
1003
 
1004
1004
  end
data/version CHANGED
@@ -1 +1 @@
1
- 7.0.5
1
+ 7.0.7
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-input-tcp
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.0.5
4
+ version: 7.0.7
5
5
  platform: java
6
6
  authors:
7
7
  - Elastic
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2026-01-31 00:00:00.000000000 Z
10
+ date: 2026-03-31 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: logstash-core-plugin-api
@@ -231,14 +231,14 @@ files:
231
231
  - spec/inputs/tcp_spec.rb
232
232
  - spec/spec_helper.rb
233
233
  - vendor/jar-dependencies/commons-io/commons-io/2.17.0/commons-io-2.17.0.jar
234
- - vendor/jar-dependencies/io/netty/netty-buffer/4.1.129.Final/netty-buffer-4.1.129.Final.jar
235
- - vendor/jar-dependencies/io/netty/netty-codec/4.1.129.Final/netty-codec-4.1.129.Final.jar
236
- - vendor/jar-dependencies/io/netty/netty-common/4.1.129.Final/netty-common-4.1.129.Final.jar
237
- - vendor/jar-dependencies/io/netty/netty-handler/4.1.129.Final/netty-handler-4.1.129.Final.jar
238
- - vendor/jar-dependencies/io/netty/netty-resolver/4.1.129.Final/netty-resolver-4.1.129.Final.jar
239
- - vendor/jar-dependencies/io/netty/netty-transport-native-unix-common/4.1.129.Final/netty-transport-native-unix-common-4.1.129.Final.jar
240
- - vendor/jar-dependencies/io/netty/netty-transport/4.1.129.Final/netty-transport-4.1.129.Final.jar
241
- - vendor/jar-dependencies/org/logstash/inputs/logstash-input-tcp/7.0.5/logstash-input-tcp-7.0.5.jar
234
+ - vendor/jar-dependencies/io/netty/netty-buffer/4.1.132.Final/netty-buffer-4.1.132.Final.jar
235
+ - vendor/jar-dependencies/io/netty/netty-codec/4.1.132.Final/netty-codec-4.1.132.Final.jar
236
+ - vendor/jar-dependencies/io/netty/netty-common/4.1.132.Final/netty-common-4.1.132.Final.jar
237
+ - vendor/jar-dependencies/io/netty/netty-handler/4.1.132.Final/netty-handler-4.1.132.Final.jar
238
+ - vendor/jar-dependencies/io/netty/netty-resolver/4.1.132.Final/netty-resolver-4.1.132.Final.jar
239
+ - vendor/jar-dependencies/io/netty/netty-transport-native-unix-common/4.1.132.Final/netty-transport-native-unix-common-4.1.132.Final.jar
240
+ - vendor/jar-dependencies/io/netty/netty-transport/4.1.132.Final/netty-transport-4.1.132.Final.jar
241
+ - vendor/jar-dependencies/org/logstash/inputs/logstash-input-tcp/7.0.7/logstash-input-tcp-7.0.7.jar
242
242
  - version
243
243
  homepage: https://elastic.co/logstash
244
244
  licenses: