logstash-input-beats 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: 14621bab763c6c4d380e3f136fe50188cc7bfa8d
4
- data.tar.gz: 54a71c83af87e2a309e58dfd81f305c5e9df7afb
3
+ metadata.gz: 8e917a27a286fc5d064a16a5b7391b8d18b95122
4
+ data.tar.gz: bbe53800af0104f48709516a9fbbb2486819fb1c
5
5
  SHA512:
6
- metadata.gz: 3ee6e8a97d42d6b6310439d509d4db55df25e4eef1e267585fe1fdb008dd97e050b50257447e19681dcc787877252726819d7f655161d23096fe022555531fcd
7
- data.tar.gz: 30ffe86910c3986ffb53f60434569c06389bdb349511db3d10974f6cae4fa5497623cd5f62af21c41a96a6b2e59c2fc5066089227d58a7038035edf2176d0fa1
6
+ metadata.gz: 4ae1b5d8a8ac6b8e10279a466858b16fa61bdf7ea37c671ea79658d57185e63394178e70920bd17b28ba5a8b7e65b9d34407731bbd481541fbc172a80f6aa49c
7
+ data.tar.gz: f9cef63f4aa447a0e3c8b44d967baf4515d83387ac7c6c95db34705686a306a565dafb17474cb35c84181c32d4dde00826a507e7d2077edf85deb6534ad7f89a
@@ -1,41 +1,43 @@
1
+ ## 3.0.2
2
+ - relax constrains of `logstash-devutils` see https://github.com/elastic/logstash-devutils/issues/48
1
3
  ## 3.0.1
2
4
  - Republish all the gems under jruby.
3
5
  ## 3.0.0
4
6
  - Update the plugin to the version 2.0 of the plugin api, this change is required for Logstash 5.0 compatibility. See https://github.com/elastic/logstash/issues/5141
5
- # 2.2.8
7
+ ## 2.2.8
6
8
  - Fix #73 Bug in EventTransformCommon#codec_name, use config_name
7
9
  - Add regression test for fix to #73
8
10
  - Non deterministic error for the LSF integration test
9
11
  - Make this plugin really a drop in replacement for the lumberjack input, so LSF can send their events to this plugin.
10
- # 2.2.7
12
+ ## 2.2.7
11
13
  - More robust test when using a random port #60
12
14
  - Fix LSF integration tests #52
13
- # 2.2.6
15
+ ## 2.2.6
14
16
  - Do not use the identity map if we don't explicitly use the `multiline` codec
15
- # 2.2.5
17
+ ## 2.2.5
16
18
  - Fix failing tests introduce by the `ssl_key_passphrase` changes.
17
19
  - Added an integration test for the `ssl_key_passphrase`
18
20
  - Add an optional parameter for `auto_flush`
19
- # 2.2.4
21
+ ## 2.2.4
20
22
  - Fix bug where using `ssl_key_passphrase` wouldn't work
21
- # 2.2.2
23
+ ## 2.2.2
22
24
  - Depend on logstash-core-plugin-api instead of logstash-core, removing the need to mass update plugins on major releases of logstash
23
- # 2.2.1
25
+ ## 2.2.1
24
26
  - New dependency requirements for logstash-core for the 5.0 release
25
- # 2.2.0
27
+ ## 2.2.0
26
28
  - The server can now do client side verification by providing a list of certificate authorities and configuring the `ssl_verify_mode`,
27
29
  the server can use `peer`, if the client send a certificate it will be validated. Using `force_peer` will make sure the client provide a certificate
28
30
  and it will be validated with the know CA. #8
29
- # 2.1.4
31
+ ## 2.1.4
30
32
  - Change the `logger#warn` for `logger.debug` when a peer get disconnected, keep alive check from proxy can generate a lot of logs #46
31
- # 2.1.3
33
+ ## 2.1.3
32
34
  - Make sure we stop all the threads after running the tests #48
33
- # 2.1.2
35
+ ## 2.1.2
34
36
  - Catch the `java.lang.InterruptedException` in the events broker
35
37
  - Give a bit more time to the Thread to be started in the test #42
36
- # 2.1.1
38
+ ## 2.1.1
37
39
  - Release a new version of the gem that doesn't included any other gems, 2.1.0 is yanked from rubygems
