logstash-output-elasticsearch 10.8.3-java → 10.8.4-java
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 +4 -4
- data/CHANGELOG.md +3 -0
- data/lib/logstash/outputs/elasticsearch/http_client.rb +1 -0
- data/logstash-output-elasticsearch.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7bbaed62e36b6543bf68420603a64e84f39a61e3ffaaf3456f28fad73295430c
|
|
4
|
+
data.tar.gz: '0682c7ac69384d7db244e33186237461c148683cc205b72660251e5d3041765c'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8a546bff1b7623d8e37fd11b9551691ff87072831f81b00af1c4bfd8086e8f7ee45fad2b78682f68927e97d883dfc923a90f76bc53f648885fcd3d5d3c437028
|
|
7
|
+
data.tar.gz: 4ea4dc460aa38935cd4e72d2c35c069fb372d02c99fa5cf47e48dbce13994d3615296a3601c8a6c6641f6db587ec0776bc04fcd7b7902c32f31c8c6e95eb4340
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
## 10.8.4
|
|
2
|
+
- Fixed an issue where a retried request would drop "update" parameters [#800](https://github.com/logstash-plugins/logstash-output-elasticsearch/pull/800)
|
|
3
|
+
|
|
1
4
|
## 10.8.3
|
|
2
5
|
- Avoid to implicitly set deprecated type to `_doc` when connects to Elasticsearch version 7.x [#994](https://github.com/logstash-plugins/logstash-output-elasticsearch/pull/994)
|
|
3
6
|
|
|
@@ -400,6 +400,7 @@ module LogStash; module Outputs; class ElasticSearch;
|
|
|
400
400
|
|
|
401
401
|
# Build a bulk item for an elasticsearch update action
|
|
402
402
|
def update_action_builder(args, source)
|
|
403
|
+
args = args.clone()
|
|
403
404
|
if args[:_script]
|
|
404
405
|
# Use the event as a hash from your script with variable name defined
|
|
405
406
|
# by script_var_name (default: "event")
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: logstash-output-elasticsearch
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 10.8.
|
|
4
|
+
version: 10.8.4
|
|
5
5
|
platform: java
|
|
6
6
|
authors:
|
|
7
7
|
- Elastic
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-02-
|
|
11
|
+
date: 2021-02-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|