logstash-output-http 3.0.1 → 3.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8d4ca5f19f9e6c5d4102ab8be984df5fca0c21c5
4
- data.tar.gz: a6c7f043a28c89fea7fc51b72aba319edbcdd3d8
3
+ metadata.gz: 166795862fd592911c1662e2b5413de11f4824ba
4
+ data.tar.gz: 028265896afc48b3e0e0c806007c523eec50ae71
5
5
  SHA512:
6
- metadata.gz: de92e7dddb7a677fa15e22dad8d6f2af1b3593802caf9177fa845188b83dd04b2d9129a4b841a443dc305b10427c297fc130f5ebeff039003c7267ae69bab93d
7
- data.tar.gz: 0086bfda541c86ddeb88cfb2dae0472a61c6f3c8796f2d516f26960dd5854f41964b3e6993cbb63ce73090a8336854cdd7a43df0a672a23b01826fc9d4dc8886
6
+ metadata.gz: 1ca69a7fd82c6738025fd25eba6d2e3e728035e2e9d52bbf061fba6a4675392dc0d7744536546ade2b6564259806b42f80d7d7230a1755697548aea897d384fb
7
+ data.tar.gz: 869ce7b82b48ed382b602c3188e425e45a771ce2a7274aba3dba2670bee009198d5879020cf5b3e46a58a9d1b9c2e61591136698732d6372b9a936ce05aa5c92
@@ -1,11 +1,21 @@
1
+ ## 3.1.1
2
+ - Relax constraint on logstash-core-plugin-api to >= 1.60 <= 2.99
3
+
4
+ ## 3.1.0
5
+ - breaking,config: Remove deprecated config 'verify_ssl'. Please use 'ssl_certificate_validation'.
6
+
1
7
  ## 3.0.1
2
- - Republish all the gems under jruby.
8
+ - Republish all the gems under jruby.
9
+
3
10
  ## 3.0.0
4
- - Update the plugin to the version 2.0 of the plugin api, this change is required for Logstash 5.0 compatibility. See https://github.com/elastic/logstash/issues/5141
5
- # 2.1.3
6
- - Depend on logstash-core-plugin-api instead of logstash-core, removing the need to mass update plugins on major releases of logstash
7
- # 2.1.2
8
- - New dependency requirements for logstash-core for the 5.0 release
11
+ - Update the plugin to the version 2.0 of the plugin api, this change is required for Logstash 5.0 compatibility. See https://github.com/elastic/logstash/issues/5141
12
+
13
+ ## 2.1.3
14
+ - Depend on logstash-core-plugin-api instead of logstash-core, removing the need to mass update plugins on major releases of logstash
15
+
16
+ ## 2.1.2
17
+ - New dependency requirements for logstash-core for the 5.0 release
18
+
9
19
  ## 2.1.1
10
20
  - Require http_client mixin with better keepalive handling
11
21
 
@@ -25,7 +35,8 @@
25
35
  instead of using Thread.raise on the plugins' threads. Ref: https://github.com/elastic/logstash/pull/3895
26
36
  - Dependency on logstash-core update to 2.0
27
37
 
28
- * 1.1.0
29
- - Concurrent execution
30
- - Add many HTTP options via the http_client mixin
31
- - Switch to manticore as HTTP Client
38
+ ## 1.1.0
39
+ - Concurrent execution
40
+ - Add many HTTP options via the http_client mixin
41
+ - Switch to manticore as HTTP Client
42
+
@@ -26,9 +26,6 @@ class LogStash::Outputs::Http < LogStash::Outputs::Base
26
26
  # URL to use
27
27
  config :url, :validate => :string, :required => :true
28
28
 
29
- # DEPRECATED. Set 'ssl_certificate_validation' instead
30
- config :verify_ssl, :validate => :boolean, :default => true, :deprecated => "Please use 'ssl_certificate_validation' instead. This option will be removed in a future release!"
31
-
32
29
  # The HTTP Verb. One of "put", "post", "patch", "delete", "get", "head"
33
30
  config :http_method, :validate => VALID_METHODS, :required => :true
34
31
 
@@ -65,8 +62,6 @@ class LogStash::Outputs::Http < LogStash::Outputs::Base
65
62
  config :message, :validate => :string
66
63
 
67
64
  def register
68
- # Handle this deprecated option. TODO: remove the option
69
- @ssl_certificate_validation = @verify_ssl if @verify_ssl
70
65
  @http_method = @http_method.to_sym
71
66
 
72
67
  # We count outstanding requests with this queue
@@ -1,7 +1,7 @@
1
1
  Gem::Specification.new do |s|
2
2
 
3
3
  s.name = 'logstash-output-http'
4
- s.version = '3.0.1'
4
+ s.version = '3.1.1'
5
5
  s.licenses = ['Apache License (2.0)']
6
6
  s.summary = "This output lets you `PUT` or `POST` events to a generic HTTP(S) endpoint"
7
7
  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"
@@ -20,7 +20,7 @@ Gem::Specification.new do |s|
20
20
  s.metadata = { "logstash_plugin" => "true", "logstash_group" => "output" }
21
21
 
22
22
  # Gem dependencies
23
- s.add_runtime_dependency "logstash-core-plugin-api", "~> 2.0"
23
+ s.add_runtime_dependency "logstash-core-plugin-api", ">= 1.60", "<= 2.99"
24
24
  s.add_runtime_dependency "logstash-mixin-http_client", ">= 2.2.1", "< 5.0.0"
25
25
 
26
26
  s.add_development_dependency 'logstash-devutils'
metadata CHANGED
@@ -1,29 +1,35 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-output-http
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1
4
+ version: 3.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elastic
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-05-09 00:00:00.000000000 Z
11
+ date: 2016-07-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
15
15
  requirements:
16
- - - "~>"
16
+ - - ">="
17
+ - !ruby/object:Gem::Version
18
+ version: '1.60'
19
+ - - "<="
17
20
  - !ruby/object:Gem::Version
18
- version: '2.0'
21
+ version: '2.99'
19
22
  name: logstash-core-plugin-api
20
23
  prerelease: false
21
24
  type: :runtime
22
25
  version_requirements: !ruby/object:Gem::Requirement
23
26
  requirements:
24
- - - "~>"
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ version: '1.60'
30
+ - - "<="
25
31
  - !ruby/object:Gem::Version
26
- version: '2.0'
32
+ version: '2.99'
27
33
  - !ruby/object:Gem::Dependency
28
34
  requirement: !ruby/object:Gem::Requirement
29
35
  requirements:
@@ -123,7 +129,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
123
129
  version: '0'
124
130
  requirements: []
125
131
  rubyforge_project:
126
- rubygems_version: 2.4.8
132
+ rubygems_version: 2.6.3
127
133
  signing_key:
128
134
  specification_version: 4
129
135
  summary: This output lets you `PUT` or `POST` events to a generic HTTP(S) endpoint