From 233772bf7cfc2d1393543b998290b877ce647e9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Duarte?= Date: Tue, 17 Dec 2024 10:27:12 +0000 Subject: [PATCH 1/4] Include 8.16.2 release notes in 8.x --- docs/static/releasenotes.asciidoc | 45 +++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) diff --git a/docs/static/releasenotes.asciidoc b/docs/static/releasenotes.asciidoc index 30592fc0380..5524715c552 100644 --- a/docs/static/releasenotes.asciidoc +++ b/docs/static/releasenotes.asciidoc @@ -4,6 +4,7 @@ This section summarizes the changes in the following releases: * <> +* <> * <> * <> * <> @@ -116,6 +117,50 @@ The solution is to apply the default change contained in the newer 'jvm.options' * Adds new mixin configuration option `with_obsolete` to mark `ssl` options as obsolete https://github.com/logstash-plugins/logstash-mixin-http_client/pull/46[#46] +[[logstash-8-16-2]] +=== Logstash 8.16.2 Release Notes + +[[notable-8-16-2]] +==== Notable issues fixed + +* Reset internal size counter in BufferedTokenizer during flush https://github.com/elastic/logstash/pull/16771[#16771] +* Ensure overrides to jackson settings are applied during startup https://github.com/elastic/logstash/pull/16758[#16758] + +[[dependencies-8.16.1]] +==== Updates to dependencies + +* Pin `jar-dependencies` to `0.4.1` and `date` to `3.3.3` to avoid clashes between what's bundled with JRuby and newer versions in Rubygems https://github.com/elastic/logstash/pull/16749[#16749] https://github.com/elastic/logstash/pull/16779[#16779] + +==== Plugins + +*Elastic_integration Filter - 0.1.17* + +* Add `x-elastic-product-origin` header to Elasticsearch requests https://github.com/elastic/logstash-filter-elastic_integration/pull/197[#197] + +*Elasticsearch Filter - 3.16.2* + +* Add `x-elastic-product-origin` header to Elasticsearch requests https://github.com/logstash-plugins/logstash-filter-elasticsearch/pull/185[#185] + +*Elasticsearch Input - 4.20.5* + +* Add `x-elastic-product-origin` header to Elasticsearch requests https://github.com/logstash-plugins/logstash-input-elasticsearch/pull/211[#211] + +*Jdbc Integration - 5.5.1* + +* Document `statement_retry_attempts` and `statement_retry_attempts_wait_time` options https://github.com/logstash-plugins/logstash-integration-jdbc/pull/177[#177] + +*Kafka Integration - 11.5.3* + +* Update kafka client to 3.7.1 and transitive dependencies https://github.com/logstash-plugins/logstash-integration-kafka/pull/186[#186] + +*Logstash Integration - 1.0.4* + +* Align output plugin with documentation by producing event-oriented ndjson-compatible payloads instead of JSON array of events https://github.com/logstash-plugins/logstash-integration-logstash/pull/25[#25] + +*Elasticsearch Output - 11.22.10* + +* Add `x-elastic-product-origin` header to Elasticsearch requests https://github.com/logstash-plugins/logstash-output-elasticsearch/pull/1195[#1195] + [[logstash-8-16-1]] === Logstash 8.16.1 Release Notes From ca30633b21355919983ef70c418b038d2a33da24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Duarte?= Date: Tue, 17 Dec 2024 10:33:21 +0000 Subject: [PATCH 2/4] Update releasenotes.asciidoc --- docs/static/releasenotes.asciidoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/static/releasenotes.asciidoc b/docs/static/releasenotes.asciidoc index 5524715c552..3babf9b978f 100644 --- a/docs/static/releasenotes.asciidoc +++ b/docs/static/releasenotes.asciidoc @@ -126,7 +126,7 @@ The solution is to apply the default change contained in the newer 'jvm.options' * Reset internal size counter in BufferedTokenizer during flush https://github.com/elastic/logstash/pull/16771[#16771] * Ensure overrides to jackson settings are applied during startup https://github.com/elastic/logstash/pull/16758[#16758] -[[dependencies-8.16.1]] +[[dependencies-8-16-2]] ==== Updates to dependencies * Pin `jar-dependencies` to `0.4.1` and `date` to `3.3.3` to avoid clashes between what's bundled with JRuby and newer versions in Rubygems https://github.com/elastic/logstash/pull/16749[#16749] https://github.com/elastic/logstash/pull/16779[#16779] From 6939c0fede5f182169de3b25f5dbb9e32887c375 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Duarte?= Date: Wed, 18 Dec 2024 12:45:45 +0000 Subject: [PATCH 3/4] Update releasenotes.asciidoc --- docs/static/releasenotes.asciidoc | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/docs/static/releasenotes.asciidoc b/docs/static/releasenotes.asciidoc index 3babf9b978f..968d709728e 100644 --- a/docs/static/releasenotes.asciidoc +++ b/docs/static/releasenotes.asciidoc @@ -7,6 +7,7 @@ This section summarizes the changes in the following releases: * <> * <> * <> +* <> * <> * <> * <> @@ -290,6 +291,32 @@ the event or by sending it to the pipeline's DLQ if enabled. https://github.com/ * Removed obsolete `verify_ssl` and `debug` options https://github.com/logstash-plugins/logstash-integration-rabbitmq/pull/60[#60] +[[logstash-8-15-5]] +=== Logstash 8.15.5 Release Notes + +[[notable-8-15-5]] +==== Notable issues fixed + +* PipelineBusV2 deadlock proofing: We fixed an issue that could cause a deadlock when the pipeline-to-pipeline feature was in use, causing pipelines (and consequently) {ls} to never terminate https://github.com/elastic/logstash/pull/16681[#16681] +* We reverted a change in BufferedTokenizer (https://github.com/elastic/logstash/pull/16482[#16482]) that improved handling of large messages but introduced a double encoding bug https://github.com/elastic/logstash/pull/16687[#16687]. + +==== Plugins + +*Elastic_integration Filter - 0.1.16* + +* Reflect the Elasticsearch GeoIP changes into the plugin and sync with Elasticsearch 8.16 branch https://github.com/elastic/logstash-filter-elastic_integration/pull/170[#170] + +*Xml Filter - 4.2.1* + +* patch rexml to improve performance of multi-threaded xml parsing https://github.com/logstash-plugins/logstash-filter-xml/pull/84[#84] + +*Tcp Input - 6.4.4* + +* update netty to 4.1.115 https://github.com/logstash-plugins/logstash-input-tcp/pull/227[#227] + +*Http Output - 5.7.1* + +* Added new development `rackup` dependency to fix tests [[logstash-8-15-4]] === Logstash 8.15.4 Release Notes From 6c25f10e350627eac63c27af4d179c20d6278eaf Mon Sep 17 00:00:00 2001 From: kaisecheng <69120390+kaisecheng@users.noreply.github.com> Date: Wed, 8 Jan 2025 11:45:59 +0000 Subject: [PATCH 4/4] Update docs/static/releasenotes.asciidoc --- docs/static/releasenotes.asciidoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/static/releasenotes.asciidoc b/docs/static/releasenotes.asciidoc index 968d709728e..e31b8075560 100644 --- a/docs/static/releasenotes.asciidoc +++ b/docs/static/releasenotes.asciidoc @@ -7,7 +7,7 @@ This section summarizes the changes in the following releases: * <> * <> * <> -* <> +* <> * <> * <> * <>