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 +4 -4
- data/CHANGELOG.md +7 -1
- data/lib/logstash/inputs/tcp.rb +1 -1
- data/lib/logstash-input-tcp_jars.rb +7 -7
- data/logstash-input-tcp.gemspec +1 -1
- data/vendor/jar-dependencies/io/netty/netty-buffer/{4.1.115.Final/netty-buffer-4.1.115.Final.jar → 4.1.118.Final/netty-buffer-4.1.118.Final.jar} +0 -0
- data/vendor/jar-dependencies/io/netty/netty-codec/{4.1.115.Final/netty-codec-4.1.115.Final.jar → 4.1.118.Final/netty-codec-4.1.118.Final.jar} +0 -0
- data/vendor/jar-dependencies/io/netty/netty-common/{4.1.115.Final/netty-common-4.1.115.Final.jar → 4.1.118.Final/netty-common-4.1.118.Final.jar} +0 -0
- data/vendor/jar-dependencies/io/netty/netty-handler/{4.1.115.Final/netty-handler-4.1.115.Final.jar → 4.1.118.Final/netty-handler-4.1.118.Final.jar} +0 -0
- data/vendor/jar-dependencies/io/netty/netty-transport/{4.1.115.Final/netty-transport-4.1.115.Final.jar → 4.1.118.Final/netty-transport-4.1.118.Final.jar} +0 -0
- data/vendor/jar-dependencies/io/netty/netty-transport-native-unix-common/{4.1.115.Final/netty-transport-native-unix-common-4.1.115.Final.jar → 4.1.118.Final/netty-transport-native-unix-common-4.1.118.Final.jar} +0 -0
- data/vendor/jar-dependencies/org/logstash/inputs/logstash-input-tcp/7.0.2/logstash-input-tcp-7.0.2.jar +0 -0
- data/version +1 -1
- metadata +10 -10
- data/vendor/jar-dependencies/org/logstash/inputs/logstash-input-tcp/7.0.0/logstash-input-tcp-7.0.0.jar +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b6a2a72435fdc1144bd70efbdfbc7579a3c1902cf4f9fc7794dad83e48efa851
|
|
4
|
+
data.tar.gz: 86c27915d6edccaefabd40fb74ea3ce69048bbf6ad711179a141cf79e333c4c3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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)
|
data/lib/logstash/inputs/tcp.rb
CHANGED
|
@@ -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.
|
|
5
|
-
require_jar('io.netty', 'netty-codec', '4.1.
|
|
6
|
-
require_jar('io.netty', 'netty-common', '4.1.
|
|
7
|
-
require_jar('io.netty', 'netty-transport', '4.1.
|
|
8
|
-
require_jar('io.netty', 'netty-handler', '4.1.
|
|
9
|
-
require_jar('io.netty', 'netty-transport-native-unix-common', '4.1.
|
|
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.
|
|
12
|
+
require_jar('org.logstash.inputs', 'logstash-input-tcp', '7.0.2')
|
data/logstash-input-tcp.gemspec
CHANGED
|
@@ -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 = "
|
|
9
|
+
s.homepage = "https://elastic.co/logstash"
|
|
10
10
|
s.platform = "java"
|
|
11
11
|
s.require_paths = ["lib", "vendor/jar-dependencies"]
|
|
12
12
|
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
data/version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
7.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.
|
|
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-
|
|
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.
|
|
236
|
-
- vendor/jar-dependencies/io/netty/netty-codec/4.1.
|
|
237
|
-
- vendor/jar-dependencies/io/netty/netty-common/4.1.
|
|
238
|
-
- vendor/jar-dependencies/io/netty/netty-handler/4.1.
|
|
239
|
-
- vendor/jar-dependencies/io/netty/netty-transport-native-unix-common/4.1.
|
|
240
|
-
- vendor/jar-dependencies/io/netty/netty-transport/4.1.
|
|
241
|
-
- vendor/jar-dependencies/org/logstash/inputs/logstash-input-tcp/7.0.
|
|
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:
|
|
243
|
+
homepage: https://elastic.co/logstash
|
|
244
244
|
licenses:
|
|
245
245
|
- Apache License (2.0)
|
|
246
246
|
metadata:
|