From c693c95234fedc00f34fdf35a9da1f03c73811cb Mon Sep 17 00:00:00 2001 From: Rye Biesemeyer Date: Fri, 11 Jul 2025 11:19:22 -0700 Subject: [PATCH 1/4] docs: remove outdated info the retry policy changed with v8.1.1 of this plugin, which shipped in late 2017 and was first included with Logstash 6.0. Calling it out here adds confusion, especially because Logstash 9.x is current and people assume that the version refers to Logstash. --- docs/index.asciidoc | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/index.asciidoc b/docs/index.asciidoc index 415ab77b..281f946d 100644 --- a/docs/index.asciidoc +++ b/docs/index.asciidoc @@ -192,7 +192,6 @@ Example: ==== Retry policy -The retry policy has changed significantly in the 8.1.1 release. This plugin uses the Elasticsearch bulk API to optimize its imports into Elasticsearch. These requests may experience either partial or total failures. The bulk API sends batches of requests to an HTTP endpoint. Error codes for the HTTP request are handled differently than error codes for individual documents. From f9ecf2cd8d71d08fb79660561332c96e53768124 Mon Sep 17 00:00:00 2001 From: Rye Biesemeyer Date: Fri, 11 Jul 2025 11:22:05 -0700 Subject: [PATCH 2/4] Update CHANGELOG.md --- CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index b5449aee..9d138326 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 12.0.6 + - [DOC] Remove outdated note about retry policy behaviour change that occurred in 2017 + ## 12.0.5 - [DOC] Fix link to Logstash DLQ docs [#1214](https://github.com/logstash-plugins/logstash-output-elasticsearch/pull/1214) From 83ef15330c04ff422b3bcc272d83989ddfb3984e Mon Sep 17 00:00:00 2001 From: Rye Biesemeyer Date: Fri, 11 Jul 2025 11:22:46 -0700 Subject: [PATCH 3/4] version bump --- logstash-output-elasticsearch.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/logstash-output-elasticsearch.gemspec b/logstash-output-elasticsearch.gemspec index 8e65ca13..072f25d0 100644 --- a/logstash-output-elasticsearch.gemspec +++ b/logstash-output-elasticsearch.gemspec @@ -1,6 +1,6 @@ Gem::Specification.new do |s| s.name = 'logstash-output-elasticsearch' - s.version = '12.0.5' + s.version = '12.0.6' s.licenses = ['apache-2.0'] s.summary = "Stores logs in Elasticsearch" s.description = "This gem is a Logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/logstash-plugin install gemname. This gem is not a stand-alone program" From 9ef3a45020b01da8f771f10a10aa4ffdfd50246a Mon Sep 17 00:00:00 2001 From: Rye Biesemeyer Date: Fri, 11 Jul 2025 11:24:41 -0700 Subject: [PATCH 4/4] Update CHANGELOG.md add link to PR --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d138326..ef8403b5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,5 @@ ## 12.0.6 - - [DOC] Remove outdated note about retry policy behaviour change that occurred in 2017 + - [DOC] Remove outdated note about retry policy behaviour change that occurred in 2017 [#1215](https://github.com/logstash-plugins/logstash-output-elasticsearch/pull/1215) ## 12.0.5 - [DOC] Fix link to Logstash DLQ docs [#1214](https://github.com/logstash-plugins/logstash-output-elasticsearch/pull/1214)