logstash-mixin-rabbitmq_connection 4.3.1-java → 5.0.0-java

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: 26f54a00e592feb7482e264f86ebbce0f024ba5e
4
- data.tar.gz: f6b32eae17f97fe9d45e9440c79c5525708596ba
3
+ metadata.gz: 369b7b8885462316ac663ab74a818172be5717eb
4
+ data.tar.gz: 668e13d9c466042d75e471ec984c352f5dfe539e
5
5
  SHA512:
6
- metadata.gz: cf4c12a87717a0bd5f71cfb4c0ec1bbe7bcbc78cd37ba888886c772969f65ca567fda738ccda40720e4bf44cab7c4d95f9c13c2be0fb6540bc1338f35f1879e0
7
- data.tar.gz: b8208e188fd1c500e3530eac01e02f7bc72b61a5a21286814560c94f0d47642a80f9ffc770d90d67c44725559e56d7a4d9e531219ccf07bd7bcaac2c9dfc04ae
6
+ metadata.gz: 5ab6a522eb401c004e1e13d7fd766e03ad2d32a2ac8b733e02cfc26c819a42a9c11603d3e7b04e5d409641f58b48ad0e2be19e98ae9f2d992ce3fe3b7783188c
7
+ data.tar.gz: 2ed7a7060b2d521ea6484665ca87d79fef6fae8a897381a7be1cd111295c151f8a240fc1ac6cf2f507276392d45b1962ed3335a6703b6d0ca712ab02652a9a16
data/.travis.yml CHANGED
@@ -11,6 +11,8 @@ matrix:
11
11
  include:
12
12
  - rvm: jruby-9.1.10.0
13
13
  env: LOGSTASH_BRANCH=master
14
+ - rvm: jruby-9.1.10.0
15
+ env: LOGSTASH_BRANCH=6.x
14
16
  - rvm: jruby-1.7.25
15
- env: LOGSTASH_BRANCH=5.x
16
- fast_finish: true
17
+ env: LOGSTASH_BRANCH=5.6
18
+ fast_finish: true
data/CHANGELOG CHANGED
@@ -1,3 +1,6 @@
1
+ * 5.0.0
2
+ - Mark deprecated options `debug`, `tls_certificate_path` and `tls_certificate_password` as obsolete
3
+
1
4
  * 4.3.0
2
5
  - Bump march hare to 3.0.0
3
6
  * 4.2.2
@@ -64,8 +64,7 @@ module LogStash
64
64
  # Password for the encrypted PKCS12 (.p12) certificate file specified in ssl_certificate_path
65
65
  config :ssl_certificate_password, :validate => :string
66
66
 
67
- # Enable or disable logging
68
- config :debug, :validate => :boolean, :default => false, :deprecated => "Use the logstash --debug flag for this instead."
67
+ config :debug, :validate => :boolean, :obsolete => "Use the logstash --debug flag for this instead."
69
68
 
70
69
  # Set this to automatically recover from a broken connection. You almost certainly don't want to override this!!!
71
70
  config :automatic_recovery, :validate => :boolean, :default => true
@@ -83,10 +82,10 @@ module LogStash
83
82
  config :passive, :validate => :boolean, :default => false
84
83
 
85
84
  # TLS certifcate path
86
- config :tls_certificate_path, :validate => :path, :deprecated => true
85
+ config :tls_certificate_path, :validate => :path, :obsolete => "This setting is obsolete. Use ssl_certificate_path instead"
87
86
 
88
87
  # TLS certificate password
89
- config :tls_certificate_password, :validate => :string, :deprecated => true
88
+ config :tls_certificate_password, :validate => :string, :obsolete => "This setting is obsolete. Use ssl_certificate_password instead"
90
89
 
91
90
  # Extra queue arguments as an array.
92
91
  # To make a RabbitMQ queue mirrored, use: `{"x-ha-policy" => "all"}`
@@ -121,8 +120,8 @@ module LogStash
121
120
  if @ssl
122
121
  s[:tls] = @ssl_version
123
122
 
124
- cert_path = @ssl_certificate_path || @tls_certificate_path
125
- cert_pass = @ssl_certificate_password || @tls_certificate_password
123
+ cert_path = @ssl_certificate_path
124
+ cert_pass = @ssl_certificate_password
126
125
 
127
126
  if !!cert_path ^ !!cert_pass
128
127
  raise LogStash::ConfigurationError, "RabbitMQ requires both ssl_certificate_path AND ssl_certificate_password to be set!"
@@ -1,7 +1,7 @@
1
1
 
2
2
  Gem::Specification.new do |s|
3
3
  s.name = 'logstash-mixin-rabbitmq_connection'
4
- s.version = '4.3.1'
4
+ s.version = '5.0.0'
5
5
  s.licenses = ['Apache License (2.0)']
6
6
  s.summary = "Common functionality for RabbitMQ plugins"
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"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-mixin-rabbitmq_connection
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.3.1
4
+ version: 5.0.0
5
5
  platform: java
6
6
  authors:
7
7
  - Elastic
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-06-23 00:00:00.000000000 Z
11
+ date: 2017-08-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement