logstash-filter-mutate 3.5.2 → 3.5.3

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
  SHA256:
3
- metadata.gz: c982091a8f87efc5ed66124586d93bfff189d401022059b0e9eea04b7a476983
4
- data.tar.gz: 0d268422fadbc597010b0e621147b0647ef14e131c87b1c68c1a0285159c7bcf
3
+ metadata.gz: 587a9f7cf3dcffcf1e5da205f346757a2cadb152355e8a5875786db76f1744b7
4
+ data.tar.gz: aebf9138588e966faa0ea10400473ef009bb6af43e7e8a03a00902d86ca45da7
5
5
  SHA512:
6
- metadata.gz: b726d7f17945dd1cf511c8291112c7686ba21a114e85d17ecd0bd5810c14fa5b4cb3a0f3f87ddd43c8dea3b48f22598a18e9640b5e4e37ccc02096bb45db0c61
7
- data.tar.gz: 7d7639cc43f5d5dfa47b9cdbbd642f84a6cabf4a81ab73b4a056f8b7ae3ac60f7b04630a9ca125ee4e4e6daae1a2eebc9f285d2c59a195126cb6b879d8222046
6
+ metadata.gz: 7193aa164fba5286cce8d33eae0575af9f1c94d61c952edb90ccf0b14fc080b4aac0cb33a90a7206b61ed8f04cab7dc2239d843860601c7acd98f94a4f4c3e74
7
+ data.tar.gz: 4724a7e02686459741deed8125ba9595725e4939f3d328259b60b1dd80c4d902245228e4fc8335ecd984c9484e4e81083068a165ab63082f50c3b36e47c15c01
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ ## 3.5.3
2
+ - DOC: Expand description and behaviors for `rename` option [#156](https://github.com/logstash-plugins/logstash-filter-mutate/pull/156)
3
+
1
4
  ## 3.5.2
2
5
  - Fix: ensure that when an error occurs during registration, we use the correct i18n key to propagate the error message in a useful manner [#154](https://github.com/logstash-plugins/logstash-filter-mutate/pull/154)
3
6
 
data/docs/index.asciidoc CHANGED
@@ -265,6 +265,13 @@ Example:
265
265
 
266
266
  Rename one or more fields.
267
267
 
268
+ If the destination field already exists, its value is replaced.
269
+
270
+ If one of the source fields doesn't exist, no action is performed for that field.
271
+ (This is not considered an error; the `tag_on_failure` tag is not applied.)
272
+
273
+ When renaming multiple fields, the order of operations is not guaranteed.
274
+
268
275
  Example:
269
276
  [source,ruby]
270
277
  filter {
@@ -1,7 +1,7 @@
1
1
  Gem::Specification.new do |s|
2
2
 
3
3
  s.name = 'logstash-filter-mutate'
4
- s.version = '3.5.2'
4
+ s.version = '3.5.3'
5
5
  s.licenses = ['Apache License (2.0)']
6
6
  s.summary = "Performs mutations on fields"
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-mutate
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.5.2
4
+ version: 3.5.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elastic
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-05-12 00:00:00.000000000 Z
11
+ date: 2021-08-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
@@ -126,8 +126,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
126
126
  - !ruby/object:Gem::Version
127
127
  version: '0'
128
128
  requirements: []
129
- rubyforge_project:
130
- rubygems_version: 2.6.13
129
+ rubygems_version: 3.1.6
131
130
  signing_key:
132
131
  specification_version: 4
133
132
  summary: Performs mutations on fields