logstash-output-sns 4.0.2 → 4.0.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: 47c50325bb8552a022cd8480d8f9852b5ff3abae
4
- data.tar.gz: 830a27c6b6a929a2a3c9a29e5b9dfeb1291a6b57
3
+ metadata.gz: 8a407ebe4c11295c2bda86efad7126eefafe66c8
4
+ data.tar.gz: cf35913280eec2f51f7481f87ba025a5c049c614
5
5
  SHA512:
6
- metadata.gz: 53f80286ad80bd01f712d2cdd98f240b4384214778c04497721950c2ee78b9c5d4cda10ff7ebf3e7e4ee094a95cb2eab0174a1ebca1a0110797a1236b2085188
7
- data.tar.gz: 0a2cf6d5182deeb40635ba43c5573104f7d46aa3bc39cc0bc9f8316d1943eda02aa7e4fc6ab66af208d348be0124944a3fe728f11eef25ee5a9e41aeb7798df7
6
+ metadata.gz: d1883501181df49b15cc6e72205f0a3b9cb2f19f822e9c54f2292ea888c56a9a1ecb66a63baa80e65881103121365a3cfac464940443c3f8b6cec7e54b3e8a41
7
+ data.tar.gz: 5f27bd9be51d861bcd0609d2c3527c8af36e64e035abe8c9de275fd6ca1f5a956e46b30c7d82685a13ab335b767070c1a731ded15a5444834213c919fa67e5be
@@ -1,3 +1,6 @@
1
+ ## 4.0.3
2
+ - Mark this output as thread safe to allow concurrent connections to AWS.
3
+
1
4
  ## 4.0.2
2
5
  - Relax constraint on logstash-core-plugin-api to >= 1.60 <= 2.99
3
6
 
@@ -10,7 +13,7 @@
10
13
  # 3.0.3
11
14
  - New dependency requirements for logstash-core for the 5.0 release
12
15
  ## 3.0.0
13
- - Plugins were updated to follow the new shutdown semantic, this mainly allows Logstash to instruct input plugins to terminate gracefully,
16
+ - Plugins were updated to follow the new shutdown semantic, this mainly allows Logstash to instruct input plugins to terminate gracefully,
14
17
  instead of using Thread.raise on the plugins' threads. Ref: https://github.com/elastic/logstash/pull/3895
15
18
  - Dependency on logstash-core update to 2.0
16
19
 
@@ -18,7 +21,7 @@
18
21
  * Properly trim messages for AWS without breaking unicode byte boundaries
19
22
 
20
23
  # 1.0.0
21
- * Full refactor.
24
+ * Full refactor.
22
25
  * This plugin now uses codecs for all formatting. The 'format' option has now been removed. Please use a codec.
23
26
  # 0.1.5
24
27
  * If no `subject` are specified fallback to the %{host} key (https://github.com/logstash-plugins/logstash-output-sns/pull/2)
@@ -39,6 +39,8 @@ class LogStash::Outputs::Sns < LogStash::Outputs::Base
39
39
  NO_SUBJECT = "NO SUBJECT"
40
40
 
41
41
  config_name "sns"
42
+
43
+ concurrency :shared
42
44
 
43
45
  # Optional ARN to send messages to. If you do not set this you must
44
46
  # include the `sns` field in your events to set the ARN on a per-message basis!
@@ -1,7 +1,7 @@
1
1
  Gem::Specification.new do |s|
2
2
 
3
3
  s.name = 'logstash-output-sns'
4
- s.version = '4.0.2'
4
+ s.version = '4.0.3'
5
5
  s.licenses = ['Apache License (2.0)']
6
6
  s.summary = "Send events to Amazon's Simple Notification Service a hosted pub/sub framework"
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-output-sns
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.2
4
+ version: 4.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elastic
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-07-14 00:00:00.000000000 Z
11
+ date: 2017-04-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
@@ -95,7 +95,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
95
95
  version: '0'
96
96
  requirements: []
97
97
  rubyforge_project:
98
- rubygems_version: 2.6.3
98
+ rubygems_version: 2.4.8
99
99
  signing_key:
100
100
  specification_version: 4
101
101
  summary: Send events to Amazon's Simple Notification Service a hosted pub/sub framework