logstash-input-http 3.8.0-java → 3.9.0-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 -0
- data/VERSION +1 -1
- data/lib/logstash-input-http_jars.rb +8 -8
- data/vendor/jar-dependencies/io/netty/netty-buffer/{4.1.100.Final/netty-buffer-4.1.100.Final.jar → 4.1.109.Final/netty-buffer-4.1.109.Final.jar} +0 -0
- data/vendor/jar-dependencies/io/netty/netty-codec/{4.1.100.Final/netty-codec-4.1.100.Final.jar → 4.1.109.Final/netty-codec-4.1.109.Final.jar} +0 -0
- data/vendor/jar-dependencies/io/netty/netty-codec-http/{4.1.100.Final/netty-codec-http-4.1.100.Final.jar → 4.1.109.Final/netty-codec-http-4.1.109.Final.jar} +0 -0
- data/vendor/jar-dependencies/io/netty/netty-common/{4.1.100.Final/netty-common-4.1.100.Final.jar → 4.1.109.Final/netty-common-4.1.109.Final.jar} +0 -0
- data/vendor/jar-dependencies/io/netty/netty-handler/{4.1.100.Final/netty-handler-4.1.100.Final.jar → 4.1.109.Final/netty-handler-4.1.109.Final.jar} +0 -0
- data/vendor/jar-dependencies/io/netty/netty-transport/{4.1.100.Final/netty-transport-4.1.100.Final.jar → 4.1.109.Final/netty-transport-4.1.109.Final.jar} +0 -0
- data/vendor/jar-dependencies/io/netty/netty-transport-native-unix-common/{4.1.100.Final/netty-transport-native-unix-common-4.1.100.Final.jar → 4.1.109.Final/netty-transport-native-unix-common-4.1.109.Final.jar} +0 -0
- data/vendor/jar-dependencies/org/logstash/plugins/input/http/logstash-input-http/{3.8.0/logstash-input-http-3.8.0.jar → 3.9.0/logstash-input-http-3.9.0.jar} +0 -0
- metadata +10 -10
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 74217102aecc19e33619a805a68ac6af233614012564115eb6bafdb1e480df09
|
|
4
|
+
data.tar.gz: d3d5df39ddcb57add037928dc872cfccddd8b8dd619a4d8825a9e460cedaf4c0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 69a8c331c62313c877f7a7b5171d2f86b24533e0acb8d31c76fca281c96af20f600e64d0266a933a04b867dd7b2e5089f90c6a5e621a7e3f916ce2c27ab5447d
|
|
7
|
+
data.tar.gz: f57a6869d9c5cd44931e1c93ad079129ad53fe49ddfd4d64fd166fc4d7ac0d6704dfe2853f3434250cd45bd0b6f5d7abc072c8715ec7f18841807e09845473ba
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## 3.9.0
|
|
2
|
+
- Netty boss and worker groups are separated [#178](https://github.com/logstash-plugins/logstash-input-http/pull/178)
|
|
3
|
+
As a result, when shutdown requested incoming connections are closed first and improved graceful shutdown
|
|
4
|
+
|
|
5
|
+
## 3.8.1
|
|
6
|
+
- bump netty to 4.1.109 [#173](https://github.com/logstash-plugins/logstash-input-http/pull/173)
|
|
7
|
+
|
|
1
8
|
## 3.8.0
|
|
2
9
|
- Fixed SSL Java KeyStore support [#171](https://github.com/logstash-plugins/logstash-input-http/pull/171)
|
|
3
10
|
- Added `ssl_keystore_type` configuration
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.
|
|
1
|
+
3.9.0
|
|
@@ -1,11 +1,11 @@
|
|
|
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-codec-http', '4.1.
|
|
7
|
-
require_jar('io.netty', 'netty-common', '4.1.
|
|
8
|
-
require_jar('io.netty', 'netty-transport', '4.1.
|
|
9
|
-
require_jar('io.netty', 'netty-handler', '4.1.
|
|
10
|
-
require_jar('io.netty', 'netty-transport-native-unix-common', '4.1.
|
|
11
|
-
require_jar('org.logstash.plugins.input.http', 'logstash-input-http', '3.
|
|
4
|
+
require_jar('io.netty', 'netty-buffer', '4.1.109.Final')
|
|
5
|
+
require_jar('io.netty', 'netty-codec', '4.1.109.Final')
|
|
6
|
+
require_jar('io.netty', 'netty-codec-http', '4.1.109.Final')
|
|
7
|
+
require_jar('io.netty', 'netty-common', '4.1.109.Final')
|
|
8
|
+
require_jar('io.netty', 'netty-transport', '4.1.109.Final')
|
|
9
|
+
require_jar('io.netty', 'netty-handler', '4.1.109.Final')
|
|
10
|
+
require_jar('io.netty', 'netty-transport-native-unix-common', '4.1.109.Final')
|
|
11
|
+
require_jar('org.logstash.plugins.input.http', 'logstash-input-http', '3.9.0')
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: logstash-input-http
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.
|
|
4
|
+
version: 3.9.0
|
|
5
5
|
platform: java
|
|
6
6
|
authors:
|
|
7
7
|
- Elastic
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2024-08-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -189,14 +189,14 @@ files:
|
|
|
189
189
|
- spec/fixtures/certs/openssl.cnf
|
|
190
190
|
- spec/inputs/helpers.rb
|
|
191
191
|
- spec/inputs/http_spec.rb
|
|
192
|
-
- vendor/jar-dependencies/io/netty/netty-buffer/4.1.
|
|
193
|
-
- vendor/jar-dependencies/io/netty/netty-codec-http/4.1.
|
|
194
|
-
- vendor/jar-dependencies/io/netty/netty-codec/4.1.
|
|
195
|
-
- vendor/jar-dependencies/io/netty/netty-common/4.1.
|
|
196
|
-
- vendor/jar-dependencies/io/netty/netty-handler/4.1.
|
|
197
|
-
- vendor/jar-dependencies/io/netty/netty-transport-native-unix-common/4.1.
|
|
198
|
-
- vendor/jar-dependencies/io/netty/netty-transport/4.1.
|
|
199
|
-
- vendor/jar-dependencies/org/logstash/plugins/input/http/logstash-input-http/3.
|
|
192
|
+
- vendor/jar-dependencies/io/netty/netty-buffer/4.1.109.Final/netty-buffer-4.1.109.Final.jar
|
|
193
|
+
- vendor/jar-dependencies/io/netty/netty-codec-http/4.1.109.Final/netty-codec-http-4.1.109.Final.jar
|
|
194
|
+
- vendor/jar-dependencies/io/netty/netty-codec/4.1.109.Final/netty-codec-4.1.109.Final.jar
|
|
195
|
+
- vendor/jar-dependencies/io/netty/netty-common/4.1.109.Final/netty-common-4.1.109.Final.jar
|
|
196
|
+
- vendor/jar-dependencies/io/netty/netty-handler/4.1.109.Final/netty-handler-4.1.109.Final.jar
|
|
197
|
+
- vendor/jar-dependencies/io/netty/netty-transport-native-unix-common/4.1.109.Final/netty-transport-native-unix-common-4.1.109.Final.jar
|
|
198
|
+
- vendor/jar-dependencies/io/netty/netty-transport/4.1.109.Final/netty-transport-4.1.109.Final.jar
|
|
199
|
+
- vendor/jar-dependencies/org/logstash/plugins/input/http/logstash-input-http/3.9.0/logstash-input-http-3.9.0.jar
|
|
200
200
|
homepage: http://www.elastic.co/guide/en/logstash/current/index.html
|
|
201
201
|
licenses:
|
|
202
202
|
- Apache License (2.0)
|