logstash-output-redis 4.0.4 → 5.0.0

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
  SHA256:
3
- metadata.gz: 03434cdc5a9abfc298250ae6bef7f085ce2732d9f7b6382f6f8f26362ce79a90
4
- data.tar.gz: a0146cd87f5d475de9bb420eea209926bf6aee2635006bedcb8c6dfcdb279920
3
+ metadata.gz: 0c7385de98085cafd1f511b497d2211f6ef655114b15ca96855eec0e8ab769f4
4
+ data.tar.gz: d951d57eb12b14bf066a690d692b63d7341ba45e091c754c188c5b312bc90cf2
5
5
  SHA512:
6
- metadata.gz: 679c2d0aa20058aaaaa6bf95bb959e38ee454c461acf9daa9beebe366e33e95fcc4ad79b92a1c87b5fb9180aeb2f03546b5a974b4f7a13f64cc6a212212ebda7
7
- data.tar.gz: '08cfcd4df976cf98dc6a4e5b2af9617d87debee595bafbeef97ad7799e0b9c98176b996b25f3dd3c156f5340e51c97b19bbe70cfd5f4bea4690f6be149cb66d5'
6
+ metadata.gz: 952f1e72f4fda66092b8a49427a1b8b86744749d2051423bcd1fd8b54181f6bb977c505f58cf561a4543d58e9358e0cd7876cb14680f0e49b1f908c57ae8a5d8
7
+ data.tar.gz: 71988a4a0fcca80810c83941310c728a11984bcd527e78904c583a02e1527ede5b753653e05549f094109c9d82a462f2ce6f574eea20761b520a70c2d9b615af
@@ -1,3 +1,7 @@
1
+ ## 5.0.0
2
+ - Removed obsolete fields `queue` and `name`
3
+ - Changed major version of redis library dependency to 4.x
4
+
1
5
  ## 4.0.4
2
6
  - Docs: Set the default_codec doc attribute.
3
7
 
@@ -20,9 +20,6 @@ class LogStash::Outputs::Redis < LogStash::Outputs::Base
20
20
 
21
21
  default :codec, "json"
22
22
 
23
- # Name is used for logging in case there are multiple instances.
24
- config :name, :validate => :string, :obsolete => "This option is obsolete"
25
-
26
23
  # The hostname(s) of your Redis server(s). Ports may be specified on any
27
24
  # hostname, which will override the global port config.
28
25
  # If the hosts list is an array, Logstash will pick one random host to connect to,
@@ -50,8 +47,6 @@ class LogStash::Outputs::Redis < LogStash::Outputs::Base
50
47
  # Password to authenticate with. There is no authentication by default.
51
48
  config :password, :validate => :password
52
49
 
53
- config :queue, :validate => :string, :obsolete => "This option is obsolete. Use `key` and `data_type`."
54
-
55
50
  # The name of a Redis list or channel. Dynamic names are
56
51
  # valid here, for example `logstash-%{type}`.
57
52
  config :key, :validate => :string, :required => true
@@ -1,7 +1,7 @@
1
1
  Gem::Specification.new do |s|
2
2
 
3
3
  s.name = 'logstash-output-redis'
4
- s.version = '4.0.4'
4
+ s.version = '5.0.0'
5
5
  s.licenses = ['Apache License (2.0)']
6
6
  s.summary = "Sends events to a Redis queue using the `RPUSH` command"
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"
@@ -22,7 +22,7 @@ Gem::Specification.new do |s|
22
22
  # Gem dependencies
23
23
  s.add_runtime_dependency "logstash-core-plugin-api", ">= 1.60", "<= 2.99"
24
24
 
25
- s.add_runtime_dependency 'redis', '~> 3'
25
+ s.add_runtime_dependency 'redis', '~> 4'
26
26
  s.add_runtime_dependency 'stud'
27
27
 
28
28
  s.add_development_dependency 'logstash-devutils'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-output-redis
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.4
4
+ version: 5.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elastic
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-04-06 00:00:00.000000000 Z
11
+ date: 2019-01-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
@@ -35,7 +35,7 @@ dependencies:
35
35
  requirements:
36
36
  - - "~>"
37
37
  - !ruby/object:Gem::Version
38
- version: '3'
38
+ version: '4'
39
39
  name: redis
40
40
  prerelease: false
41
41
  type: :runtime
@@ -43,7 +43,7 @@ dependencies:
43
43
  requirements:
44
44
  - - "~>"
45
45
  - !ruby/object:Gem::Version
46
- version: '3'
46
+ version: '4'
47
47
  - !ruby/object:Gem::Dependency
48
48
  requirement: !ruby/object:Gem::Requirement
49
49
  requirements:
@@ -155,7 +155,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
155
155
  version: '0'
156
156
  requirements: []
157
157
  rubyforge_project:
158
- rubygems_version: 2.6.11
158
+ rubygems_version: 2.6.13
159
159
  signing_key:
160
160
  specification_version: 4
161
161
  summary: Sends events to a Redis queue using the `RPUSH` command