fluentd 0.14.5 → 0.14.6

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of fluentd might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 31d47738dce591e0ae2cad1a00f1d83809c0b986
4
- data.tar.gz: 819627a4cb036aa554141de99baa6d52b32219a3
3
+ metadata.gz: 2a854ece7196a783b2db7b8eb0e0f95b3e6a20eb
4
+ data.tar.gz: faa92cad1ac199b311d3162a7657d00317981d89
5
5
  SHA512:
6
- metadata.gz: 45a9621dcf0640691b33443e49cc6da6736205f94370b2787c6987d373c548bf3f396975b145858b7409fcd44b3368232d47b2c42b7d8ef52c34a235f7dcf080
7
- data.tar.gz: 36f0133d0be03247818d4f7819870b208f466dfa56ccf0fa72135ead2a632cdea6d5c06acc9325ec1a3941fdfbc07f1d09e2a04b580807e7639d45d05a7cf14f
6
+ metadata.gz: df3024d66ac13959d17a2ada786eb1da2dcec388901168e8fc740c57161c0fc6e36d4c9d7d87d233cafe8aafc6dfd80e13a2b982d4f80bcc877ee60906367ec8
7
+ data.tar.gz: de8328984c6438a24c04d395a42f2f2094db93276b2b832dcd9be27f5a3f65be4a2f59f06f764f23d2d1f016ecb87023718846236689ad26abb3fcbea85ed2a4
data/ChangeLog CHANGED
@@ -1,5 +1,14 @@
1
1
  # v0.14
2
2
 
3
+ ## Release v0.14.6 - 2016/09/07
4
+
5
+ ### Bug fixes
6
+
7
+ * in_tail: Add a missing parser_multiline require
8
+ https://github.com/fluent/fluentd/pull/1212
9
+ * forward: Mark secret parameters of forward plugins as secret
10
+ https://github.com/fluent/fluentd/pull/1209
11
+
3
12
  ## Release v0.14.5 - 2016/09/06
4
13
 
5
14
  ### New features / Enhancement
@@ -235,6 +235,7 @@ module Fluent
235
235
 
236
236
  option_value_type!(name, opts, :desc, String)
237
237
  option_value_type!(name, opts, :alias, Symbol)
238
+ option_value_type!(name, opts, :secret, Object) # TrueClass or FalseClass...
238
239
  option_value_type!(name, opts, :deprecated, String)
239
240
  option_value_type!(name, opts, :obsoleted, String)
240
241
  if type == :enum
@@ -58,7 +58,7 @@ module Fluent
58
58
  desc 'The hostname'
59
59
  config_param :self_hostname, :string
60
60
  desc 'Shared key for authentication'
61
- config_param :shared_key, :string
61
+ config_param :shared_key, :string, secret: true
62
62
  desc 'If true, use user based authentication'
63
63
  config_param :user_auth, :bool, default: false
64
64
  desc 'Allow anonymous source. <client> sections required if disabled.'
@@ -69,7 +69,7 @@ module Fluent
69
69
  desc 'The username for authentication'
70
70
  config_param :username, :string
71
71
  desc 'The password for authentication'
72
- config_param :password, :string
72
+ config_param :password, :string, secret: true
73
73
  end
74
74
 
75
75
  ### Client ip/network authentication & per_host shared key
@@ -79,7 +79,7 @@ module Fluent
79
79
  desc 'Network address specification'
80
80
  config_param :network, :string, default: nil
81
81
  desc 'Shared key per client'
82
- config_param :shared_key, :string, default: nil
82
+ config_param :shared_key, :string, default: nil, secret: true
83
83
  desc 'Array of username.'
84
84
  config_param :users, :array, default: []
85
85
  end
@@ -20,6 +20,7 @@ require 'fluent/plugin/input'
20
20
  require 'fluent/config/error'
21
21
  require 'fluent/event'
22
22
  require 'fluent/plugin/buffer'
23
+ require 'fluent/plugin/parser_multiline'
23
24
 
24
25
  if Fluent.windows?
25
26
  require_relative 'file_wrapper'
@@ -16,6 +16,6 @@
16
16
 
17
17
  module Fluent
18
18
 
19
- VERSION = '0.14.5'
19
+ VERSION = '0.14.6'
20
20
 
21
21
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluentd
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.14.5
4
+ version: 0.14.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sadayuki Furuhashi
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-09-06 00:00:00.000000000 Z
11
+ date: 2016-09-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: msgpack
@@ -769,4 +769,3 @@ test_files:
769
769
  - test/test_supervisor.rb
770
770
  - test/test_time_formatter.rb
771
771
  - test/test_unique_id.rb
772
- has_rdoc: false