logstash-input-beats 2.2.0 → 2.2.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/logstash-input-beats.gemspec +2 -2
- metadata +7 -13
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a00e3279ab930d52acd66dbfd1afcac989a80bbd
|
4
|
+
data.tar.gz: df748762f0f65a6e0922c61bad5ac08e986a03a1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f68213034bad78fa43b08c91dd644267d9f12cf0ee7e177ec725c73fe4d0e18e1c66b32d73ea57c4f108e98adbf54e0cc609b21bda2db91dad7c8639b7720741
|
7
|
+
data.tar.gz: 5622d06d4d5b01937846f8cfbbf8092a07d3fedd6464767ca9c0c3c455d4efb3afe8f0cbc194fafffa15a70b6420cd477ffb336b5e9563a4f776403e7afc0b8f
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,7 @@
|
|
1
|
+
# 2.2.2
|
2
|
+
- Depend on logstash-core-plugin-api instead of logstash-core, removing the need to mass update plugins on major releases of logstash
|
3
|
+
# 2.2.1
|
4
|
+
- New dependency requirements for logstash-core for the 5.0 release
|
1
5
|
# 2.2.0
|
2
6
|
- The server can now do client side verification by providing a list of certificate authorities and configuring the `ssl_verify_mode`,
|
3
7
|
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
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = "logstash-input-beats"
|
3
|
-
s.version =
|
3
|
+
s.version = '2.2.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/plugin install gemname. This gem is not a stand-alone program"
|
@@ -19,7 +19,7 @@ Gem::Specification.new do |s|
|
|
19
19
|
s.metadata = { "logstash_plugin" => "true", "logstash_group" => "input" }
|
20
20
|
|
21
21
|
# Gem dependencies
|
22
|
-
s.add_runtime_dependency "logstash-core", "
|
22
|
+
s.add_runtime_dependency "logstash-core-plugin-api", "~> 1.0"
|
23
23
|
|
24
24
|
s.add_runtime_dependency "logstash-codec-plain"
|
25
25
|
s.add_runtime_dependency "concurrent-ruby", "~> 0.9.2"
|
metadata
CHANGED
@@ -1,33 +1,27 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: logstash-input-beats
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.2.
|
4
|
+
version: 2.2.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-03-
|
11
|
+
date: 2016-03-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
|
-
name: logstash-core
|
14
|
+
name: logstash-core-plugin-api
|
15
15
|
version_requirements: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- -
|
18
|
-
- !ruby/object:Gem::Version
|
19
|
-
version: 2.0.0
|
20
|
-
- - <
|
17
|
+
- - ~>
|
21
18
|
- !ruby/object:Gem::Version
|
22
|
-
version:
|
19
|
+
version: '1.0'
|
23
20
|
requirement: !ruby/object:Gem::Requirement
|
24
21
|
requirements:
|
25
|
-
- -
|
26
|
-
- !ruby/object:Gem::Version
|
27
|
-
version: 2.0.0
|
28
|
-
- - <
|
22
|
+
- - ~>
|
29
23
|
- !ruby/object:Gem::Version
|
30
|
-
version:
|
24
|
+
version: '1.0'
|
31
25
|
prerelease: false
|
32
26
|
type: :runtime
|
33
27
|
- !ruby/object:Gem::Dependency
|