logstash-filter-xml 4.0.1 → 4.0.2
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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/logstash/filters/xml.rb +1 -1
- data/logstash-filter-xml.gemspec +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7758cb2a1b75e1ec1f02f0d31f6d3592d27f5c8c
|
|
4
|
+
data.tar.gz: f1af18c5f4c689cafc1c38e5bb32bd5f8ab45631
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 72bb73bf8def84fc335661e29d361521bd77b7c07e1b55fb0db650dadcc26958d410464eadb079ef8447c30758dda185e867bb64cfe6b39b425884cc42a4f46e
|
|
7
|
+
data.tar.gz: acd1c0e7ba251a177f8d8c25534fabeddc9ec7d0adbba7c87ceedd13ea90f82603467c04022db98c1906d02a98bc57d24d3dca7ad289da550f5ad45916362e6e
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
## 4.0.2
|
|
2
|
+
- Fix a bug that, when the plugin tried to report an invalid configuration, would report the following instead of the real error:
|
|
3
|
+
translation missing: en.logstash.agent.configuration.invalid_plugin_register
|
|
4
|
+
|
|
1
5
|
## 4.0.1
|
|
2
6
|
- Relax constraint on logstash-core-plugin-api to >= 1.60 <= 2.99
|
|
3
7
|
|
data/lib/logstash/filters/xml.rb
CHANGED
|
@@ -104,7 +104,7 @@ class LogStash::Filters::Xml < LogStash::Filters::Base
|
|
|
104
104
|
|
|
105
105
|
if @store_xml && (!@target || @target.empty?)
|
|
106
106
|
raise LogStash::ConfigurationError, I18n.t(
|
|
107
|
-
"logstash.
|
|
107
|
+
"logstash.runner.configuration.invalid_plugin_register",
|
|
108
108
|
:plugin => "filter",
|
|
109
109
|
:type => "xml",
|
|
110
110
|
:error => "When the 'store_xml' configuration option is true, 'target' must also be set"
|
data/logstash-filter-xml.gemspec
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
|
|
3
3
|
s.name = 'logstash-filter-xml'
|
|
4
|
-
s.version = '4.0.
|
|
4
|
+
s.version = '4.0.2'
|
|
5
5
|
s.licenses = ['Apache License (2.0)']
|
|
6
6
|
s.summary = "Takes a field that contains XML and expands it into an actual datastructure."
|
|
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-filter-xml
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.0.
|
|
4
|
+
version: 4.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-
|
|
11
|
+
date: 2016-10-31 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -109,7 +109,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
109
109
|
version: '0'
|
|
110
110
|
requirements: []
|
|
111
111
|
rubyforge_project:
|
|
112
|
-
rubygems_version: 2.
|
|
112
|
+
rubygems_version: 2.4.8
|
|
113
113
|
signing_key:
|
|
114
114
|
specification_version: 4
|
|
115
115
|
summary: Takes a field that contains XML and expands it into an actual datastructure.
|