38
- # 2.1.0
40
+ ## 2.1.0
39
41
  - Refactor of the code to make it easier to unit test
40
42
  - Fix a conncurrency error on high load on the SizeQueue #37
41
43
  - Drop the internal SizeQueue to rely on Java Synchronous Queue
@@ -45,30 +47,30 @@
45
47
  - Flush the codec when a disconnect happen
46
48
  - Tag/Decorate the event when a shutdown occur.
47
49
  - The name of the threads managed by the input beat are now meaningful.
48
- # 2.0.3
50
+ ## 2.0.3
49
51
  - Reduce the size of the gem by removing vendor jars
50
- # 2.0.2
52
+ ## 2.0.2
51
53
  - Copy the `beat.hostname` field into the `host` field for better compatibility with the other Logstash plugins #28
52
54
  - Correctly merge multiple line with the multiline codec ref: #24
53
- # 2.0.0
55
+ ## 2.0.0
54
56
  - Add support for stream identity, the ID will be generated from beat.id+resource_id or beat.name + beat.source if not present #22 #13
55
57
  The identity allow the multiline codec to correctly merge string from multiples files.
56
- # 0.9.6
58
+ ## 0.9.6
57
59
  - Fix an issue with rogue events created by buffered codecs #19
58
- # 0.9.5
60
+ ## 0.9.5
59
61
  - Set concurrent-ruby to 0.9.1 see https://github.com/elastic/logstash/issues/4141
60
- # 0.9.4
62
+ ## 0.9.4
61
63
  - Correctly decorate the event with the `add_field` and `tags` option from the config #12
62
- # 0.9.3
64
+ ## 0.9.3
63
65
  - Connection#run should rescue `Broken Pipe Error` #5
64
66
  - Fix a `SystemCallErr` issue on windows when shutting down the server #9
65
67
 
66
- # 0.9.2
68
+ ## 0.9.2
67
69
  - fix an issue with the incorrectly calculated ack when the window_size was smaller than the ACK_RATIO see https://github.com/logstash-plugins/logstash-input-beats/issues/3
68
70
 
69
- # 0.9.1
71
+ ## 0.9.1
70
72
  - Move the ruby-lumberjack library into the plugin
71
73
 
72
- # 0.9
74
+ ## 0.9
73
75
  - Created from `logstash-input-lumberjack` version 2.0.2 https://github.com/logstash-plugins/logstash-input-lumberjack
74
76
  - Use SSL off by default
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = "logstash-input-beats"
3
- s.version = '3.0.1'
3
+ s.version = '3.0.2'
4
4
  s.licenses = ["Apache License (2.0)"]
5
5
  s.summary = "Receive events using the lumberjack protocol."
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/logstash-plugin install gemname. This gem is not a stand-alone program"
@@ -31,7 +31,7 @@ Gem::Specification.new do |s|
31
31
  s.add_development_dependency "stud"
32
32
  s.add_development_dependency "pry"
33
33
  s.add_development_dependency "rspec-wait"
34
- s.add_development_dependency "logstash-devutils", "~> 0.0.18"
34
+ s.add_development_dependency "logstash-devutils"
35
35
  s.add_development_dependency "logstash-codec-json"
36
36
  s.add_development_dependency "childprocess" # To make filebeat/LSF integration test easier to write.
37
37
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-input-beats
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-05-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
@@ -159,17 +159,17 @@ dependencies:
159
159
  - !ruby/object:Gem::Dependency
160
160
  requirement: !ruby/object:Gem::Requirement
161
161
  requirements:
162
- - - "~>"
162
+ - - ">="
163
163
  - !ruby/object:Gem::Version
164
- version: 0.0.18
164
+ version: '0'
165
165
  name: logstash-devutils
166
166
  prerelease: false
167
167
  type: :development
168
168
  version_requirements: !ruby/object:Gem::Requirement
169
169
  requirements:
170
- - - "~>"
170
+ - - ">="
171
171
  - !ruby/object:Gem::Version
172
- version: 0.0.18
172
+ version: '0'
173
173
  - !ruby/object:Gem::Dependency
174
174
  requirement: !ruby/object:Gem::Requirement
175
175
  requirements: