logstash-filter-kv 3.1.0 → 3.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +24 -17
  3. data/logstash-filter-kv.gemspec +2 -2
  4. metadata +24 -18
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a5b62e210c5764ad9af5185a3a18806a811dee71
4
- data.tar.gz: 638c1ce5512591a29bf4b501d727fd36e42f5c80
3
+ metadata.gz: 39ddb76c9ee42cbde4072495a4e95a11d9b2869f
4
+ data.tar.gz: 37a419b9ab32acb5b98aca490cdc8a33ce30fe80
5
5
  SHA512:
6
- metadata.gz: 37fa6c205f3151745222a53dd25e3083ae8fc048008f45a2f6300e3402c61953d7b4c798353697486da5964afe48d77828cd869872e20c02fc8c7f1dc7648de3
7
- data.tar.gz: 847df25bdce86f4f22fa1f8e716f88cd7d7bce4fa0a698f2752a4f96d161a63d3f6196abf11bd18a2bb9dc71593592f1bc9f4906d89664f8d6bf54e736d6a1f6
6
+ metadata.gz: d3f8b3dc0f03ea34047b5ca28c6911c5c2a9f500aa8bf711805981415e31996e8356144618dd237a756f76ec781bae83edd1a59aa3e48e689fc387b61b8e805e
7
+ data.tar.gz: 043117582b6b089324676523d5f22090ddc50647662433ad8745c84f9211311c00659e8df7a171c92374047a011dc10b1db1c29ec726f0f4e99212b4360afdf5
@@ -1,29 +1,36 @@
1
+ ## 3.1.1
2
+ - Relax constraint on logstash-core-plugin-api to >= 1.60 <= 2.99
3
+
1
4
  ## 3.1.0
2
5
  - Adds :transform_value and :transform_key options to lowercase/upcase or capitalize all keys/values
3
6
  ## 3.0.1
4
- - Republish all the gems under jruby.
7
+ - internal: Republish all the gems under jruby.
8
+
5
9
  ## 3.0.0
6
- - 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
7
- # 2.0.7
8
- - With include_brackets enabled, angle brackets (\< and \>) are treated the same as square brackets and parentheses, making it easy to parse strings like "a=\<b\> c=\<d\>".
9
- - An empty value_split option value now gives a useful error message.
10
-
11
- # 2.0.6
12
- - Depend on logstash-core-plugin-api instead of logstash-core, removing the need to mass update plugins on major releases of logstash
13
- # 2.0.5
14
- - New dependency requirements for logstash-core for the 5.0 release
10
+ - internal,deps: 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
11
+
12
+ ## 2.0.7
13
+ - feature: With include_brackets enabled, angle brackets (\< and \>) are treated the same as square brackets and parentheses, making it easy to parse strings like "a=\<b\> c=\<d\>".
14
+ - feature: An empty value_split option value now gives a useful error message.
15
+
16
+ ## 2.0.6
17
+ - internal,deps: Depend on logstash-core-plugin-api instead of logstash-core, removing the need to mass update plugins on major releases of logstash
18
+
19
+ ## 2.0.5
20
+ - internal,deps: New dependency requirements for logstash-core for the 5.0 release
21
+
15
22
  ## 2.0.4
16
- - Fixed: Fields without values could claim the next field + value under certain circumstances. Reported in #22
23
+ - bugfix: Fields without values could claim the next field + value under certain circumstances. Reported in #22
17
24
 
18
25
  ## 2.0.3
19
- - fixed fixed short circuit expressions, some optimizations, added specs, PR #20
20
- - fixed event field assignment, PR #21
26
+ - bugfix: fixed short circuit expressions, some optimizations, added specs, PR #20
27
+ - bugfix: fixed event field assignment, PR #21
21
28
 
22
29
  ## 2.0.0
23
- - Plugins were updated to follow the new shutdown semantic, this mainly allows Logstash to instruct input plugins to terminate gracefully,
30
+ - internal: Plugins were updated to follow the new shutdown semantic, this mainly allows Logstash to instruct input plugins to terminate gracefully,
24
31
  instead of using Thread.raise on the plugins' threads. Ref: https://github.com/elastic/logstash/pull/3895
