logstash-output-redis 3.0.1 → 3.0.2

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: 2e83934b7296b6cf493f4e58a55458e0f7e9ab96
4
- data.tar.gz: e33ed2a4fda0fd60b445e4525f838de7498a2d8d
3
+ metadata.gz: 8ec297a211565f0c3305d9039e091c6e55d34a97
4
+ data.tar.gz: 5fe9fb271101637b9a8c352abad47e4d5c53234d
5
5
  SHA512:
6
- metadata.gz: b5c57a983a604d3f515c4855bf6c8e6063925ba75100cf0a880c71be65393b068a33d7dfe2e7a2f45c870bf4c8c81b2bf8712206debf237230c778833f32b601
7
- data.tar.gz: 1fb2f150282246b30960511b3f6790824358b3ad4a634a491c23a74e23cfaf8606983d3c921c097e35ad527aa4df375936d8c5f2051e1721ddd6acb75ad40819
6
+ metadata.gz: f97f395b58294b7aaa421e9996118adedddbc8273762802a6a010691f32c5b573adf0b4fb0a6c7cce845c9393a8d9828d0f954bd412cc191192c55ce0f54d08f
7
+ data.tar.gz: e9fa34b5f5f4d9d03d4ad15606fb848de6e3a27dc9b72b7134330f7477b3710c9ed0a7b2e7fc0a07cde8855c1a160fe302147d485bc8c30494e8bd2f1128d04c
@@ -1,3 +1,6 @@
1
+ ## 3.0.2
2
+ - Relax constraint on logstash-core-plugin-api to >= 1.60 <= 2.99
3
+
1
4
  ## 3.0.1
2
5
  - Republish all the gems under jruby.
3
6
  ## 3.0.0
@@ -26,6 +26,8 @@ class LogStash::Outputs::Redis < LogStash::Outputs::Base
26
26
 
27
27
  # The hostname(s) of your Redis server(s). Ports may be specified on any
28
28
  # hostname, which will override the global port config.
29
+ # If the hosts list is an array, Logstash will pick one random host to connect to,
30
+ # if that host is disconnected it will then pick another.
29
31
  #
30
32
  # For example:
31
33
  # [source,ruby]
@@ -1,7 +1,7 @@
1
1
  Gem::Specification.new do |s|
2
2
 
3
3
  s.name = 'logstash-output-redis'
4
- s.version = '3.0.1'
4
+ s.version = '3.0.2'
5
5
  s.licenses = ['Apache License (2.0)']
6
6
  s.summary = "This output will send events to a Redis queue using RPUSH"
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
 
25
25
  s.add_runtime_dependency 'redis'
26
26
  s.add_runtime_dependency 'stud'
metadata CHANGED
@@ -1,29 +1,35 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-output-redis
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1
4
+ version: 3.0.2
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:
@@ -146,7 +152,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
146
152
  version: '0'
147
153
  requirements: []
148
154
  rubyforge_project:
149
- rubygems_version: 2.4.8
155
+ rubygems_version: 2.6.3
150
156
  signing_key:
151
157
  specification_version: 4
152
158
  summary: This output will send events to a Redis queue using RPUSH