logstash-input-rabbitmq 3.1.2 → 3.1.3

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: 1569aff8f5c9ad1d47f104b671a63ccfe206d7f2
4
- data.tar.gz: 6dd6f5cbe237df3c8c8a95480db9ea4d87d102a9
3
+ metadata.gz: e0b1ce0ea58bfa665489175420267cdc7d4de926
4
+ data.tar.gz: 269db5d3a032d318d4302852628fa351076b8b8d
5
5
  SHA512:
6
- metadata.gz: fb0304e6c8d3d6d2b76edd4c9e47433207264cd046041d705e1f0ad3691974acd53c64514e8ff07a25b31db6358ae3881b61314504b0f3c1da05c95cd5ca9e82
7
- data.tar.gz: 77ef5d47aa3beb2f55e9206f4a054ebe8ceb021524f95a55ef1e14ab52e3a35f5bb70ef8879ce2e3f5faec783ba279e6b2af70035a5608fe88e3a943b74968ac
6
+ metadata.gz: d4778c747ff78c0e5c857493e55f9ea25563dca8f9d6a48c5d4659ae977bfb1f1f96b0e96a812654b9e2c3d59f277873590cd66d2b9aa30378ac7c7deecb7f9c
7
+ data.tar.gz: 2123805fa8f03a7a394c1cb6a17b5a5c0b2cbd963d0834745be4e657b6b3ec33397306d3c0777f4180e2651f356e114734b4bb9a9d4bf77957e2b39a632e8e29
data/CHANGELOG.md CHANGED
@@ -1,4 +1,6 @@
1
- # 3.1.2
1
+ ## 3.1.3
2
+ - Fix a spec that shouldn't have broken with LS2.2
3
+ ## 3.1.2
2
4
  - Upgrade march hare version to fix file perms issue
3
5
  ## 3.1.1
4
6
  - Default codec setting should have been JSON
@@ -10,7 +12,7 @@
10
12
  - Bump dependency on logstash-mixin-rabbitmq_connection
11
13
 
12
14
  ## 3.0.0
13
- - Plugins were updated to follow the new shutdown semantic, this mainly allows Logstash to instruct input plugins to terminate gracefully,
15
+ - Plugins were updated to follow the new shutdown semantic, this mainly allows Logstash to instruct input plugins to terminate gracefully,
14
16
  instead of using Thread.raise on the plugins' threads. Ref: https://github.com/elastic/logstash/pull/3895
15
17
  - Dependency on logstash-core update to 2.0
16
18
 
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'logstash-input-rabbitmq'
3
- s.version = '3.1.2'
3
+ s.version = '3.1.3'
4
4
  s.licenses = ['Apache License (2.0)']
5
5
  s.summary = "Pull events from a RabbitMQ exchange."
6
6
  s.description = "This gem is a logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/plugin install gemname. This gem is not a stand-alone program"
@@ -27,4 +27,3 @@ Gem::Specification.new do |s|
27
27
  s.add_development_dependency 'logstash-devutils'
28
28
  s.add_development_dependency 'logstash-codec-plain'
29
29
  end
30
-
@@ -68,8 +68,8 @@ describe LogStash::Inputs::RabbitMQ do
68
68
  end
69
69
 
70
70
  context "with an exchange declared" do
71
- let(:exchange) { double("exchange") }
72
- let(:key) { double("routing key") }
71
+ let(:exchange) { "exchange" }
72
+ let(:key) { "routing key" }
73
73
  let(:rabbitmq_settings) { super.merge("exchange" => exchange, "key" => key) }
74
74
 
75
75
  it "should bind to the exchange" do
@@ -171,4 +171,4 @@ describe "with a live server", :integration => true do
171
171
 
172
172
  end
173
173
  end
174
- end
174
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-input-rabbitmq
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.2
4
+ version: 3.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elastic
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-12-11 00:00:00.000000000 Z
11
+ date: 2016-01-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: logstash-core