From 27fc5dc1133ea421a5ed7a49cb23cf1faef85adb Mon Sep 17 00:00:00 2001 From: "elastic-vault-github-plugin-prod[bot]" <150874479+elastic-vault-github-plugin-prod[bot]@users.noreply.github.com> Date: Thu, 17 Oct 2024 17:30:59 +0200 Subject: [PATCH 1/3] [Release] update version (#41220) Co-authored-by: elasticmachine Co-authored-by: Pierre HILBERT --- libbeat/version/version.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libbeat/version/version.go b/libbeat/version/version.go index 8f7bab85484..47d0703ca81 100644 --- a/libbeat/version/version.go +++ b/libbeat/version/version.go @@ -18,4 +18,4 @@ // Code generated by dev-tools/set_version package version -const defaultBeatVersion = "8.15.3" +const defaultBeatVersion = "8.15.4" From 40c31bacbc4d1e68f652f9e13c0f1aab4ba7f5a0 Mon Sep 17 00:00:00 2001 From: "elastic-vault-github-plugin-prod[bot]" <150874479+elastic-vault-github-plugin-prod[bot]@users.noreply.github.com> Date: Thu, 17 Oct 2024 17:31:13 +0200 Subject: [PATCH 2/3] [Release] update test environment (#41221) Co-authored-by: elasticmachine Co-authored-by: Pierre HILBERT --- metricbeat/docker-compose.yml | 12 ++++++------ testing/environments/latest.yml | 6 +++--- x-pack/metricbeat/docker-compose.yml | 4 ++-- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/metricbeat/docker-compose.yml b/metricbeat/docker-compose.yml index bd85025e00f..74e2ff07de6 100644 --- a/metricbeat/docker-compose.yml +++ b/metricbeat/docker-compose.yml @@ -17,11 +17,11 @@ services: # Used by base tests elasticsearch: - image: docker.elastic.co/integrations-ci/beats-elasticsearch:${ELASTICSEARCH_VERSION:-8.15.2}-1 + image: docker.elastic.co/integrations-ci/beats-elasticsearch:${ELASTICSEARCH_VERSION:-8.15.3}-1 build: context: ./module/elasticsearch/_meta args: - ELASTICSEARCH_VERSION: ${ELASTICSEARCH_VERSION:-8.15.2} + ELASTICSEARCH_VERSION: ${ELASTICSEARCH_VERSION:-8.15.3} environment: - "ES_JAVA_OPTS=-Xms256m -Xmx256m" - "transport.host=127.0.0.1" @@ -38,11 +38,11 @@ services: # Used by base tests kibana: - image: docker.elastic.co/integrations-ci/beats-kibana:${KIBANA_VERSION:-8.15.2}-1 + image: docker.elastic.co/integrations-ci/beats-kibana:${KIBANA_VERSION:-8.15.3}-1 build: context: ./module/kibana/_meta args: - KIBANA_VERSION: ${KIBANA_VERSION:-8.15.2} + KIBANA_VERSION: ${KIBANA_VERSION:-8.15.3} healthcheck: test: ["CMD-SHELL", "curl -u beats:testing -s http://localhost:5601/api/status?v8format=true | grep -q '\"overall\":{\"level\":\"available\"'"] retries: 600 @@ -53,11 +53,11 @@ services: # Used by base tests metricbeat: - image: docker.elastic.co/integrations-ci/beats-metricbeat:${BEAT_VERSION:-8.15.2}-1 + image: docker.elastic.co/integrations-ci/beats-metricbeat:${BEAT_VERSION:-8.15.3}-1 build: context: ./module/beat/_meta args: - BEAT_VERSION: ${BEAT_VERSION:-8.15.2} + BEAT_VERSION: ${BEAT_VERSION:-8.15.3} command: '-e' ports: - 5066:5066 diff --git a/testing/environments/latest.yml b/testing/environments/latest.yml index 3d7dfa338de..d9b82527915 100644 --- a/testing/environments/latest.yml +++ b/testing/environments/latest.yml @@ -3,7 +3,7 @@ version: '2.3' services: elasticsearch: - image: docker.elastic.co/elasticsearch/elasticsearch:8.15.2 + image: docker.elastic.co/elasticsearch/elasticsearch:8.15.3 healthcheck: test: ["CMD-SHELL", "curl -s http://localhost:9200/_cat/health?h=status | grep -q green"] retries: 300 @@ -19,7 +19,7 @@ services: - "script.context.template.cache_max_size=2000" logstash: - image: docker.elastic.co/logstash/logstash:8.15.2 + image: docker.elastic.co/logstash/logstash:8.15.3 healthcheck: test: ["CMD", "curl", "-f", "http://localhost:9600/_node/stats"] retries: 300 @@ -29,7 +29,7 @@ services: - ./docker/logstash/pki:/etc/pki:ro kibana: - image: docker.elastic.co/kibana/kibana:8.15.2 + image: docker.elastic.co/kibana/kibana:8.15.3 healthcheck: test: ["CMD", "curl", "-f", "http://localhost:5601"] retries: 300 diff --git a/x-pack/metricbeat/docker-compose.yml b/x-pack/metricbeat/docker-compose.yml index 2a2269d38ce..05748fffbe4 100644 --- a/x-pack/metricbeat/docker-compose.yml +++ b/x-pack/metricbeat/docker-compose.yml @@ -24,11 +24,11 @@ services: kibana: # Copied configuration from OSS metricbeat because services with depends_on # cannot be extended with extends - image: docker.elastic.co/integrations-ci/beats-kibana:${KIBANA_VERSION:-8.15.2}-1 + image: docker.elastic.co/integrations-ci/beats-kibana:${KIBANA_VERSION:-8.15.3}-1 build: context: ../../metricbeat/module/kibana/_meta args: - KIBANA_VERSION: ${KIBANA_VERSION:-8.15.2} + KIBANA_VERSION: ${KIBANA_VERSION:-8.15.3} depends_on: - elasticsearch ports: From e29591eeb3e536d8e8abf95a30759362b9f4874a Mon Sep 17 00:00:00 2001 From: "elastic-vault-github-plugin-prod[bot]" <150874479+elastic-vault-github-plugin-prod[bot]@users.noreply.github.com> Date: Thu, 17 Oct 2024 17:36:54 +0200 Subject: [PATCH 3/3] docs: Prepare Changelog for 8.15.3 (#41261) * docs: Close changelog for 8.15.3 * Update CHANGELOG.asciidoc * Update CHANGELOG.asciidoc * Apply suggestions from code review Co-authored-by: David Kilfoyle <41695641+kilfoyle@users.noreply.github.com> * Apply suggestions from code review Co-authored-by: Craig MacKenzie --------- Co-authored-by: elasticmachine Co-authored-by: Pierre HILBERT Co-authored-by: David Kilfoyle <41695641+kilfoyle@users.noreply.github.com> Co-authored-by: Craig MacKenzie --- CHANGELOG.asciidoc | 41 +++++++++++++++++++++++++++++++++++ CHANGELOG.next.asciidoc | 23 +++----------------- libbeat/docs/release.asciidoc | 1 + 3 files changed, 45 insertions(+), 20 deletions(-) diff --git a/CHANGELOG.asciidoc b/CHANGELOG.asciidoc index e9732e61f3c..2491e385940 100644 --- a/CHANGELOG.asciidoc +++ b/CHANGELOG.asciidoc @@ -3,6 +3,47 @@ :issue: https://github.com/elastic/beats/issues/ :pull: https://github.com/elastic/beats/pull/ +[[release-notes-8.15.3]] +=== Beats version 8.15.3 +https://github.com/elastic/beats/compare/v8.15.2\...v8.15.3[View commits] + +==== Breaking changes + +*Filebeat* + +- Change `log.file.path` field in awscloudwatch input to nested object. {pull}41099[41099] + +==== Bugfixes + +*Affecting all Beats* + +- Allow port number 0 in the community ID flowhash processor. {pull}40259[40259] +- The journald input now restarts if there is an error/crash. {issue}32782[32782] {pull}40558[40558] + +*Filebeat* + +- Fix replace processor handling of zero string replacement validation. {pull}40751[40751] +- Add backup and delete for AWS S3 polling mode feature back. {pull}41071[41071] + +*Metricbeat* + +- Use namespace for GetListMetrics when it exists in AWS. {pull}41022[41022] + +*Packetbeat* + +- Fix upload of bundled ingest pipelines on Windows. {pull}41110[41110] + +==== Added + +*Affecting all Beats* + +- Update Go version to 1.22.8. {pull}41139[41139] + +*Metricbeat* + +- Restore `docker.network.in.*` and `docker.network.out.*` fields in docker module. {pull}40968[40968] + + [[release-notes-8.15.2]] === Beats version 8.15.2 https://github.com/elastic/beats/compare/v8.15.1\...v8.15.2[View commits] diff --git a/CHANGELOG.next.asciidoc b/CHANGELOG.next.asciidoc index 875fb39d7be..4998320b644 100644 --- a/CHANGELOG.next.asciidoc +++ b/CHANGELOG.next.asciidoc @@ -26,7 +26,6 @@ https://github.com/elastic/beats/compare/v8.8.1\...main[Check the HEAD diff] - Removed deprecated Cylance from Beats. See <> for migration options. {pull}38037[38037] - Removed deprecated Bluecoat from Beats. See <> for migration options. {pull}38037[38037] - Introduce input/netmetrics and refactor netflow input metrics {pull}38055[38055] -- Change log.file.path field in awscloudwatch input to nested object. {pull}41099[41099] *Heartbeat* @@ -70,19 +69,6 @@ https://github.com/elastic/beats/compare/v8.8.1\...main[Check the HEAD diff] - Support Elastic Agent control protocol chunking support {pull}37343[37343] - Lower logging level to debug when attempting to configure beats with unknown fields from autodiscovered events/environments {pull}[37816][37816] - Set timeout of 1 minute for FQDN requests {pull}37756[37756] -- Fix the paths in the .cmd script added to the path by the Windows MSI to point to the new C:\Program Files installation location. https://github.com/elastic/elastic-stack-installers/pull/238 -- Change cache processor documentation from `write_period` to `write_interval`. {pull}38561[38561] -- Fix cache processor expiries heap cleanup on partial file writes. {pull}38561[38561] -- Fix cache processor expiries infinite growth when large a large TTL is used and recurring keys are cached. {pull}38561[38561] -- Fix parsing of RFC 3164 process IDs in syslog processor. {issue}38947[38947] {pull}38982[38982] -- Rename the field "apache2.module.error" to "apache.module.error" in Apache error visualization. {issue}39480[39480] {pull}39481[39481] -- Validate config of the `replace` processor {pull}40047[40047] -- Allow port number 0 in the community ID flowhash processor {pull}40259[40259] -- Fix handling of escaped brackets in syslog structured data. {issue}40445[40445] {pull}40446[40446] -- Aborts all active connections for Elasticsearch output. {pull}40572[40572] -- Closes beat Publisher on beat stop and by the Agent manager. {pull}40572[40572] -- The journald input now restarts if there is an error/crash {issue}32782[32782] {pull}40558[40558] -- Update Go version to 1.22.8. {pull}41139[41139] *Auditbeat* @@ -111,8 +97,6 @@ https://github.com/elastic/beats/compare/v8.8.1\...main[Check the HEAD diff] - [threatintel] MISP splitting fix for empty responses {issue}38739[38739] {pull}38917[38917] - Prevent GCP Pub/Sub input blockage by increasing default value of `max_outstanding_messages` {issue}35029[35029] {pull}38985[38985] - Updated Websocket input title to align with existing inputs {pull}39006[39006] -- Fix replace processor handling of zero string replacement validation. {pull}40751[40751] -- Add backup and delete for AWS S3 polling mode feature back. {pull}41071[41071] *Heartbeat* @@ -125,14 +109,12 @@ https://github.com/elastic/beats/compare/v8.8.1\...main[Check the HEAD diff] - Fix Azure Monitor 429 error by causing metricbeat to retry the request again. {pull}38294[38294] - Fix fields not being parsed correctly in postgresql/database {issue}25301[25301] {pull}37720[37720] - rabbitmq/queue - Change the mapping type of `rabbitmq.queue.consumers.utilisation.pct` to `scaled_float` from `long` because the values fall within the range of `[0.0, 1.0]`. Previously, conversion to integer resulted in reporting either `0` or `1`. -- Use namespace for GetListMetrics when exists in AWS {pull}41022[41022] *Osquerybeat* *Packetbeat* -- Fix upload of bundled ingest pipelines on Windows. {pull}41110[41110] *Winlogbeat* @@ -153,7 +135,6 @@ https://github.com/elastic/beats/compare/v8.8.1\...main[Check the HEAD diff] - elasticsearch output now supports `idle_connection_timeout`. {issue}35616[35615] {pull}36843[36843] - Enable early event encoding in the Elasticsearch output, improving cpu and memory use {pull}38572[38572] - The environment variable `BEATS_ADD_CLOUD_METADATA_PROVIDERS` overrides configured/default `add_cloud_metadata` providers {pull}38669[38669] -- Update to Go 1.22.7. {pull}41018[41018] - Replace Ubuntu 20.04 with 24.04 for Docker base images {issue}40743[40743] {pull}40942[40942] - Reduce memory consumption of k8s autodiscovery and the add_kubernetes_metadata processor when Deployment metadata is enabled @@ -223,7 +204,6 @@ https://github.com/elastic/beats/compare/v8.8.1\...main[Check the HEAD diff] - Add new memory/cgroup metrics to Kibana module {pull}37232[37232] - Add SSL support to mysql module {pull}37997[37997] - Add SSL support for aerospike module {pull}38126[38126] -- Restore docker.network.in.* and docker.network.out.* fields in docker module {pull}40968[40968] *Metricbeat* @@ -280,3 +260,6 @@ https://github.com/elastic/beats/compare/v8.8.1\...main[Check the HEAD diff] + + + diff --git a/libbeat/docs/release.asciidoc b/libbeat/docs/release.asciidoc index 0c661bb9397..94cece60fb8 100644 --- a/libbeat/docs/release.asciidoc +++ b/libbeat/docs/release.asciidoc @@ -8,6 +8,7 @@ This section summarizes the changes in each release. Also read <> for more detail about changes that affect upgrade. +* <> * <> * <> * <>