logstash-filter-xml 4.0.1 → 4.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: ba4d3c8b879f569a24c3a22209b0ad29c3bf4b28
4
- data.tar.gz: 344ac2642b8920aeb1475ddbb9f3d43ee2033d97
3
+ metadata.gz: 7758cb2a1b75e1ec1f02f0d31f6d3592d27f5c8c
4
+ data.tar.gz: f1af18c5f4c689cafc1c38e5bb32bd5f8ab45631
5
5
  SHA512:
6
- metadata.gz: ff007b57282683ea67474aa37b6b5d260dd5bf4c7e34593f155760d420a5cf9150778fa5ea8082a90cfbc5621afbabd759104e81be1931e98d7958503d5b5a76
7
- data.tar.gz: e04b3e9332385a251f76b32655a12b611171c0cf0aa4657b0f68cc34ec923633aa2912774ebb27dcf78cbc44756d098ec80214c51782731ed377563b4f4b2250
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
 
@@ -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.agent.configuration.invalid_plugin_register",
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"
@@ -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.1'
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.1
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-07-14 00:00:00.000000000 Z
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.6.3
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.