fluent-plugin-elasticsearch 2.8.4 → 2.8.5

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
  SHA256:
3
- metadata.gz: 99d4765746584010b4516e0578981297209f154490d556a3dc4d03a085cd1322
4
- data.tar.gz: e2562b75d8728b878ae9d8daadb179a4b362301ac5d124732e6b2e4751ecc0db
3
+ metadata.gz: bfb94e3acf5abed14167d45d69f824841fbd6b225ffa1f3f0d14c4a4a5d0f6df
4
+ data.tar.gz: acc462fba9cd5684598c0ec211a244ed971594862d16d56c29f918be9ec1c5d8
5
5
  SHA512:
6
- metadata.gz: bfa2dc9c4f11a42e6b77c6504377cd115a3676715d06ec99481420edb8f0cf20a88764c840363c577f5169b635918b91029c648d2303a3af5e285b6f4f0ce701
7
- data.tar.gz: 84c989522629c9942de5982d55473b42c5875c928ed7c217110bcd1ce6b81c6c1a1a7f9b1e1430cd90cb6119a3976c235571047f25f2cbab9763a035b5d44277
6
+ metadata.gz: d8cf48e798b683eb8edc6bcf1d2052861bfa62a4964e5a96c3afa31eb54eaededc659a497da1038398e1761bdefcf7fc83a8ac0bc93ce82b4c3f79d9518417be
7
+ data.tar.gz: b8fc6422a1e2f48ac5628b811b0d8923cac12107254dc5b9618d6f0b86aa6aede075c74cb5fb7cc40e53b76bec6a4c4196bfdc19bc63da547b6ddf9d2a0e18ce
data/History.md CHANGED
@@ -1,8 +1,9 @@
1
1
  ## Changelog [[tags]](https://github.com/uken/fluent-plugin-elasticsearch/tags)
2
2
 
3
3
  ### [Unreleased]
4
- - Log ES response errors (#230)
5
- - Use latest elasticsearch-ruby (#240)
4
+
5
+ ### 2.8.5
6
+ - Add deprecated option into content_type parameter (#391)
6
7
 
7
8
  ### 2.8.4
8
9
  - Use nanosecond precision in elasticsearch_dynamic (#387)
@@ -95,6 +96,10 @@
95
96
  ### 1.9.4
96
97
  - Include 'Content-Type' header in `transport_options`
97
98
 
99
+ ### 1.9.3
100
+ - Use latest elasticsearch-ruby (#240)
101
+ - Log ES response errors (#230)
102
+
98
103
  ### 1.9.2
99
104
  - Fix elasticsearch_dynamic for v0.14 (#224)
100
105
 
@@ -3,7 +3,7 @@ $:.push File.expand_path('../lib', __FILE__)
3
3
 
4
4
  Gem::Specification.new do |s|
5
5
  s.name = 'fluent-plugin-elasticsearch'
6
- s.version = '2.8.4'
6
+ s.version = '2.8.5'
7
7
  s.authors = ['diogo', 'pitr']
8
8
  s.email = ['pitr.vern@gmail.com', 'me@diogoterror.com']
9
9
  s.description = %q{Elasticsearch output plugin for Fluent event collector}
@@ -80,7 +80,11 @@ EOC
80
80
  config_param :reconnect_on_error, :bool, :default => false
81
81
  config_param :pipeline, :string, :default => nil
82
82
  config_param :with_transporter_log, :bool, :default => false
83
- config_param :content_type, :enum, list: [:"application/json", :"application/x-ndjson"], :default => :"application/json"
83
+ config_param :content_type, :enum, list: [:"application/json", :"application/x-ndjson"], :default => :"application/json",
84
+ :deprecated => <<EOC
85
+ elasticsearch gem v6.0.2 starts to use correct Content-Type. Please upgrade elasticserach gem and stop to use this option.
86
+ see: https://github.com/elastic/elasticsearch-ruby/pull/514
87
+ EOC
84
88
 
85
89
  config_section :buffer do
86
90
  config_set_default :@type, DEFAULT_BUFFER_TYPE
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluent-plugin-elasticsearch
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.8.4
4
+ version: 2.8.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - diogo
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2018-03-26 00:00:00.000000000 Z
12
+ date: 2018-03-28 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: fluentd