logstash-input-log4j 3.0.2-java → 3.0.3-java

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: 1d9599a5bc69e0fc887146169aa3a0a67c423708
4
- data.tar.gz: fd85b8d5d686f96cf0e5400afc5594be4f8ae5ea
3
+ metadata.gz: a15d7c497e785b7e09b93e6f176bea3cf52a1936
4
+ data.tar.gz: 3daa1c9000748d6a21f91551ccb15866444c1efa
5
5
  SHA512:
6
- metadata.gz: e8d9de832e37f46126d97dd60ee95fd5088f013eaa3c675ce28433b9f097203fbb7d6265792619228d0a16a41c57c8b41046798edd9c628be6a45e01c6f4a3d7
7
- data.tar.gz: cbe5006cc2f6ae690ae675e788f8d19f4eddcdea7e77438b67bdd4fae103e1f9be1d2e3afd3a9a7f4c9d02599092a776681f6a5bfee9b77adf1c2fd82fd82bc8
6
+ metadata.gz: 195c966ddab0dff4b8077a26496586584f8e333702247a38924e270213ae991243c56e77b53485409671c6af6b11d92f4a766f52583ad04360f8c23965746173
7
+ data.tar.gz: e06e17f5bb17535ea3870ab98dec0e0f0b25153a70f3ad0b29048f728c360dd4b709f6cc8c8c8ddbcd7eba4f1606dd95d699ec70d38868cb1ddd3da36c19aa53
data/CHANGELOG.md CHANGED
@@ -1,22 +1,33 @@
1
+ ## 3.0.3
2
+ - `data_timeout` is now marked as obsolete, since this option is no longer necessary
3
+
1
4
  ## 3.0.2
2
5
  - Relax constraint on logstash-core-plugin-api to >= 1.60 <= 2.99
3
6
 
4
7
  ## 3.0.1
5
8
  - Republish all the gems under jruby.
9
+
6
10
  ## 3.0.0
7
11
  - 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
12
+
8
13
  # 2.0.7
9
14
  - Depend on logstash-core-plugin-api instead of logstash-core, removing the need to mass update plugins on major releases of logstash
15
+
10
16
  # 2.0.6
11
17
  - New dependency requirements for logstash-core for the 5.0 release
18
+
12
19
  ## 2.0.5
13
20
  - Fix a spec that was incompatible with the ng pipeline
21
+
14
22
  ## 2.0.4
15
23
  - Bump for LS 2.x compatibility
24
+
16
25
  ## 2.0.3
17
26
  - Refactor code to improve test reliability
27
+
18
28
  ## 2.0.2
19
29
  - Fix tests with `Thread.abort_on_exception` turn on
30
+
20
31
  ## 2.0.0
21
32
  - Plugins were updated to follow the new shutdown semantic, this mainly allows Logstash to instruct input plugins to terminate gracefully,
22
33
  instead of using Thread.raise on the plugins' threads. Ref: https://github.com/elastic/logstash/pull/3895
@@ -44,8 +44,8 @@ class LogStash::Inputs::Log4j < LogStash::Inputs::Base
44
44
  # Read timeout in seconds. If a particular TCP connection is
45
45
  # idle for more than this timeout period, we will assume
46
46
  # it is dead and close it.
47
- # If you never want to timeout, use -1.
48
- config :data_timeout, :validate => :number, :default => 5
47
+ # If you never want to timeout, use -1.,
48
+ config :data_timeout, :validate => :number, :default => 5, :obsolete => "This option is no longer necessary, the input will now keep the connection open."
49
49
 
50
50
  # Mode to operate in. `server` listens for client connections,
51
51
  # `client` connects to a server.
@@ -1,7 +1,7 @@
1
1
  Gem::Specification.new do |s|
2
2
 
3
3
  s.name = 'logstash-input-log4j'
4
- s.version = '3.0.2'
4
+ s.version = '3.0.3'
5
5
  s.licenses = ['Apache License (2.0)']
6
6
  s.summary = "Read events over a TCP socket from a Log4j SocketAppender"
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-input-log4j
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.2
4
+ version: 3.0.3
5
5
  platform: java
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: 2016-08-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
@@ -97,7 +97,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
97
97
  version: '0'
98
98
  requirements: []
99
99
  rubyforge_project:
100
- rubygems_version: 2.6.3
100
+ rubygems_version: 2.4.8
101
101
  signing_key:
102
102
  specification_version: 4
103
103
  summary: Read events over a TCP socket from a Log4j SocketAppender