From 922d2c3e86f6546901ad0e79c5d693f54231dcb8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81lex=20Ruiz?= Date: Fri, 25 Oct 2024 12:51:02 +0200 Subject: [PATCH 1/4] Support new version 4.9.2 --- CHANGELOG.md | 2 +- VERSION | 2 +- distribution/packages/src/rpm/wazuh-indexer.rpm.spec | 2 ++ docker/README.md | 4 ++-- packaging_scripts/README.md | 10 +++++----- 5 files changed, 11 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 93322d0bf2563..9bb7f7680bd04 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,4 +18,4 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ### Security -[Unreleased 4.9.x]: https://github.com/wazuh/wazuh-indexer/compare/v4.9.1-rc3...4.9.1-rc4 +[Unreleased 4.9.x]: https://github.com/wazuh/wazuh-indexer/compare/v4.9.1...4.9.2 diff --git a/VERSION b/VERSION index 1f1ac7c2f3304..b550c72a11d1e 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.9.1 \ No newline at end of file +4.9.2 \ No newline at end of file diff --git a/distribution/packages/src/rpm/wazuh-indexer.rpm.spec b/distribution/packages/src/rpm/wazuh-indexer.rpm.spec index e119035df4bec..ced51c2780389 100644 --- a/distribution/packages/src/rpm/wazuh-indexer.rpm.spec +++ b/distribution/packages/src/rpm/wazuh-indexer.rpm.spec @@ -266,6 +266,8 @@ exit 0 %attr(750, %{name}, %{name}) %{product_dir}/performance-analyzer-rca/bin/* %changelog +* Tue Oct 15 2024 support - 4.9.2 +- More info: https://documentation.wazuh.com/current/release-notes/release-4-9-2.html * Tue Oct 15 2024 support - 4.9.1 - More info: https://documentation.wazuh.com/current/release-notes/release-4-9-1.html * Thu Aug 15 2024 support - 4.9.0 diff --git a/docker/README.md b/docker/README.md index 8c3236f72681f..6e4485ed5de15 100644 --- a/docker/README.md +++ b/docker/README.md @@ -45,11 +45,11 @@ Refer to [packaging_scripts/README.md](../packaging_scripts/README.md) for detai The [prod](./prod) folder contains the code to build Docker images. A tarball of `wazuh-indexer` needs to be located at the same level that the Dockerfile. Below there is an example of the command needed to build the image. Set the build arguments and the image tag accordingly. ```console -docker build --build-arg="VERSION=4.9.1" --build-arg="INDEXER_TAR_NAME=wazuh-indexer-4.9.1-1_linux-x64_cfca84f.tar.gz" --tag=wazuh-indexer:4.9.1 --progress=plain --no-cache . +docker build --build-arg="VERSION=4.9.2" --build-arg="INDEXER_TAR_NAME=wazuh-indexer-4.9.2-1_linux-x64_cfca84f.tar.gz" --tag=wazuh-indexer:4.9.2 --progress=plain --no-cache . ``` Then, start a container with: ```console -docker run -it --rm wazuh-indexer:4.9.1 +docker run -it --rm wazuh-indexer:4.9.2 ``` \ No newline at end of file diff --git a/packaging_scripts/README.md b/packaging_scripts/README.md index 1c6c7cb35173a..d778374c5595c 100644 --- a/packaging_scripts/README.md +++ b/packaging_scripts/README.md @@ -77,7 +77,7 @@ For DEB packages, the `assemble.sh` script will perform the following operations ``` artifacts/ |-- dist - | |-- wazuh-indexer-min_4.9.1_amd64.deb + | |-- wazuh-indexer-min_4.9.2_amd64.deb `-- tmp `-- deb |-- Makefile @@ -86,7 +86,7 @@ For DEB packages, the `assemble.sh` script will perform the following operations |-- etc |-- usr |-- var - `-- wazuh-indexer-min_4.9.1_amd64.deb + `-- wazuh-indexer-min_4.9.2_amd64.deb ``` `usr`, `etc` and `var` folders contain `wazuh-indexer` files, extracted from `wazuh-indexer-min-*.deb`. @@ -109,8 +109,8 @@ For DEB packages, the `assemble.sh` script will perform the following operations artifacts/ |-- artifact_name.txt |-- dist - | |-- wazuh-indexer-min_4.9.1_amd64.deb - | `-- wazuh-indexer_4.9.1_amd64.deb + | |-- wazuh-indexer-min_4.9.2_amd64.deb + | `-- wazuh-indexer_4.9.2_amd64.deb `-- tmp `-- deb |-- Makefile @@ -119,7 +119,7 @@ For DEB packages, the `assemble.sh` script will perform the following operations |-- etc |-- usr |-- var - |-- wazuh-indexer-min_4.9.1_amd64.deb + |-- wazuh-indexer-min_4.9.2_amd64.deb `-- debian/ | -- control | -- copyright From dd6192acdb94d45a555f73da1da298478934d9e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81lex=20Ruiz?= Date: Fri, 25 Oct 2024 12:53:28 +0200 Subject: [PATCH 2/4] Add estimated release date for 4.9.2 --- distribution/packages/src/rpm/wazuh-indexer.rpm.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/distribution/packages/src/rpm/wazuh-indexer.rpm.spec b/distribution/packages/src/rpm/wazuh-indexer.rpm.spec index ced51c2780389..c9874f3c86597 100644 --- a/distribution/packages/src/rpm/wazuh-indexer.rpm.spec +++ b/distribution/packages/src/rpm/wazuh-indexer.rpm.spec @@ -266,7 +266,7 @@ exit 0 %attr(750, %{name}, %{name}) %{product_dir}/performance-analyzer-rca/bin/* %changelog -* Tue Oct 15 2024 support - 4.9.2 +* Tue Oct 30 2024 support - 4.9.2 - More info: https://documentation.wazuh.com/current/release-notes/release-4-9-2.html * Tue Oct 15 2024 support - 4.9.1 - More info: https://documentation.wazuh.com/current/release-notes/release-4-9-1.html From 5e6bcef8d5ca1c8f3ac6bfab190e96a762d3375d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81lex=20Ruiz?= Date: Fri, 25 Oct 2024 12:55:15 +0200 Subject: [PATCH 3/4] Fix estimates release date for 4.9.2 --- distribution/packages/src/rpm/wazuh-indexer.rpm.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/distribution/packages/src/rpm/wazuh-indexer.rpm.spec b/distribution/packages/src/rpm/wazuh-indexer.rpm.spec index c9874f3c86597..1a534bafeb58a 100644 --- a/distribution/packages/src/rpm/wazuh-indexer.rpm.spec +++ b/distribution/packages/src/rpm/wazuh-indexer.rpm.spec @@ -266,7 +266,7 @@ exit 0 %attr(750, %{name}, %{name}) %{product_dir}/performance-analyzer-rca/bin/* %changelog -* Tue Oct 30 2024 support - 4.9.2 +* Wed Oct 30 2024 support - 4.9.2 - More info: https://documentation.wazuh.com/current/release-notes/release-4-9-2.html * Tue Oct 15 2024 support - 4.9.1 - More info: https://documentation.wazuh.com/current/release-notes/release-4-9-1.html From a18432717083abc534cdbcaa5d3786bc1ebfeb3f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81lex=20Ruiz?= Date: Fri, 25 Oct 2024 13:54:59 +0200 Subject: [PATCH 4/4] Fix 4.9.1 release notes title --- release-notes/wazuh.release-notes-4.9.1.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release-notes/wazuh.release-notes-4.9.1.md b/release-notes/wazuh.release-notes-4.9.1.md index 1ba2f5478f08d..16a3f82a18226 100644 --- a/release-notes/wazuh.release-notes-4.9.1.md +++ b/release-notes/wazuh.release-notes-4.9.1.md @@ -1,4 +1,4 @@ -## 2024-09-27 Version 4.9.1-rc2 Release Notes +## 2024-10-15 Version 4.9.1 Release Notes ## [4.9.1] ### Added