fluent-plugin-record-reformer 0.6.2 → 0.6.3

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
  SHA1:
3
- metadata.gz: 1bb8ef48e3b8c84c2c2f19875adff5570467dfe6
4
- data.tar.gz: 028229752d4a6b8bcd5acfa0e3312d36c790838a
3
+ metadata.gz: beaea68d997ac0ad945eed7538383648b364365a
4
+ data.tar.gz: a09b4a368bda8e78d1d9b302710eb2d64ab0982b
5
5
  SHA512:
6
- metadata.gz: fa6144cd1c31f3951333dfa64ab1f59c32c911781e2a3ce0b74a7f4cb185625f3285ea2995d548a16eefec4305889c0af6702b6a68212aef960df1403def71c5
7
- data.tar.gz: b61672fcca95b5540377025ec387840dffb60fbbfe3cbfed812a760d3c1b441fd389213d0fe4288fffbb13a03936dd9aad1360e9ccb95614a953f615eeb7704b
6
+ metadata.gz: 2860304c62904d3805abd0bbae0ae41015c22c046a37219c4834c3d08d986c59c3c53c51c3e1998cbbdb9f169e0e0bcab38a1a567d4dd848c2887b36f3186b69
7
+ data.tar.gz: b629578c947c7b663277eafdfecc36bcd034c7d64b8d3c3b44f9940e23907a8bcfe9ab3943e08707aa51a141310f7304346b92a8598ac2e8344c269f0a16e10e
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## 0.6.3 (2015/05/27)
2
+
3
+ Fixes:
4
+
5
+ * Fix not to include `renew_time_key` in records
6
+
1
7
  ## 0.6.2 (2015/05/27)
2
8
 
3
9
  Enhancements:
@@ -3,7 +3,7 @@ $:.push File.expand_path('../lib', __FILE__)
3
3
 
4
4
  Gem::Specification.new do |gem|
5
5
  gem.name = "fluent-plugin-record-reformer"
6
- gem.version = "0.6.2"
6
+ gem.version = "0.6.3"
7
7
  gem.authors = ["Naotoshi Seo"]
8
8
  gem.email = "sonots@gmail.com"
9
9
  gem.homepage = "https://github.com/sonots/fluent-plugin-record-reformer"
@@ -17,7 +17,7 @@ module Fluent
17
17
  config_param :renew_time_key, :string, :default => nil
18
18
  config_param :enable_ruby, :bool, :default => true # true for lower version compatibility
19
19
 
20
- BUILTIN_CONFIGURATIONS = %W(type tag output_tag remove_keys renew_record keep_keys enable_ruby)
20
+ BUILTIN_CONFIGURATIONS = %W(type tag output_tag remove_keys renew_record keep_keys enable_ruby renew_time_key)
21
21
 
22
22
  # To support log_level option implemented by Fluentd v0.10.43
23
23
  unless method_defined?(:log)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluent-plugin-record-reformer
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.2
4
+ version: 0.6.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Naotoshi Seo