25
- - Dependency on logstash-core update to 2.0
32
+ - internal,deps: Dependency on logstash-core update to 2.0
26
33
 
27
- # 1.1.0
28
- - Add new features as support spaces between key and value_split,
34
+ ## 1.1.0
35
+ - feature: support spaces between key and value_split,
29
36
  support brackets and recursive option.
@@ -1,7 +1,7 @@
1
1
  Gem::Specification.new do |s|
2
2
 
3
3
  s.name = 'logstash-filter-kv'
4
- s.version = '3.1.0'
4
+ s.version = '3.1.1'
5
5
  s.licenses = ['Apache License (2.0)']
6
6
  s.summary = "This filter helps automatically parse messages (or specific event fields) which are of the 'foo=bar' variety."
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"
@@ -20,7 +20,7 @@ Gem::Specification.new do |s|
20
20
  s.metadata = { "logstash_plugin" => "true", "logstash_group" => "filter" }
21
21
 
22
22
  # Gem dependencies
23
- s.add_runtime_dependency "logstash-core-plugin-api", "~> 2.0"
23
+ s.add_runtime_dependency "logstash-core-plugin-api", ">= 1.60", "<= 2.99"
24
24
 
25
25
  s.add_development_dependency 'logstash-devutils'
26
26
  end
metadata CHANGED
@@ -1,43 +1,49 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-filter-kv
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.0
4
+ version: 3.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elastic
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-05-20 00:00:00.000000000 Z
11
+ date: 2016-07-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
- name: logstash-core-plugin-api
15
- version_requirements: !ruby/object:Gem::Requirement
16
- requirements:
17
- - - ~>
18
- - !ruby/object:Gem::Version
19
- version: '2.0'
20
14
  requirement: !ruby/object:Gem::Requirement
21
15
  requirements:
22
- - - ~>
16
+ - - ">="
23
17
  - !ruby/object:Gem::Version
24
- version: '2.0'
18
+ version: '1.60'
19
+ - - "<="
20
+ - !ruby/object:Gem::Version
21
+ version: '2.99'
22
+ name: logstash-core-plugin-api
25
23
  prerelease: false
26
24
  type: :runtime
27
- - !ruby/object:Gem::Dependency
28
- name: logstash-devutils
29
25
  version_requirements: !ruby/object:Gem::Requirement
30
26
  requirements:
31
- - - '>='
27
+ - - ">="
32
28
  - !ruby/object:Gem::Version
33
- version: '0'
29
+ version: '1.60'
30
+ - - "<="
31
+ - !ruby/object:Gem::Version
32
+ version: '2.99'
33
+ - !ruby/object:Gem::Dependency
34
34
  requirement: !ruby/object:Gem::Requirement
35
35
  requirements:
36
- - - '>='
36
+ - - ">="
37
37
  - !ruby/object:Gem::Version
38
38
  version: '0'
39
+ name: logstash-devutils
39
40
  prerelease: false
40
41
  type: :development
42
+ version_requirements: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - ">="
45
+ - !ruby/object:Gem::Version
46
+ version: '0'
41
47
  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
42
48
  email: info@elastic.co
43
49
  executables: []
@@ -65,17 +71,17 @@ require_paths:
65
71
  - lib
66
72
  required_ruby_version: !ruby/object:Gem::Requirement
67
73
  requirements:
68
- - - '>='
74
+ - - ">="
69
75
  - !ruby/object:Gem::Version
70
76
  version: '0'
71
77
  required_rubygems_version: !ruby/object:Gem::Requirement
72
78
  requirements:
73
- - - '>='
79
+ - - ">="
74
80
  - !ruby/object:Gem::Version
75
81
  version: '0'
76
82
  requirements: []
77
83
  rubyforge_project:
78
- rubygems_version: 2.4.8
84
+ rubygems_version: 2.6.3
79
85
  signing_key:
80
86
  specification_version: 4
81
87
  summary: This filter helps automatically parse messages (or specific event fields) which are of the 'foo=bar' variety.