logstash-input-http 3.4.1-java → 3.4.5-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 +14 -0
- data/VERSION +1 -1
- data/docs/index.asciidoc +2 -2
- data/lib/logstash-input-http_jars.rb +1 -2
- data/vendor/jar-dependencies/org/logstash/plugins/input/http/logstash-input-http/{3.4.1/logstash-input-http-3.4.1.jar → 3.4.5/logstash-input-http-3.4.5.jar} +0 -0
- metadata +4 -6
- data/vendor/jar-dependencies/org/apache/logging/log4j/log4j-api/2.11.1/log4j-api-2.11.1.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: '085e110f3e62b4d597b6b1301e88238bd088c74f79d6f8734699ddb7f8eee66a'
|
|
4
|
+
data.tar.gz: 71545bdfa66650fde88c512aa658170b1ea1715b5c86d30f43160280fafedcc3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 17286862fe0cef881635ca5cefae67377943ed0cf186954104ad2cd23eb33ac80de0b00f26974e064fcc7b993795983fe5822e6c1710f7dc7454ef63088a63c3
|
|
7
|
+
data.tar.gz: 5bbc35f8c05b5b2a4803493754b4eac66043d1e753b2efc9d294f47f401ed8a9f372cab76454a6c06aa1a40c27d3e28b3d7229f80bc60d2d235fe3c81d1d0093
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## 3.4.5
|
|
2
|
+
- Build: do not package log4j-api dependency [#149](https://github.com/logstash-plugins/logstash-input-http/pull/149).
|
|
3
|
+
Logstash provides the log4j framework and the dependency is not needed except testing and compiling.
|
|
4
|
+
|
|
5
|
+
## 3.4.4
|
|
6
|
+
- Update log4j dependency to 2.17.0
|
|
7
|
+
|
|
8
|
+
## 3.4.3
|
|
9
|
+
- Update log4j dependency to 2.15.0
|
|
10
|
+
- Fix: update to Gradle 7 [#145](https://github.com/logstash-plugins/logstash-input-http/pull/145)
|
|
11
|
+
|
|
12
|
+
## 3.4.2
|
|
13
|
+
- Docs: added `v8` as an acceptable value for `ecs_compatibility` [#142](https://github.com/logstash-plugins/logstash-input-http/pull/142)
|
|
14
|
+
|
|
1
15
|
## 3.4.1
|
|
2
16
|
- Changed jar dependencies to reflect newer versions [#140](https://github.com/logstash-plugins/logstash-input-http/pull/140)
|
|
3
17
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.4.
|
|
1
|
+
3.4.5
|
data/docs/index.asciidoc
CHANGED
|
@@ -41,7 +41,7 @@ When ECS is enabled, we can ensure a pipeline maintains access to this metadata
|
|
|
41
41
|
Here’s how ECS compatibility mode affects output.
|
|
42
42
|
[cols="<l,<l,e,<e"]
|
|
43
43
|
|=======================================================================
|
|
44
|
-
| ECS disabled | ECS v1 | Availability | Description
|
|
44
|
+
| ECS `disabled` | ECS `v1`,`v8` | Availability | Description
|
|
45
45
|
|
|
46
46
|
| [host] | [host][ip] | Always | Host IP address
|
|
47
47
|
| [headers] | [@metadata][input][http][request][headers] | Always | Complete HTTP headers
|
|
@@ -144,7 +144,7 @@ The list of ciphers suite to use, listed by priorities.
|
|
|
144
144
|
* Value type is <<string,string>>
|
|
145
145
|
* Supported values are:
|
|
146
146
|
** `disabled`: unstructured connection metadata added at root level
|
|
147
|
-
** `v1`: headers added under `[@metadata][http][header]`. Some are copied to structured ECS fields `http`, `url`, `user_agent` and `host`
|
|
147
|
+
** `v1`,`v8`: headers added under `[@metadata][http][header]`. Some are copied to structured ECS fields `http`, `url`, `user_agent` and `host`
|
|
148
148
|
|
|
149
149
|
Controls this plugin's compatibility with the
|
|
150
150
|
{ecs-ref}[Elastic Common Schema (ECS)].
|
|
@@ -2,5 +2,4 @@
|
|
|
2
2
|
|
|
3
3
|
require 'jar_dependencies'
|
|
4
4
|
require_jar('io.netty', 'netty-all', '4.1.65.Final')
|
|
5
|
-
require_jar('org.
|
|
6
|
-
require_jar('org.logstash.plugins.input.http', 'logstash-input-http', '3.4.1')
|
|
5
|
+
require_jar('org.logstash.plugins.input.http', 'logstash-input-http', '3.4.5')
|
|
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.
|
|
4
|
+
version: 3.4.5
|
|
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: 2022-01-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -159,8 +159,7 @@ files:
|
|
|
159
159
|
- logstash-input-http.gemspec
|
|
160
160
|
- spec/inputs/http_spec.rb
|
|
161
161
|
- vendor/jar-dependencies/io/netty/netty-all/4.1.65.Final/netty-all-4.1.65.Final.jar
|
|
162
|
-
- vendor/jar-dependencies/org/
|
|
163
|
-
- vendor/jar-dependencies/org/logstash/plugins/input/http/logstash-input-http/3.4.1/logstash-input-http-3.4.1.jar
|
|
162
|
+
- vendor/jar-dependencies/org/logstash/plugins/input/http/logstash-input-http/3.4.5/logstash-input-http-3.4.5.jar
|
|
164
163
|
homepage: http://www.elastic.co/guide/en/logstash/current/index.html
|
|
165
164
|
licenses:
|
|
166
165
|
- Apache License (2.0)
|
|
@@ -183,8 +182,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
183
182
|
- !ruby/object:Gem::Version
|
|
184
183
|
version: '0'
|
|
185
184
|
requirements: []
|
|
186
|
-
|
|
187
|
-
rubygems_version: 2.6.13
|
|
185
|
+
rubygems_version: 3.1.6
|
|
188
186
|
signing_key:
|
|
189
187
|
specification_version: 4
|
|
190
188
|
summary: Receives events over HTTP or HTTPS
|