logstash-input-http_bold 3.5.4-java → 3.6.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 70d2b930ba29e150b11fc111904c29aa1eaeea7389edf294165215d3914e6db8
4
- data.tar.gz: 0f1b6243f198178e4fed5a26cb6392f39cb81c2056700976359e79b84cd74034
3
+ metadata.gz: ed590ff2f7fa87bdb02eef98271a84e65c8edb1d8edc67abfd44e3f2f4272925
4
+ data.tar.gz: e17538afdbaf9650fca472f259e2fe6f9742c396ed3ae3a7636eff0437287c3b
5
5
  SHA512:
6
- metadata.gz: 27c6e476d957911d55ffbc48e0c078cfb616ffef8e1dfbdb41b2f8383e8d70ccf715ff5b1f0a73e9a89581b8d009533d08df45d6da078627551517cac48beda1
7
- data.tar.gz: 86a4a7587d6b3166247434a42b2d78b4199ae235080089742c9417e8a82621138c3e799240d113a270df777e1d1cd507db598b13626f8b9307f36d5500d2c7f9
6
+ metadata.gz: 15eef8831ef140212121c4c1560dcde8e89cebbe1b0641e3b2695bf1a8262f497a3eaa24951a09898628584c4ae3e1fc5c36474feca140f3749ced73cca22155
7
+ data.tar.gz: 45d975d48961127f96b46c76c5f18b4e4cfc680fa317b7c00aa840225bf70fccba348be9da8d5ed1980d3a0c04a2b25e1f349f83a93fd664bc0dd7fde1d419dc
data/Gemfile CHANGED
@@ -2,7 +2,7 @@ source 'https://rubygems.org'
2
2
 
3
3
  gemspec
4
4
 
5
- logstash_path = ENV["LOGSTASH_PATH"] || "../../logstash"
5
+ logstash_path = ENV["LOGSTASH_PATH"] || "../logstash"
6
6
  use_logstash_source = ENV["LOGSTASH_SOURCE"] && ENV["LOGSTASH_SOURCE"].to_s == "1"
7
7
 
8
8
  if Dir.exist?(logstash_path) && use_logstash_source
data/VERSION CHANGED
@@ -1 +1 @@
1
- 3.5.4
1
+ 3.6.0
@@ -2,7 +2,7 @@
2
2
  require "logstash/inputs/base"
3
3
  require "logstash/namespace"
4
4
  require "stud/interval"
5
- require "logstash-input-http_bold_jars"
5
+ require "logstash-input-http_jars"
6
6
  require "logstash/plugin_mixins/ecs_compatibility_support"
7
7
 
8
8
  # Using this input you can receive single or multiline events over http(s).
@@ -20,9 +20,9 @@ require "logstash/plugin_mixins/ecs_compatibility_support"
20
20
  # This plugin supports standard HTTP basic authentication headers to identify the requester.
21
21
  # You can pass in an username, password combination while sending data to this input
22
22
  #
23
- # You can also setup SSL and send data securely over https, with an option of validating
24
- # the client's certificate. Currently, the certificate setup is through
25
- # https://docs.oracle.com/cd/E19509-01/820-3503/ggfen/index.html[Java Keystore
23
+ # You can also setup SSL and send data securely over https, with an option of validating
24
+ # the client's certificate. Currently, the certificate setup is through
25
+ # https://docs.oracle.com/cd/E19509-01/820-3503/ggfen/index.html[Java Keystore
26
26
  # format]
27
27
  #
28
28
  class LogStash::Inputs::Http < LogStash::Inputs::Base
@@ -3,4 +3,5 @@
3
3
  require 'jar_dependencies'
4
4
  require_jar('io.netty', 'netty-all', '4.1.65.Final')
5
5
  require_jar('org.apache.logging.log4j', 'log4j-api', '2.11.1')
6
- require_jar('org.logstash.plugins.input.http_bold', 'logstash-input-http_bold', '3.5.4')
6
+ require_jar('org.json', 'json', '20210307')
7
+ require_jar('org.logstash.plugins.input.http_bold', 'logstash-input-http_bold', '3.6.0')
@@ -0,0 +1,6 @@
1
+ # AUTOGENERATED BY THE GRADLE SCRIPT. DO NOT EDIT.
2
+
3
+ require 'jar_dependencies'
4
+ require_jar('io.netty', 'netty-all', '4.1.65.Final')
5
+ require_jar('org.apache.logging.log4j', 'log4j-api', '2.11.1')
6
+ require_jar('org.logstash.plugins.input.http', 'logstash-input-http', '3.4.1')
File without changes
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-input-http_bold
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.5.4
4
+ version: 3.6.0
5
5
  platform: java
6
6
  authors:
7
7
  - Elastic
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-08-10 00:00:00.000000000 Z
11
+ date: 2021-11-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
@@ -151,19 +151,19 @@ files:
151
151
  - VERSION
152
152
  - docs/index.asciidoc
153
153
  - lib/logstash-input-http_bold_jars.rb
154
+ - lib/logstash-input-http_jars.rb
154
155
  - lib/logstash/inputs/http/message_handler.rb
155
156
  - lib/logstash/inputs/http/tls.rb
156
157
  - lib/logstash/inputs/http_bold.rb
157
158
  - lib/logstash/util/http_compressed_requests.rb
158
159
  - lib/tasks/build.rake
159
160
  - logstash-input-http_bold.gemspec
160
- - spec/inputs/http_bold_spec.rb
161
+ - spec/inputs/http_bolspec.rb
161
162
  - vendor/jar-dependencies/io/netty/netty-all/4.1.65.Final/netty-all-4.1.65.Final.jar
162
163
  - vendor/jar-dependencies/org/apache/logging/log4j/log4j-api/2.11.1/log4j-api-2.11.1.jar
163
- - vendor/jar-dependencies/org/logstash/plugins/input/http_bold/logstash-input-http_bold/3.4.1/logstash-input-http_bold-3.4.1.jar
164
- - vendor/jar-dependencies/org/logstash/plugins/input/http_bold/logstash-input-http_bold/3.5.1/logstash-input-http_bold-3.5.1.jar
165
- - vendor/jar-dependencies/org/logstash/plugins/input/http_bold/logstash-input-http_bold/3.5.3/logstash-input-http_bold-3.5.3.jar
166
- - vendor/jar-dependencies/org/logstash/plugins/input/http_bold/logstash-input-http_bold/3.5.4/logstash-input-http_bold-3.5.4.jar
164
+ - vendor/jar-dependencies/org/json/json/20210307/json-20210307.jar
165
+ - vendor/jar-dependencies/org/logstash/plugins/input/http_bold/logstash-input-http_bold/3.5.0/logstash-input-http_bold-3.5.0.jar
166
+ - vendor/jar-dependencies/org/logstash/plugins/input/http_bold/logstash-input-http_bold/3.6.0/logstash-input-http_bold-3.6.0.jar
167
167
  homepage: http://www.elastic.co/guide/en/logstash/current/index.html
168
168
  licenses:
169
169
  - Apache License (2.0)
@@ -191,4 +191,4 @@ signing_key:
191
191
  specification_version: 4
192
192
  summary: Receives events over HTTP or HTTPS
193
193
  test_files:
194
- - spec/inputs/http_bold_spec.rb
194
+ - spec/inputs/http_bolspec.rb