fluent-plugin-elasticsearch 5.0.0 → 5.0.1

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: 5f2f8268d9a8a5acf6d941a915044bd3781a5722cea8bc7ac205d6b7fd6fe580
4
- data.tar.gz: 7d9373fb963040efac0ea42f11bf1841f2e0b2a39b5566f5e2794507e77e5f5c
3
+ metadata.gz: c487c22f2307f4c034e7c3663cb86a65045a0241a986109742e4c2dc690bae62
4
+ data.tar.gz: 1de854db6c92fa22e6b859f9d707c823f9e01146747b20b3a97bf987d26fc08e
5
5
  SHA512:
6
- metadata.gz: 0e432748181717cedfa55239d2da7b0141c3280da7240f6f9643db411f1f3168f00f88c6933d65a5d1b944620dab0d87ce088f4dba76fdf17cec336ca55e83bf
7
- data.tar.gz: f44b2a14c5a13e1a59bd7d6926af13a9a9ba7b990594bca45de20071756d9ca88f7ee53d6ec00e09f0ad2ed054510a7803ac11c7b695275d37dbacb1e5d51457
6
+ metadata.gz: cda37994bd13fd7449ac9388747f890d25046cb26d4625b6a24aef020f7acc8c223caf1683d583eefec941a35aa8719d709be8380d8d43bb67d550dd958ea3a8
7
+ data.tar.gz: 900dca29d132e07b7f01c6cd319b4b17fa2ca96ebbe4202b2a46c3e241681727f8ba5d4ce625063fae4e5297718038db8c44f796cf27d90e7950baa6bb93ddb3
data/History.md CHANGED
@@ -2,8 +2,11 @@
2
2
 
3
3
  ### [Unreleased]
4
4
 
5
+ ### 5.0.1
6
+ - Use elasticsearch/api instead of elasticsearch/xpack (#870)
7
+
5
8
  ### 5.0.0
6
- - Support #retry_operate on data stream (#863)
9
+ - Support #retry_operate on data stream (#863)
7
10
  - Support placeholder in @data\_stream\_name for @type elasticsearch\_data\_stream (#862)
8
11
  - Extract troubleshooting section (#861)
9
12
  - Fix unmatched `<source>` close tag (#860)
@@ -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 = '5.0.0'
6
+ s.version = '5.0.1'
7
7
  s.authors = ['diogo', 'pitr', 'Hiroshi Hatake']
8
8
  s.email = ['pitr.vern@gmail.com', 'me@diogoterror.com', 'cosmo0920.wp@gmail.com']
9
9
  s.description = %q{Elasticsearch output plugin for Fluent event collector}
@@ -18,9 +18,10 @@ module Fluent::Plugin
18
18
  super
19
19
 
20
20
  begin
21
+ require 'elasticsearch/api'
21
22
  require 'elasticsearch/xpack'
22
23
  rescue LoadError
23
- raise Fluent::ConfigError, "'elasticsearch/xpack'' is required for <@elasticsearch_data_stream>."
24
+ raise Fluent::ConfigError, "'elasticsearch/api', 'elasticsearch/xpack' are required for <@elasticsearch_data_stream>."
24
25
  end
25
26
 
26
27
  # ref. https://www.elastic.co/guide/en/elasticsearch/reference/master/indices-create-data-stream.html
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: 5.0.0
4
+ version: 5.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - diogo
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2021-02-02 00:00:00.000000000 Z
13
+ date: 2021-03-02 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: fluentd