logstash-input-tcp 7.0.0-java → 7.0.2-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: c8bc68458ba90d33f5f007625f68bbe9a1807a18c2c7d197aa75ed5092e1cc55
4
- data.tar.gz: 0aa68f080ab88ad648bd9a19455bc495cdcbb1dbcab3b34e27d14e496ec5b3f9
3
+ metadata.gz: b6a2a72435fdc1144bd70efbdfbc7579a3c1902cf4f9fc7794dad83e48efa851
4
+ data.tar.gz: 86c27915d6edccaefabd40fb74ea3ce69048bbf6ad711179a141cf79e333c4c3
5
5
  SHA512:
6
- metadata.gz: 0ab15b83290d8dd586523d0a83a5a49741f2f9050851e8f86d04a2441ecf1b767467fecbd8372e8d7a67454b3f6cbcbcd2890790ba875914790d10e00bea5f92
7
- data.tar.gz: e87be82c1979de3b29a4ad66d7c022a6cad29327d6ec660b835908d69d7abf5284af027a7194d2103e3c180d836f9f9039cc9b17f3e96046101012dac2a5a86a
6
+ metadata.gz: 279052003649399ad83aa3153797503db8be36872b5ddb5d326aaecdfce145066e91a3de24ab51ae6117a4dea1062e34bd8ad6c7a2b5fcc69d179126cbc7d3ae
7
+ data.tar.gz: 75f81da1f4bb50fa03146e8cebb21e8d1ef7fa6e7cfe4b878da5d0c6a7a1eadbf62a6cf2fc008bde1e42143b02ede9265115c0d4aab2c734e92597ea6aae1865
data/CHANGELOG.md CHANGED
@@ -1,10 +1,16 @@
1
+ ## 7.0.2
2
+ - Upgrade netty to 4.1.118 [#232](https://github.com/logstash-plugins/logstash-input-tcp/pull/232)
3
+
4
+ ## 7.0.1
5
+ - Name netty threads with plugin id and their purpose [#229](https://github.com/logstash-plugins/logstash-input-tcp/pull/229)
6
+
1
7
  ## 7.0.0
2
8
  - SSL settings that were marked deprecated in version `6.4.0` are now marked obsolete, and will prevent the plugin from starting.
3
9
  - These settings are:
4
10
  - `ssl_cert`, which should be replaced by `ssl_certificate`
5
11
  - `ssl_enable`, which should be replaced by `ssl_enabled`
6
12
  - `ssl_verify`, which should be replaced by `ssl_client_authentication` when `mode` is `server` or `ssl_verification_mode`when mode is `client`
7
- - [228](https://github.com/logstash-plugins/logstash-input-tcp/pull/228)
13
+ - [#228](https://github.com/logstash-plugins/logstash-input-tcp/pull/228)
8
14
 
9
15
  ## 6.4.4
10
16
  - update netty to 4.1.115 [#227](https://github.com/logstash-plugins/logstash-input-tcp/pull/227)
@@ -177,7 +177,7 @@ class LogStash::Inputs::Tcp < LogStash::Inputs::Base
177
177
  validate_ssl_config!
178
178
 
179
179
  if server?
180
- @loop = InputLoop.new(@host, @port, DecoderImpl.new(@codec, self), @tcp_keep_alive, java_ssl_context)
180
+ @loop = InputLoop.new(@id, @host, @port, DecoderImpl.new(@codec, self), @tcp_keep_alive, java_ssl_context)
181
181
  end
182
182
  end
183
183
 
@@ -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-buffer', '4.1.115.Final')
5
- require_jar('io.netty', 'netty-codec', '4.1.115.Final')
6
- require_jar('io.netty', 'netty-common', '4.1.115.Final')
7
- require_jar('io.netty', 'netty-transport', '4.1.115.Final')
8
- require_jar('io.netty', 'netty-handler', '4.1.115.Final')
9
- require_jar('io.netty', 'netty-transport-native-unix-common', '4.1.115.Final')
4
+ require_jar('io.netty', 'netty-buffer', '4.1.118.Final')
5
+ require_jar('io.netty', 'netty-codec', '4.1.118.Final')
6
+ require_jar('io.netty', 'netty-common', '4.1.118.Final')
7
+ require_jar('io.netty', 'netty-transport', '4.1.118.Final')
8
+ require_jar('io.netty', 'netty-handler', '4.1.118.Final')
9
+ require_jar('io.netty', 'netty-transport-native-unix-common', '4.1.118.Final')
10
10
  require_jar('commons-io', 'commons-io', '2.17.0')
11
11
 
12
- require_jar('org.logstash.inputs', 'logstash-input-tcp', '7.0.0')
12
+ require_jar('org.logstash.inputs', 'logstash-input-tcp', '7.0.2')
@@ -6,7 +6,7 @@ Gem::Specification.new do |s|
6
6
  s.description = "This gem is a Logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/logstash-plugin install gemname. This gem is not a stand-alone program"
7
7
  s.authors = ["Elastic"]
8
8
  s.email = 'info@elastic.co'
9
- s.homepage = "http://www.elastic.co/guide/en/logstash/current/index.html"
9
+ s.homepage = "https://elastic.co/logstash"
10
10
  s.platform = "java"
11
11
  s.require_paths = ["lib", "vendor/jar-dependencies"]
12
12
 
data/version CHANGED
@@ -1 +1 @@
1
- 7.0.0
1
+ 7.0.2
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-input-tcp
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.0.0
4
+ version: 7.0.2
5
5
  platform: java
6
6
  authors:
7
7
  - Elastic
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-01-10 00:00:00.000000000 Z
11
+ date: 2025-02-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
@@ -232,15 +232,15 @@ files:
232
232
  - spec/inputs/tcp_spec.rb
233
233
  - spec/spec_helper.rb
234
234
  - vendor/jar-dependencies/commons-io/commons-io/2.17.0/commons-io-2.17.0.jar
235
- - vendor/jar-dependencies/io/netty/netty-buffer/4.1.115.Final/netty-buffer-4.1.115.Final.jar
236
- - vendor/jar-dependencies/io/netty/netty-codec/4.1.115.Final/netty-codec-4.1.115.Final.jar
237
- - vendor/jar-dependencies/io/netty/netty-common/4.1.115.Final/netty-common-4.1.115.Final.jar
238
- - vendor/jar-dependencies/io/netty/netty-handler/4.1.115.Final/netty-handler-4.1.115.Final.jar
239
- - vendor/jar-dependencies/io/netty/netty-transport-native-unix-common/4.1.115.Final/netty-transport-native-unix-common-4.1.115.Final.jar
240
- - vendor/jar-dependencies/io/netty/netty-transport/4.1.115.Final/netty-transport-4.1.115.Final.jar
241
- - vendor/jar-dependencies/org/logstash/inputs/logstash-input-tcp/7.0.0/logstash-input-tcp-7.0.0.jar
235
+ - vendor/jar-dependencies/io/netty/netty-buffer/4.1.118.Final/netty-buffer-4.1.118.Final.jar
236
+ - vendor/jar-dependencies/io/netty/netty-codec/4.1.118.Final/netty-codec-4.1.118.Final.jar
237
+ - vendor/jar-dependencies/io/netty/netty-common/4.1.118.Final/netty-common-4.1.118.Final.jar
238
+ - vendor/jar-dependencies/io/netty/netty-handler/4.1.118.Final/netty-handler-4.1.118.Final.jar
239
+ - vendor/jar-dependencies/io/netty/netty-transport-native-unix-common/4.1.118.Final/netty-transport-native-unix-common-4.1.118.Final.jar
240
+ - vendor/jar-dependencies/io/netty/netty-transport/4.1.118.Final/netty-transport-4.1.118.Final.jar
241
+ - vendor/jar-dependencies/org/logstash/inputs/logstash-input-tcp/7.0.2/logstash-input-tcp-7.0.2.jar
242
242
  - version
243
- homepage: http://www.elastic.co/guide/en/logstash/current/index.html
243
+ homepage: https://elastic.co/logstash
244
244
  licenses:
245
245
  - Apache License (2.0)
246
246
  metadata: