logstash-devutils 1.3.4-java → 1.3.5-java
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 86e45cdddc78a4bb753fbef368b665469e85a066000bfd7232be414b61d0646b
|
4
|
+
data.tar.gz: 7d687ce51ca99eb47fb7fa323eb1ea5462dac616660c204779dd9c3e9ec730ab
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7de72acab490dcfcd0187bbba26c583b7ddf1ec3a54b8f03b6d8df65029c11b8e6c40e85c3569ea824b15242fa7563b3d9121e5cda71af839cd794958b37b9ca
|
7
|
+
data.tar.gz: 8b8fc95b98bf02ba2feac3da115303521629c581aff861bfe40a75d14a68385fdbb3585c6dd28e4d6f4aa7628a4a6c76868bad53489308238897f72c9c3f178b
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,7 @@
|
|
1
|
+
## 1.3.5
|
2
|
+
- Fix spec helper method `input` generating an invalid `output_func` that returned `nil` instead of an array
|
3
|
+
- Remove spec helper log4j explicit initialization and rely on logstash-core default log4j initialization
|
4
|
+
|
1
5
|
## 1.3.4
|
2
6
|
- Pin kramdown gem to support ruby 1.x syntax for LS 5.x
|
3
7
|
|
@@ -21,12 +21,6 @@ require "insist"
|
|
21
21
|
|
22
22
|
Thread.abort_on_exception = true
|
23
23
|
|
24
|
-
# set log4j configuration
|
25
|
-
unless java.lang.System.getProperty("log4j.configurationFile")
|
26
|
-
log4j2_properties = "#{File.dirname(__FILE__)}/log4j2.properties"
|
27
|
-
LogStash::Logging::Logger::initialize(log4j2_properties)
|
28
|
-
end
|
29
|
-
|
30
24
|
$TESTING = true
|
31
25
|
if RUBY_VERSION < "1.9.2"
|
32
26
|
$stderr.puts "Ruby 1.9.2 or later is required. (You are running: " + RUBY_VERSION + ")"
|
data/logstash-devutils.gemspec
CHANGED
@@ -6,7 +6,7 @@ Gem::Specification.new do |spec|
|
|
6
6
|
files = %x{git ls-files}.split("\n")
|
7
7
|
|
8
8
|
spec.name = "logstash-devutils"
|
9
|
-
spec.version = "1.3.
|
9
|
+
spec.version = "1.3.5"
|
10
10
|
spec.licenses = ["Apache License (2.0)"]
|
11
11
|
spec.summary = "logstash-devutils"
|
12
12
|
spec.description = "logstash-devutils"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: logstash-devutils
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.3.
|
4
|
+
version: 1.3.5
|
5
5
|
platform: java
|
6
6
|
authors:
|
7
7
|
- Elastic
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-10-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|