From 10079f4a6cfe62d8fea8fb6715f739413f6c518a Mon Sep 17 00:00:00 2001 From: wazuhci <22834044+wazuhci@users.noreply.github.com> Date: Mon, 22 Jun 2026 12:27:01 +0000 Subject: [PATCH 1/4] feat: bump main --- .env | 6 ++--- .github/workflows/5_build_and_push_images.yml | 4 ++-- .../workflows/5_check_integration_tools.yml | 2 +- CHANGELOG.md | 18 +++++++++++++++ README.md | 2 +- VERSION.json | 4 ++-- build-docker-images/build-images.sh | 18 +++++++-------- build-docker-images/docker-bake.hcl | 4 ++-- docs/dev/build-image.md | 4 ++-- docs/dev/introduction.md | 2 +- docs/dev/setup.md | 6 ++--- docs/dev/workflow-usage.md | 2 +- docs/ref/backup-and-restore.md | 4 ++-- docs/ref/configuration/configuration-files.md | 2 +- docs/ref/configuration/configuration.md | 2 +- .../getting-started/deployment/deployment.md | 6 ++--- .../getting-started/deployment/multi-node.md | 4 ++-- .../getting-started/deployment/single-node.md | 4 ++-- docs/ref/getting-started/getting-started.md | 6 ++--- docs/ref/getting-started/requirements.md | 4 ++-- docs/ref/glossary.md | 6 ++--- docs/ref/introduction/description.md | 6 ++--- docs/ref/introduction/introduction.md | 4 ++-- docs/ref/upgrade.md | 22 +++++++++---------- multi-node/docker-compose.yml | 12 +++++----- single-node/docker-compose.yml | 6 ++--- wazuh-agent/docker-compose.yml | 2 +- 27 files changed, 90 insertions(+), 72 deletions(-) diff --git a/.env b/.env index 2e783ae2..147ce7c9 100755 --- a/.env +++ b/.env @@ -1,4 +1,4 @@ -WAZUH_VERSION=5.0.0 -WAZUH_IMAGE_VERSION=5.0.0 +WAZUH_VERSION=5.0.1 +WAZUH_IMAGE_VERSION=5.0.1 WAZUH_REGISTRY=docker.io -IMAGE_TAG=5.0.0 +IMAGE_TAG=5.0.1 diff --git a/.github/workflows/5_build_and_push_images.yml b/.github/workflows/5_build_and_push_images.yml index 9aaf8286..9b89b79f 100644 --- a/.github/workflows/5_build_and_push_images.yml +++ b/.github/workflows/5_build_and_push_images.yml @@ -6,7 +6,7 @@ on: inputs: image_tag: description: 'Docker image tag' - default: '5.0.0' + default: '5.0.1' required: true docker_reference: description: 'wazuh-docker reference' @@ -42,7 +42,7 @@ on: inputs: image_tag: description: 'Docker image tag' - default: '5.0.0' + default: '5.0.1' required: true type: string docker_reference: diff --git a/.github/workflows/5_check_integration_tools.yml b/.github/workflows/5_check_integration_tools.yml index 1cdc3793..71e35ee2 100644 --- a/.github/workflows/5_check_integration_tools.yml +++ b/.github/workflows/5_check_integration_tools.yml @@ -27,7 +27,7 @@ on: - multi-node - both version: - description: 'Image version to test (e.g. 5.0.0).' + description: 'Image version to test (e.g. 5.0.1).' required: false type: string stage: diff --git a/CHANGELOG.md b/CHANGELOG.md index 4108269d..bd16c2fe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,24 @@ # Change Log All notable changes to this project will be documented in this file. +## [5.0.1] + +### Added + +- None + +### Changed + +- None + +### Fixed + +- None + +### Deleted + +- None + ## [5.0.0] ### Added diff --git a/README.md b/README.md index 70a7071d..f0096db1 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ The `wazuh/wazuh-docker` repository provides resources to deploy the Wazuh cyber ## Branch Convention - `main`: Developing and testing of new features. -- `X.Y.Z`: Version-specific branches (e.g., `5.0.0`, `4.14.0`, etc.). +- `X.Y.Z`: Version-specific branches (e.g., `5.0.1`, `4.14.0`, etc.). ## Documentation diff --git a/VERSION.json b/VERSION.json index 9cfe1722..395c5752 100644 --- a/VERSION.json +++ b/VERSION.json @@ -1,4 +1,4 @@ { - "version": "5.0.0", - "stage": "beta3" + "version": "5.0.1", + "stage": "alpha0" } diff --git a/build-docker-images/build-images.sh b/build-docker-images/build-images.sh index 965ca20a..ed21811a 100755 --- a/build-docker-images/build-images.sh +++ b/build-docker-images/build-images.sh @@ -8,13 +8,13 @@ # License (version 2) as published by the FSF - Free Software # Foundation. -WAZUH_IMAGE_VERSION=5.0.0 -IMAGE_TAG=5.0.0 +WAZUH_IMAGE_VERSION=5.0.1 +IMAGE_TAG=5.0.1 WAZUH_CURRENT_VERSION=$(curl --silent https://api.github.com/repos/wazuh/wazuh/releases/latest | grep '["]tag_name["]:' | sed -E 's/.*\"([^\"]+)\".*/\1/' | cut -c 2- | sed -e 's/\.//g') IMAGE_VERSION=${WAZUH_IMAGE_VERSION} WAZUH_REGISTRY=docker.io -WAZUH_IMAGE_VERSION="5.0.0" +WAZUH_IMAGE_VERSION="5.0.1" WAZUH_DEV_STAGE="" WAZUH_COMPONENTS_COMMIT_LIST='' IS_DEV_BUILD="" @@ -38,9 +38,9 @@ ctrl_c() { build() { - # WAZUH_MINOR_VERSION: Extracts major and minor version only (e.g., 5.0.0 -> 5.0) + # WAZUH_MINOR_VERSION: Extracts major and minor version only (e.g., 5.0.1 -> 5.0) WAZUH_MINOR_VERSION="${WAZUH_IMAGE_VERSION%.*}" - # WAZUH_MAJOR_VERSION: Extracts major version only (e.g., 5.0.0 -> 5) + # WAZUH_MAJOR_VERSION: Extracts major version only (e.g., 5.0.1 -> 5) WAZUH_MAJOR_VERSION="${WAZUH_IMAGE_VERSION%%.*}" # WAZUH_STAGE: Extract the 'stage' (e.g., alpha0, beta1, rc2) from the local JSON metadata file. # Note: This is primarily used for pre-release package naming. @@ -192,10 +192,10 @@ build() { # Generate per-component image tags. # The commit suffix is only appended when --dev is passed. This ensures: - # dev=false, tag=5.0.0 → 5.0.0 - # dev=false, tag=5.0.0-beta1 → 5.0.0-beta1 - # dev=true, tag=5.0.0 → 5.0.0-latest - # dev=true, tag=5.0.0-beta1 → 5.0.0-beta1-latest + # dev=false, tag=5.0.1 → 5.0.1 + # dev=false, tag=5.0.1-beta1 → 5.0.1-beta1 + # dev=true, tag=5.0.1 → 5.0.1-latest + # dev=true, tag=5.0.1-beta1 → 5.0.1-beta1-latest make_tag() { local commit=$1 if [ -n "${IS_DEV_BUILD}" ]; then diff --git a/build-docker-images/docker-bake.hcl b/build-docker-images/docker-bake.hcl index 73c041c7..9d9e4c3c 100644 --- a/build-docker-images/docker-bake.hcl +++ b/build-docker-images/docker-bake.hcl @@ -12,7 +12,7 @@ # ── Global variables ────────────────────────────────────────────────────────── -variable "WAZUH_VERSION" { default = "5.0.0" } +variable "WAZUH_VERSION" { default = "5.0.1" } variable "WAZUH_REGISTRY" { default = "docker.io" } # Set IMAGE_TAG externally to override; defaults to WAZUH_VERSION. @@ -23,7 +23,7 @@ variable "MULTIARCH" { default = "" } # Per-component tags — all default to IMAGE_TAG. # In dev builds the shell script sets each one independently to append the -# per-component commit ref (e.g. MANAGER_TAG=5.0.0-beta1-abc1234). +# per-component commit ref (e.g. MANAGER_TAG=5.0.1-beta1-abc1234). variable "INDEXER_TAG" { default = IMAGE_TAG } variable "MANAGER_TAG" { default = IMAGE_TAG } variable "DASHBOARD_TAG" { default = IMAGE_TAG } diff --git a/docs/dev/build-image.md b/docs/dev/build-image.md index 2bc86b43..7f378fcc 100644 --- a/docs/dev/build-image.md +++ b/docs/dev/build-image.md @@ -19,7 +19,7 @@ Then execute: The script also allows to build images from other versions of Wazuh by using the `-v` or `--version` argument: ```bash -./build-images.sh -v 5.0.0 +./build-images.sh -v 5.0.1 ``` To get all the available script options use the `-h` or `--help` option: @@ -32,7 +32,7 @@ Usage: build-images.sh [OPTIONS] -d, --dev [Optional] Set the development stage you want to build, example rc2 or beta1, not used by default. -refs, --references [Optional] Set each Wazuh component reference to be build (indexer, manager, dasboard and agent). By default, using the latest release: ['latest', 'latest', 'latest', 'latest'] -rg, --registry [Optional] Set the Docker registry to push the images. - -v, --version [Optional] Set the Wazuh version should be builded. By default, 5.0.0. + -v, --version [Optional] Set the Wazuh version should be builded. By default, 5.0.1. -m, --multiarch [Optional] Enable multi-architecture builds. -h, --help Show this help. diff --git a/docs/dev/introduction.md b/docs/dev/introduction.md index bb0f0850..e78430de 100644 --- a/docs/dev/introduction.md +++ b/docs/dev/introduction.md @@ -1,6 +1,6 @@ # Development Guide - Introduction -Welcome to the Development Guide for Wazuh-docker version 5.0.0 This guide is intended for developers, contributors, and advanced users who wish to understand the development aspects of the Wazuh-Docker project, build custom Docker images, or contribute to its development. +Welcome to the Development Guide for Wazuh-docker version 5.0.1 This guide is intended for developers, contributors, and advanced users who wish to understand the development aspects of the Wazuh-Docker project, build custom Docker images, or contribute to its development. ## Purpose of This Guide diff --git a/docs/dev/setup.md b/docs/dev/setup.md index 3456bd24..3889ccc5 100644 --- a/docs/dev/setup.md +++ b/docs/dev/setup.md @@ -1,6 +1,6 @@ # Development Guide - Setup Environment -This section outlines the steps required to set up your local development environment for working with the Wazuh-Docker project (version 5.0.0). A proper setup is crucial for building images, running tests, and contributing effectively. +This section outlines the steps required to set up your local development environment for working with the Wazuh-Docker project (version 5.0.1). A proper setup is crucial for building images, running tests, and contributing effectively. ## Prerequisites @@ -26,12 +26,12 @@ Before you begin, ensure your system meets the following requirements: Follow these steps to prepare your development environment: 1. **Clone the Repository**: - Clone the `wazuh-docker` repository from GitHub. It's important to check out the specific branch you intend to work with, in this case, `5.0.0`. + Clone the `wazuh-docker` repository from GitHub. It's important to check out the specific branch you intend to work with, in this case, `5.0.1`. ```bash git clone [https://github.com/wazuh/wazuh-docker.git](https://github.com/wazuh/wazuh-docker.git) cd wazuh-docker - git checkout v5.0.0 + git checkout v5.0.1 ``` 2. **Verify Docker Installation**: diff --git a/docs/dev/workflow-usage.md b/docs/dev/workflow-usage.md index 36da4c56..e9280a37 100644 --- a/docs/dev/workflow-usage.md +++ b/docs/dev/workflow-usage.md @@ -6,7 +6,7 @@ The Procedure_push_docker_images.yml workflow builds and pushes multi-architectu | Parameter | Description | Default | Required | |-----------|-------------|---------|----------| -| `image_tag` | Docker image version tag | `5.0.0` | Yes | +| `image_tag` | Docker image version tag | `5.0.1` | Yes | | `docker_reference` | Branch/tag to build from | - | Yes | | `reference` | Dev reference (for pre-release builds) | `latest` | No | | `id` | Workflow run identifier | - | No | diff --git a/docs/ref/backup-and-restore.md b/docs/ref/backup-and-restore.md index ee512a68..c34ed126 100644 --- a/docs/ref/backup-and-restore.md +++ b/docs/ref/backup-and-restore.md @@ -2,5 +2,5 @@ For backup and restore, refer to the documentation for each component: -- [Wazuh manager](https://github.com/wazuh/wazuh/blob/v5.0.0/docs/ref/backup-restore.md) -- [Wazuh agent](https://github.com/wazuh/wazuh-agent/blob/v5.0.0/docs/ref/backup-restore.md) +- [Wazuh manager](https://github.com/wazuh/wazuh/blob/v5.0.1/docs/ref/backup-restore.md) +- [Wazuh agent](https://github.com/wazuh/wazuh-agent/blob/v5.0.1/docs/ref/backup-restore.md) diff --git a/docs/ref/configuration/configuration-files.md b/docs/ref/configuration/configuration-files.md index 0f591f6d..57037e87 100644 --- a/docs/ref/configuration/configuration-files.md +++ b/docs/ref/configuration/configuration-files.md @@ -28,7 +28,7 @@ docker compose up -d ``` -Consult the official Wazuh documentation for version 5.0.0 for detailed information on all possible configuration parameters for each component. +Consult the official Wazuh documentation for version 5.0.1 for detailed information on all possible configuration parameters for each component. ## Persistence configuration diff --git a/docs/ref/configuration/configuration.md b/docs/ref/configuration/configuration.md index 8d7d8cbd..9577231d 100644 --- a/docs/ref/configuration/configuration.md +++ b/docs/ref/configuration/configuration.md @@ -1,6 +1,6 @@ # Reference Manual - Configuration -This section details how to configure your Wazuh-Docker deployment (version 5.0.0). Proper configuration is key to tailoring the Wazuh stack to your specific needs, managing data persistence, and integrating with your environment. +This section details how to configure your Wazuh-Docker deployment (version 5.0.1). Proper configuration is key to tailoring the Wazuh stack to your specific needs, managing data persistence, and integrating with your environment. ## Overview of Configuration Methods diff --git a/docs/ref/getting-started/deployment/deployment.md b/docs/ref/getting-started/deployment/deployment.md index 61fcb922..19f6767d 100644 --- a/docs/ref/getting-started/deployment/deployment.md +++ b/docs/ref/getting-started/deployment/deployment.md @@ -1,6 +1,6 @@ # Reference Manual - Deployment -This section provides detailed instructions for deploying Wazuh-Docker (version 5.0.0) in various configurations. Choose the deployment model that best suits your needs, from simple single-node setups for testing to more robust multi-node configurations for production environments. +This section provides detailed instructions for deploying Wazuh-Docker (version 5.0.1) in various configurations. Choose the deployment model that best suits your needs, from simple single-node setups for testing to more robust multi-node configurations for production environments. ## Overview of Deployment Options @@ -24,11 +24,11 @@ Ensure you have: - Met all the [System Requirements](../requirements.md). - Installed Docker and Docker Compose on your host(s). -- Cloned the `wazuh-docker` repository (version `5.0.0`) or downloaded the necessary deployment files. +- Cloned the `wazuh-docker` repository (version `5.0.1`) or downloaded the necessary deployment files. ```bash git clone https://github.com/wazuh/wazuh-docker.git cd wazuh-docker - git checkout v5.0.0 + git checkout v5.0.1 ``` - Made a backup of any existing Wazuh data if you are migrating or upgrading. diff --git a/docs/ref/getting-started/deployment/multi-node.md b/docs/ref/getting-started/deployment/multi-node.md index d2f46887..7ca0e4e5 100644 --- a/docs/ref/getting-started/deployment/multi-node.md +++ b/docs/ref/getting-started/deployment/multi-node.md @@ -21,8 +21,8 @@ This deployment utilizes the `multi-node/docker-compose.yml` file, which defines 3. Download the certificate creation script and config.yml file: ```bash - curl -o wazuh-certs-tool.sh https://packages.wazuh.com/5.0/wazuh-certs-tool-5.0.0-1.sh - curl -o config.yml https://packages.wazuh.com/5.0/config-5.0.0-1.yml + curl -o wazuh-certs-tool.sh https://packages.wazuh.com/5.0/wazuh-certs-tool-5.0.1-1.sh + curl -o config.yml https://packages.wazuh.com/5.0/config-5.0.1-1.yml ``` 4. Edit the `config.yml` file with the configuration of the Wazuh components to be deployed diff --git a/docs/ref/getting-started/deployment/single-node.md b/docs/ref/getting-started/deployment/single-node.md index a2912e28..f3055c50 100644 --- a/docs/ref/getting-started/deployment/single-node.md +++ b/docs/ref/getting-started/deployment/single-node.md @@ -21,8 +21,8 @@ This deployment uses the `single-node/docker-compose.yml` file, which defines a 3. Download the certificate creation script and `config.yml` file: ```bash - curl -o wazuh-certs-tool.sh https://packages.wazuh.com/5.0/wazuh-certs-tool-5.0.0-1.sh - curl -o config.yml https://packages.wazuh.com/5.0/config-5.0.0-1.yml + curl -o wazuh-certs-tool.sh https://packages.wazuh.com/5.0/wazuh-certs-tool-5.0.1-1.sh + curl -o config.yml https://packages.wazuh.com/5.0/config-5.0.1-1.yml ``` 4. Edit the config.yml file with the configuration of the Wazuh components to be deployed diff --git a/docs/ref/getting-started/getting-started.md b/docs/ref/getting-started/getting-started.md index 5aed6620..fe7ac7b8 100644 --- a/docs/ref/getting-started/getting-started.md +++ b/docs/ref/getting-started/getting-started.md @@ -1,6 +1,6 @@ # Reference Manual - Getting Started -This section guides you through the initial steps to get your Wazuh-docker (version 5.0.0) environment up and running. We will cover the prerequisites and point you to the deployment instructions. +This section guides you through the initial steps to get your Wazuh-docker (version 5.0.1) environment up and running. We will cover the prerequisites and point you to the deployment instructions. ## Overview @@ -27,11 +27,11 @@ Before diving into the deployment, please ensure you have reviewed: Verify that your host system has sufficient RAM, CPU, and disk space. Ensure Docker and Docker Compose are installed and functioning correctly. 2. **Obtain Wazuh-docker Configuration**: - You'll need the Docker Compose files and any associated configuration files from the `wazuh-docker` repository for version 5.0.0. + You'll need the Docker Compose files and any associated configuration files from the `wazuh-docker` repository for version 5.0.1. ```bash git clone [https://github.com/wazuh/wazuh-docker.git](https://github.com/wazuh/wazuh-docker.git) cd wazuh-docker - git checkout v5.0.0 + git checkout v5.0.1 # Navigate to the specific docker-compose directory, e.g., single-node or multi-node # cd docker-compose/single-node/ (example path) ``` diff --git a/docs/ref/getting-started/requirements.md b/docs/ref/getting-started/requirements.md index 937c285e..0fdb33c6 100644 --- a/docs/ref/getting-started/requirements.md +++ b/docs/ref/getting-started/requirements.md @@ -1,6 +1,6 @@ # Reference Manual - Requirements -Before deploying Wazuh-Docker (version 5.0.0), it's essential to ensure your environment meets the necessary hardware and software requirements. Meeting these prerequisites will help ensure a stable and performant Wazuh deployment. +Before deploying Wazuh-Docker (version 5.0.1), it's essential to ensure your environment meets the necessary hardware and software requirements. Meeting these prerequisites will help ensure a stable and performant Wazuh deployment. ## Host System Requirements @@ -53,7 +53,7 @@ These are general recommendations. Actual needs may vary based on the number of * **Docker Desktop** * Install Docker Desktop by following the official instructions: [Install Docker Desktop](https://docs.docker.com/desktop/setup/install/windows-install/). * **WSL Linux distribution** - * Install Ubuntu or other compatible Linux distribution (bash in Alpine is not compatible with wazuh-certs-tool-5.0.0-1.sh): [Install Ubuntu on WSL](https://documentation.ubuntu.com/wsl/stable/howto/install-ubuntu-wsl2/) + * Install Ubuntu or other compatible Linux distribution (bash in Alpine is not compatible with wazuh-certs-tool-5.0.1-1.sh): [Install Ubuntu on WSL](https://documentation.ubuntu.com/wsl/stable/howto/install-ubuntu-wsl2/) * **Git Client**: * Required for cloning the `wazuh-docker` repository. * **Web Browser**: diff --git a/docs/ref/glossary.md b/docs/ref/glossary.md index c63c0e65..2421079c 100644 --- a/docs/ref/glossary.md +++ b/docs/ref/glossary.md @@ -1,6 +1,6 @@ # Reference Manual - Glossary -This glossary defines key terms and concepts related to Wazuh, Docker, and their use together in the Wazuh-Docker project (version 5.0.0). +This glossary defines key terms and concepts related to Wazuh, Docker, and their use together in the Wazuh-Docker project (version 5.0.1). --- @@ -22,7 +22,7 @@ This glossary defines key terms and concepts related to Wazuh, Docker, and their **D** -- **Dashboard (Wazuh Dashboard / OpenSearch Dashboards / Kibana)**: A web-based visualization tool used to explore, analyze, and visualize data stored in the Wazuh Indexer. It provides dashboards, visualizations, and a query interface for security events and alerts. For Wazuh 5.0.0, this is typically OpenSearch Dashboards. +- **Dashboard (Wazuh Dashboard / OpenSearch Dashboards / Kibana)**: A web-based visualization tool used to explore, analyze, and visualize data stored in the Wazuh Indexer. It provides dashboards, visualizations, and a query interface for security events and alerts. For Wazuh 5.0.1, this is typically OpenSearch Dashboards. - **Decoder**: A component in the Wazuh Manager that parses and extracts relevant information (fields) from raw log messages or event data. - **Docker**: An open platform for developing, shipping, and running applications inside containers. - **Docker Compose**: A tool for defining and running multi-container Docker applications. It uses a YAML file (`docker-compose.yml`) to configure the application's services, networks, and volumes. @@ -42,7 +42,7 @@ This glossary defines key terms and concepts related to Wazuh, Docker, and their **I** -- **Indexer (Wazuh Indexer / OpenSearch / Elasticsearch)**: The component responsible for storing, indexing, and making searchable the alerts and event data generated by the Wazuh Manager. For Wazuh 5.0.0, this is typically OpenSearch. +- **Indexer (Wazuh Indexer / OpenSearch / Elasticsearch)**: The component responsible for storing, indexing, and making searchable the alerts and event data generated by the Wazuh Manager. For Wazuh 5.0.1, this is typically OpenSearch. **L** diff --git a/docs/ref/introduction/description.md b/docs/ref/introduction/description.md index 6679997f..fa977624 100644 --- a/docs/ref/introduction/description.md +++ b/docs/ref/introduction/description.md @@ -1,6 +1,6 @@ # Reference Manual - Description -This section provides a detailed description of Wazuh-docker (version 5.0.0), its components, and its architecture when deployed using Docker containers. Understanding these aspects is key to effectively deploying and managing your Wazuh environment. +This section provides a detailed description of Wazuh-docker (version 5.0.1), its components, and its architecture when deployed using Docker containers. Understanding these aspects is key to effectively deploying and managing your Wazuh environment. ## What is Wazuh? @@ -18,7 +18,7 @@ Wazuh-docker is a project that provides Docker images and `docker compose` confi ## Core Components in Wazuh-Docker -The Wazuh-Docker project typically provides images for the following core Wazuh components, adapted for version 5.0.0: +The Wazuh-Docker project typically provides images for the following core Wazuh components, adapted for version 5.0.1: 1. **Wazuh Manager**: - The central component that collects and analyzes data from deployed Wazuh agents. @@ -28,7 +28,7 @@ The Wazuh-Docker project typically provides images for the following core Wazuh 2. **Wazuh Indexer**: - A highly scalable, full-text search and analytics engine. - Based on OpenSearch (or historically Elasticsearch), it stores and indexes alerts and monitoring data generated by the Wazuh manager. - - The Wazuh indexer container provides the data persistence layer for Wazuh alerts and events. For version 5.0.0, this is typically an OpenSearch-based component. + - The Wazuh indexer container provides the data persistence layer for Wazuh alerts and events. For version 5.0.1, this is typically an OpenSearch-based component. 3. **Wazuh Dashboard**: - A flexible visualization tool based on OpenSearch Dashboards (or historically Kibana). diff --git a/docs/ref/introduction/introduction.md b/docs/ref/introduction/introduction.md index f0ea1b10..cfc1d779 100644 --- a/docs/ref/introduction/introduction.md +++ b/docs/ref/introduction/introduction.md @@ -1,6 +1,6 @@ # Reference Manual - Introduction -Welcome to the Reference Manual for Wazuh-Docker, version 5.0.0. This manual provides comprehensive information about deploying, configuring, and managing your Wazuh environment using Docker. +Welcome to the Reference Manual for Wazuh-Docker, version 5.0.1. This manual provides comprehensive information about deploying, configuring, and managing your Wazuh environment using Docker. ## Purpose of This Manual @@ -44,4 +44,4 @@ This manual is structured to help you find information efficiently: - If you need to customize your deployment, refer to the [Configuration](configuration/configuration.md) section. - For specific terms or concepts, consult the [Glossary](glossary.md). -This manual refers to version 5.0.0 of Wazuh-Docker. Ensure you are using the documentation that corresponds to your deployed version. +This manual refers to version 5.0.1 of Wazuh-Docker. Ensure you are using the documentation that corresponds to your deployed version. diff --git a/docs/ref/upgrade.md b/docs/ref/upgrade.md index 7e15c983..0e8a11e2 100644 --- a/docs/ref/upgrade.md +++ b/docs/ref/upgrade.md @@ -19,20 +19,20 @@ Below is a step-by-step example of how to perform this update: - `wazuh.indexer` - `wazuh.dashboard` - Example (update to 5.0.0): + Example (update to 5.0.1): ```yaml services: wazuh.manager: - image: wazuh/wazuh-manager:5.0.0 + image: wazuh/wazuh-manager:5.0.1 ... wazuh.indexer: - image: wazuh/wazuh-indexer:5.0.0 + image: wazuh/wazuh-indexer:5.0.1 ... wazuh.dashboard: - image: wazuh/wazuh-dashboard:5.0.0 + image: wazuh/wazuh-dashboard:5.0.1 ... ``` @@ -43,32 +43,32 @@ Below is a step-by-step example of how to perform this update: - `wazuh1.indexer`, `wazuh2.indexer`, and `wazuh3.indexer` - `wazuh.dashboard` - Example (update to 5.0.0): + Example (update to 5.0.1): ```yaml services: wazuh.master: - image: wazuh/wazuh-manager:5.0.0 + image: wazuh/wazuh-manager:5.0.1 ... wazuh.worker: - image: wazuh/wazuh-manager:5.0.0 + image: wazuh/wazuh-manager:5.0.1 ... wazuh1.indexer: - image: wazuh/wazuh-indexer:5.0.0 + image: wazuh/wazuh-indexer:5.0.1 ... wazuh2.indexer: - image: wazuh/wazuh-indexer:5.0.0 + image: wazuh/wazuh-indexer:5.0.1 ... wazuh3.indexer: - image: wazuh/wazuh-indexer:5.0.0 + image: wazuh/wazuh-indexer:5.0.1 ... wazuh.dashboard: - image: wazuh/wazuh-dashboard:5.0.0 + image: wazuh/wazuh-dashboard:5.0.1 ... ``` diff --git a/multi-node/docker-compose.yml b/multi-node/docker-compose.yml index 4fa8d8bf..a6732cae 100644 --- a/multi-node/docker-compose.yml +++ b/multi-node/docker-compose.yml @@ -1,7 +1,7 @@ # Wazuh App Copyright (C) 2017, Wazuh Inc. (License GPLv2) services: wazuh.master: - image: wazuh/wazuh-manager:5.0.0 + image: wazuh/wazuh-manager:5.0.1 hostname: wazuh.master container_name: multi-node-wazuh.master restart: always @@ -44,7 +44,7 @@ services: - ./config/wazuh_master/certs/wazuh.master-key.pem:/var/wazuh-manager/etc/certs/manager-key.pem wazuh.worker: - image: wazuh/wazuh-manager:5.0.0 + image: wazuh/wazuh-manager:5.0.1 hostname: wazuh.worker container_name: multi-node-wazuh.worker restart: always @@ -83,7 +83,7 @@ services: - ./config/wazuh_worker/certs/wazuh.worker-key.pem:/var/wazuh-manager/etc/certs/manager-key.pem wazuh1.indexer: - image: wazuh/wazuh-indexer:5.0.0 + image: wazuh/wazuh-indexer:5.0.1 hostname: wazuh1.indexer container_name: multi-node-wazuh1.indexer restart: always @@ -121,7 +121,7 @@ services: - ./config/wazuh1_indexer/certs/admin-key.pem:/usr/share/wazuh-indexer/config/certs/admin-key.pem wazuh2.indexer: - image: wazuh/wazuh-indexer:5.0.0 + image: wazuh/wazuh-indexer:5.0.1 hostname: wazuh2.indexer container_name: multi-node-wazuh2.indexer restart: always @@ -159,7 +159,7 @@ services: - ./config/wazuh2_indexer/certs/wazuh2.indexer.pem:/usr/share/wazuh-indexer/config/certs/indexer.pem wazuh3.indexer: - image: wazuh/wazuh-indexer:5.0.0 + image: wazuh/wazuh-indexer:5.0.1 hostname: wazuh3.indexer container_name: multi-node-wazuh3.indexer restart: always @@ -197,7 +197,7 @@ services: - ./config/wazuh3_indexer/certs/wazuh3.indexer.pem:/usr/share/wazuh-indexer/config/certs/indexer.pem wazuh.dashboard: - image: wazuh/wazuh-dashboard:5.0.0 + image: wazuh/wazuh-dashboard:5.0.1 hostname: wazuh.dashboard container_name: multi-node-wazuh.dashboard restart: always diff --git a/single-node/docker-compose.yml b/single-node/docker-compose.yml index 042162cb..41830a8e 100644 --- a/single-node/docker-compose.yml +++ b/single-node/docker-compose.yml @@ -1,7 +1,7 @@ # Wazuh App Copyright (C) 2017, Wazuh Inc. (License GPLv2) services: wazuh.manager: - image: wazuh/wazuh-manager:5.0.0 + image: wazuh/wazuh-manager:5.0.1 hostname: wazuh.manager container_name: single-node-wazuh.manager restart: always @@ -44,7 +44,7 @@ services: - ./config/wazuh_manager/certs/wazuh.manager-key.pem:/var/wazuh-manager/etc/certs/manager-key.pem wazuh.indexer: - image: wazuh/wazuh-indexer:5.0.0 + image: wazuh/wazuh-indexer:5.0.1 hostname: wazuh.indexer container_name: single-node-wazuh.indexer restart: always @@ -81,7 +81,7 @@ services: - ./config/wazuh_indexer/certs/admin-key.pem:/usr/share/wazuh-indexer/config/certs/admin-key.pem wazuh.dashboard: - image: wazuh/wazuh-dashboard:5.0.0 + image: wazuh/wazuh-dashboard:5.0.1 hostname: wazuh.dashboard container_name: single-node-wazuh.dashboard restart: always diff --git a/wazuh-agent/docker-compose.yml b/wazuh-agent/docker-compose.yml index 842677e1..2057180f 100644 --- a/wazuh-agent/docker-compose.yml +++ b/wazuh-agent/docker-compose.yml @@ -1,7 +1,7 @@ # Wazuh App Copyright (C) 2017, Wazuh Inc. (License GPLv2) services: wazuh.agent: - image: wazuh/wazuh-agent:5.0.0 + image: wazuh/wazuh-agent:5.0.1 restart: always environment: - WAZUH_MANAGER_SERVER= From 9c5fd31608da7076ea0e7d7a0d65fae07e99e47d Mon Sep 17 00:00:00 2001 From: Victor Carlos Erenu Date: Wed, 24 Jun 2026 20:53:22 +0700 Subject: [PATCH 2/4] Bump newer 5.0.0 commits to main branch --- .github/workflows/5_build_and_push_images.yml | 4 ++-- .github/workflows/5_check_integration_tools.yml | 2 +- .github/workflows/5_pr_check.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/5_build_and_push_images.yml b/.github/workflows/5_build_and_push_images.yml index f57eda57..e6f2ce88 100644 --- a/.github/workflows/5_build_and_push_images.yml +++ b/.github/workflows/5_build_and_push_images.yml @@ -14,7 +14,7 @@ on: wazuh_automation_reference: description: 'Branch or tag of the wazuh-automation repository' required: false - default: '5.0.0' + default: 'main' products: description: 'Comma-separated list of the image names to build and push' default: 'wazuh-manager,wazuh-dashboard,wazuh-indexer,wazuh-agent' @@ -52,7 +52,7 @@ on: wazuh_automation_reference: description: 'Branch or tag of the wazuh-automation repository' required: false - default: '5.0.0' + default: 'main' type: string products: description: 'Comma-separated list of the image names to build and push' diff --git a/.github/workflows/5_check_integration_tools.yml b/.github/workflows/5_check_integration_tools.yml index 76146995..9fb4e6cd 100644 --- a/.github/workflows/5_check_integration_tools.yml +++ b/.github/workflows/5_check_integration_tools.yml @@ -16,7 +16,7 @@ on: automation_reference: description: 'Branch of wazuh-automation to use' required: false - default: '5.0.0' + default: 'main' type: string deployment_type: description: 'Deployment type to test' diff --git a/.github/workflows/5_pr_check.yml b/.github/workflows/5_pr_check.yml index 6bc408d9..c3c1eaea 100644 --- a/.github/workflows/5_pr_check.yml +++ b/.github/workflows/5_pr_check.yml @@ -55,7 +55,7 @@ jobs: with: image_tag: ${{ needs.prepare-variables.outputs.WAZUH_IMAGE_VERSION }} docker_reference: ${{ github.head_ref || inputs.docker_reference }} - wazuh_automation_reference: '5.0.0' + wazuh_automation_reference: 'main' commit_list: '["latest", "latest", "latest", "latest"]' assistant_revision: 'latest' id: ${{ github.run_id }} From 0ff52662f60e7b79ff00a70a04aa251fd36d6fda Mon Sep 17 00:00:00 2001 From: Victor Carlos Erenu Date: Fri, 26 Jun 2026 00:09:53 +0700 Subject: [PATCH 3/4] Apply new changelog definitions --- CHANGELOG.md | 1098 +------------------------------------------------- 1 file changed, 5 insertions(+), 1093 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 77cb5a4d..dbe38f3a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ # Change Log All notable changes to this project will be documented in this file. -## [5.0.1] +## [v5.0.1] ### Added @@ -11,1102 +11,14 @@ All notable changes to this project will be documented in this file. - None -### Fixed - -- None - -### Deleted - -- None - -## [5.0.0] - -### Added - -- Implement the wazuh-docker integration testing module ([#2428](https://github.com/wazuh/wazuh-docker/pull/2428)) -- Add revert option into bumper workflow ([#2330](https://github.com/wazuh/wazuh-docker/pull/2330)) -- Add checks for artifact_urls.yaml download ([#2315](https://github.com/wazuh/wazuh-docker/pull/2315)) -- Add set_as_main option ([#2293](https://github.com/wazuh/wazuh-docker/pull/2293)) - -### Changed - -- Change runners on repository workflows 5.x ([#2471](https://github.com/wazuh/wazuh-docker/pull/2471)) -- PR revamp modifications 5.x ([#2446](https://github.com/wazuh/wazuh-docker/pull/2446)) -- Forbid pr_check workflow execution in draft PRs ([#2399](https://github.com/wazuh/wazuh-docker/pull/2399)) -- Unification of user UID and GID ([#2393](https://github.com/wazuh/wazuh-docker/pull/2393)) -- Add Wazuh indexer engine start on entrypoint ([#2390](https://github.com/wazuh/wazuh-docker/pull/2390)) -- Image build process update ([#2358](https://github.com/wazuh/wazuh-docker/pull/2358)) -- Add new path on artifact_urls file ([#2344](https://github.com/wazuh/wazuh-docker/pull/2344)) -- Presigned URLs generation enhancement ([#2346](https://github.com/wazuh/wazuh-docker/pull/2346)) -- Adapt bumper workflows to change main branch ([#2294](https://github.com/wazuh/wazuh-docker/pull/2294)) -- Delete all API user and password references and Wazuh agent references ([#2289](https://github.com/wazuh/wazuh-docker/pull/2289)) -- Create certificate directory with default user and group ([#2287](https://github.com/wazuh/wazuh-docker/pull/2287)) -- Standarize Artifact URL keys ([#2286](https://github.com/wazuh/wazuh-docker/pull/2286)) -- Certificates configuration script. ([#2285](https://github.com/wazuh/wazuh-docker/pull/2285)) -- Modify artifact URLs file name. ([#2266](https://github.com/wazuh/wazuh-docker/pull/2266)) -- Use URL signing script to generate presigned internal package URLs. ([#2259](https://github.com/wazuh/wazuh-docker/pull/2259)) -- Updated wazuh-docker documentation config and tooling versions to meet new standards. ([#2264](https://github.com/wazuh/wazuh-docker/pull/2264)) -- Update certificate configuration to use separate IP and DNS fields ([#2253](https://github.com/wazuh/wazuh-docker/pull/2253)) -- Modify Healthchecks ([#2252](https://github.com/wazuh/wazuh-docker/pull/2252)) -- Add deployment healthchecks ([#2251](https://github.com/wazuh/wazuh-docker/pull/2251)) -- Update artifact generation jobs to use wz-linux dedicated runner group ([#2242](https://github.com/wazuh/wazuh-docker/pull/2242)) -- Fix set_correct_permOwner function ([#2238](https://github.com/wazuh/wazuh-docker/pull/2238)) -- Add workflow dispatch option ([#2231](https://github.com/wazuh/wazuh-docker/pull/2231)) -- Change Wazuh manager certificates names ([#2223](https://github.com/wazuh/wazuh-docker/pull/2223)) -- Move index documents test ([#2221](https://github.com/wazuh/wazuh-docker/pull/2221)) -- Separate Agent/Manager - Docker - Adapt image build process ([#2220](https://github.com/wazuh/wazuh-docker/pull/2220)) -- Remove revision input ([#2217](https://github.com/wazuh/wazuh-docker/pull/2217)) -- Improve build script and workflow component revisions handling ([#2212](https://github.com/wazuh/wazuh-docker/pull/2212)) -- Add missing documentation sections in the repository ([#2215](https://github.com/wazuh/wazuh-docker/pull/2215)) -- Add Wazuh version and revision into wazuh-certs-tool and config file ([#2195](https://github.com/wazuh/wazuh-docker/pull/2195)) -- Improve S3 artifact URLs handling ([#2183](https://github.com/wazuh/wazuh-docker/pull/2183)) -- Allow building separate targets ([#2177](https://github.com/wazuh/wazuh-docker/pull/2177)) -- Add developement option when tag name is only version without stage ([#2179](https://github.com/wazuh/wazuh-docker/pull/2179)) -- Add IMAGE_TAG stage reference ([#2178](https://github.com/wazuh/wazuh-docker/pull/2178)) -- Delete Wazuh agent configuration files ([#2173](https://github.com/wazuh/wazuh-docker/pull/2173)) -- Modify run_as parameter value - main ([#2158](https://github.com/wazuh/wazuh-docker/pull/2158)) -- Change macOS and Windows deployment documentation ([#2150](https://github.com/wazuh/wazuh-docker/issues/2150)) -- Modify docker build image process ([#2131](https://github.com/wazuh/wazuh-docker/issues/2131)) -- Update documentation for Wazuh Docker image builder and workflow usage ([#2136](https://github.com/wazuh/wazuh-docker/issues/2136)) -- Configure deployment with environment variables ([#2081](https://github.com/wazuh/wazuh-docker/pull/2081)) -- Modify Wazuh components install method ([#2058](https://github.com/wazuh/wazuh-docker/pull/2058)) -- Image builder Workflow Rebuild ([#2054](https://github.com/wazuh/wazuh-docker/pull/2054)) -- Wazuh server clean-up ([#2030](https://github.com/wazuh/wazuh-docker/pull/2030)) -- Fix OpenSearch deprecated settings ([#1899](https://github.com/wazuh/wazuh-docker/pull/1899)) - -### Fixed - -- Fix WF docker images vulnerabilities ([#2444](https://github.com/wazuh/wazuh-docker/pull/2444)) -- Adapt Wazuh manager healthcheck with local binaries ([#2422](https://github.com/wazuh/wazuh-docker/pull/2422)) -- Delete setcap command on deprecated file ([#2345](https://github.com/wazuh/wazuh-docker/pull/2345)) -- Modify the choice of a correct tag ([#2313](https://github.com/wazuh/wazuh-docker/pull/2313)) -- Artifact URL download fix ([#2306](https://github.com/wazuh/wazuh-docker/pull/2306)) -- Change API query method. ([#2275](https://github.com/wazuh/wazuh-docker/pull/2275)) -- Change Wazuh manager Healthcheck. ([#2272](https://github.com/wazuh/wazuh-docker/pull/2272)) -- Delete WAZUH_AGENT_GROUP variable. ([#2263](https://github.com/wazuh/wazuh-docker/pull/2263)) -- Delete etc/lists references ([#2129](https://github.com/wazuh/wazuh-docker/pull/2129)) - -### Deleted - -- None - -## [4.14.7] - -### Added - -- None - -### Changed - -- PR revamp modifications 4.x ([#2445](https://github.com/wazuh/wazuh-docker/pull/2445)) - -### Fixed - -- None - -### Deleted - -- None - -## [4.14.6] - -### Added - -- None - -### Changed - -- Change runners on repository workflows ([#2470](https://github.com/wazuh/wazuh-docker/pull/2470)) - -### Fixed - -- Changed update_user function from wazuh.security to wazuh.rbac.orm module ([#2406](https://github.com/wazuh/wazuh-docker/pull/2406)) -- GH issue notification fix ([#2312](https://github.com/wazuh/wazuh-docker/pull/2312)) - -### Deleted - -- None - -## [4.14.5] - -### Added - -- None - -### Changed - -- Updated GitHub actions version for wazuh-docker workflows. ([#2290](https://github.com/wazuh/wazuh-docker/pull/2290)) - -### Fixed - -- Fix WAZUH_AGENT_GROUP variable ([#2262](https://github.com/wazuh/wazuh-docker/pull/2262)) -- Fix bumper script early exit ([#2261](https://github.com/wazuh/wazuh-docker/pull/2261)) - -### Deleted - -- None - -## [4.14.4] - -### Added - -- None - -### Changed - -- Backport from 5.0.0: Allow building separate targets #2177 ([#2184](https://github.com/wazuh/wazuh-docker/pull/2184)) - -### Fixed - -- INDEXER_URL substitution fix ([#2226](https://github.com/wazuh/wazuh-docker/pull/2226)) - -### Deleted - -- None - -## [4.14.3] - -### Added - -- Update indexer-certs-gen README.md for clarity on procedure ([#2132](https://github.com/wazuh/wazuh-docker/pull/2132)) -- Update certs generator image version to 0.0.4 ([#2130](https://github.com/wazuh/wazuh-docker/pull/2130)) - -### Changed - -- Add IMAGE_TAG stage reference ([#2176](https://github.com/wazuh/wazuh-docker/pull/2176)) -- Modify run_as parameter value - v4.14.3 ([#2157](https://github.com/wazuh/wazuh-docker/pull/2157)) -- Adapt Wazuh Agent Dockerfile for multi-architecture support ([#2149](https://github.com/wazuh/wazuh-docker/pull/2149)) -- Agent group parameter added ([#2127](https://github.com/wazuh/wazuh-docker/pull/2127)) -- Adapt to multi architecture build ([#2120](https://github.com/wazuh/wazuh-docker/pull/2120)) - -### Fixed - -- None - -### Deleted - -- None - -## [4.14.2] - -### Added - -- Code improvements for 4.14.2 ([#2090](https://github.com/wazuh/wazuh-docker/pull/2090)) -- Artifactory vulnerabilities notification ([#2078](https://github.com/wazuh/wazuh-docker/pull/2078)) - -### Changed - -- Filebeat module version update ([#2115](https://github.com/wazuh/wazuh-docker/pull/2115)) -- The location of the remove command for the wazuh-authd certificates has been changed. ([#2094](https://github.com/wazuh/wazuh-docker/pull/2094)) -- Removed sslmanager key from the docker manager image to 4.14.2. ([#2093](https://github.com/wazuh/wazuh-docker/pull/2093)) - -### Fixed - -- Add missing SSL ciphers and protocols and remove outdated ports parameters from opensearch.yml template ([#2104](https://github.com/wazuh/wazuh-docker/pull/2104)) - -### Deleted - -- None - -## [4.14.1] - -### Added - -- None - -### Changed - -- Wazuh cert tool generator improvements ([#2027](https://github.com/wazuh/wazuh-docker/pull/2027)) - -### Fixed - -- None - -### Deleted - -- None - -## [4.14.0] - -### Added - -- None - -### Changed - -- Change filebeat install method ([#2020](https://github.com/wazuh/wazuh-docker/pull/2020)) -- Remove dashboard chat setting ([#2021](https://github.com/wazuh/wazuh-docker/pull/2021)) -- Rollback data source setting ([#1999](https://github.com/wazuh/wazuh-docker/pull/1999)) -- Dashboard settings added ([#1998](https://github.com/wazuh/wazuh-docker/pull/1998)) -- Add filebeat config file in the PERMANENT_DATA_EXCP list ([#1898](https://github.com/wazuh/wazuh-docker/pull/1898)) -- Change validation of existing certs tool in S3 buckets ([#1880](https://github.com/wazuh/wazuh-docker/pull/1880)) - -### Fixed - -- Change Wazuh indexer directory owner ([#2029](https://github.com/wazuh/wazuh-docker/pull/2029)) -- Double the amount of space consumed in Wazuh Indexer ([#1953](https://github.com/wazuh/wazuh-docker/pull/1953)) -- Fix config directory for opensearch_security plugin work ([#1951](https://github.com/wazuh/wazuh-docker/pull/1951)) -- Update Dockerfile to copy opensearch-security files ([#1928](https://github.com/wazuh/wazuh-docker/pull/1928)) - -### Deleted - -- None - -## [4.13.1] - -### Added - -- None - -### Changed - -- None - -### Fixed - -- None - -### Deleted - -- None - -## [4.13.0] - -### Added - -- Add opensearch_dashboard.yml parameters. ([#1985](https://github.com/wazuh/wazuh-docker/pull/1985)) -- Set right ownership for malicious-ioc files on container start ([#1926](https://github.com/wazuh/wazuh-docker/pull/1926)) -- Delete services statement in wazuh agent deployment. ([#1925](https://github.com/wazuh/wazuh-docker/pull/1925)) -- Add permanent_data exceptions. ([#1890](https://github.com/wazuh/wazuh-docker/pull/1890)) -- Integrate bumper script via GitHub action. ([#1863](https://github.com/wazuh/wazuh-docker/pull/1863)) -- Add missing malicious-ioc ruleset lists ([#1870](https://github.com/wazuh/wazuh-docker/pull/1870)) -- Added repository_bumper script. ([#1781](https://github.com/wazuh/wazuh-docker/pull/1781)) -- Fix Warning message when migrating Docker compose v2 ([#1828](https://github.com/wazuh/wazuh-docker/pull/1828)) -- Add technical documentation ([#1822](https://github.com/wazuh/wazuh-docker/pull/1822)) -- Add wazuh agent test and push ([#1817](https://github.com/wazuh/wazuh-docker/pull/1817)) -- Add Wazuh agent image build and deploy ([#1816](https://github.com/wazuh/wazuh-docker/pull/1816)) - -### Changed - -- Syscollector configuration change ([#1994](https://github.com/wazuh/wazuh-docker/pull/1994)) -- Modify wazuh-keystore use ([#1750](https://github.com/wazuh/wazuh-docker/pull/1750)) \- (wazuh-keystore) - -### Fixed - -- Add wazuh-template.json into permanent data exception ([#1968](https://github.com/wazuh/wazuh-docker/pull/1968)) - -### Deleted - -- Remove default docker reference version from workflow ([#1761](https://github.com/wazuh/wazuh-docker/pull/1761)) -- Remove 'stable' branch ocurrencies ([#1757](https://github.com/wazuh/wazuh-docker/pull/1757)) - -## [4.12.0] - -### Added - -- None - -### Changed - -- Change VERSION file format ([#1728](https://github.com/wazuh/wazuh-docker/pull/1728)) \- (VERSION file) -- Change Ubuntu version used in workflows ([#1662](https://github.com/wazuh/wazuh-docker/pull/1662)) \- (Docker workflows) - -### Fixed - -- Fix permanent data scripts ([#1603](https://github.com/wazuh/wazuh-docker/pull/1603)) - -### Deleted - -- None - -## [4.11.2] - -### Added - -- None - -### Changed - -- None - -### Fixed - -- None - -### Deleted - -- None - -## [4.11.1] - -### Added - -- None - -### Changed - -- None - -### Fixed - -- None - -### Deleted - -- None - -## [4.11.0] - -### Added - -- None - -### Changed - -- None - -### Fixed - -- Change the cleaning disk step ([#1663](https://github.com/wazuh/wazuh-docker/pull/1663)) - -### Deleted - -- None - -## [4.10.5] - -### Added - -- None - -### Changed - -- Change runner name for Codebuild ([#2474](https://github.com/wazuh/wazuh-docker/pull/2474)) -- PR revamp modifications LTS ([#2449](https://github.com/wazuh/wazuh-docker/pull/2449)) - -### Fixed - -- None - -### Deleted - -- None - -## [4.10.4] - -### Added - -- None - -### Changed - -- Removed sslmanager key from the docker manager image. ([#2092](https://github.com/wazuh/wazuh-docker/pull/2092)) -- Backport 4.13.0 changes: Modify wazuh-keystore use ([#2036](https://github.com/wazuh/wazuh-docker/pull/2036)) \- (wazuh-keystore) - -### Fixed - -- Changed update_user function from wazuh.security to wazuh.rbac.orm module ([#2405](https://github.com/wazuh/wazuh-docker/pull/2405)) -- Add wazuh-template.json into permanent data exception ([#1967](https://github.com/wazuh/wazuh-docker/pull/1967)) - -### Deleted - -- None - -## [4.10.3] - -### Added - -- None - -### Changed - -- None - -### Fixed - -- None - -### Deleted - -- None - -## [4.10.2] - -### Added - -- None - -### Changed - -- None - -### Fixed - -- Updated docker/login-action module ([#1837](https://github.com/wazuh/wazuh-docker/pull/1837)) - -### Deleted - -- None - -## [4.10.1] - -### Added - -- None - -### Changed - -- None - -### Fixed - -- None - -### Deleted - -- None - -## [4.10.0] - -### Added - -- Improve the push docker images workflow ([#1551](https://github.com/wazuh/wazuh-docker/pull/1551)) -- Update the Procedure push docker images workflow file ([#1524](https://github.com/wazuh/wazuh-docker/pull/1524)) -- Add the push_docker_images procedure workflow file ([#1518](https://github.com/wazuh/wazuh-docker/pull/1518)) - -### Changed - -- None - -### Fixed - -- Add unset capabilities. ([#1619](https://github.com/wazuh/wazuh-docker/pull/1619)) -- Removed references to module enabling because they are now enabled by default. ([#1416](https://github.com/wazuh/wazuh-docker/pull/1416)) - -### Deleted - -- None - -## [4.9.2] - -### Added - -- Update Wazuh to version [4.9.2](https://github.com/wazuh/wazuh/blob/v4.9.2/CHANGELOG.md#v492) - -## [4.9.1] - -### Added - -- None - -### Changed - -- None - -### Fixed - -- Fix typos into Wazuh manager entrypoint ([#1569](https://github.com/wazuh/wazuh-docker/pull/1569)) - -### Deleted - -- None - -## Wazuh Docker v4.9.0 -### Added - -- Update Wazuh to version [4.9.0](https://github.com/wazuh/wazuh/blob/v4.9.0/CHANGELOG.md#v490) - -## Wazuh Docker v4.8.2 -### Added - -- Update Wazuh to version [4.8.2](https://github.com/wazuh/wazuh/blob/v4.8.2/CHANGELOG.md#v482) - -## Wazuh Docker v4.8.1 -### Added - -- Update Wazuh to version [4.8.1](https://github.com/wazuh/wazuh/blob/v4.8.1/CHANGELOG.md#v481) - -## Wazuh Docker v4.8.0 -### Added - -- Update Wazuh to version [4.8.0](https://github.com/wazuh/wazuh/blob/v4.8.0/CHANGELOG.md#v480) - -## Wazuh Docker v4.7.5 -### Added - -- Update Wazuh to version [4.7.5](https://github.com/wazuh/wazuh/blob/v4.7.5/CHANGELOG.md#v475) - -## Wazuh Docker v4.7.4 -### Added - -- Update Wazuh to version [4.7.4](https://github.com/wazuh/wazuh/blob/v4.7.4/CHANGELOG.md#v474) - -## Wazuh Docker v4.7.3 -### Added - -- Update Wazuh to version [4.7.3](https://github.com/wazuh/wazuh/blob/v4.7.3/CHANGELOG.md#v473) - -## Wazuh Docker v4.7.2 -### Added - -- Update Wazuh to version [4.7.2](https://github.com/wazuh/wazuh/blob/v4.7.2/CHANGELOG.md#v472) - -## Wazuh Docker v4.7.1 -### Added - -- Update Wazuh to version [4.7.1](https://github.com/wazuh/wazuh/blob/v4.7.1/CHANGELOG.md#v471) - -## Wazuh Docker v4.7.0 -### Added - -- Update Wazuh to version [4.7.0](https://github.com/wazuh/wazuh/blob/v4.7.0/CHANGELOG.md#v470) - -## Wazuh Docker v4.6.0 -### Added - -- Update Wazuh to version [4.6.0](https://github.com/wazuh/wazuh/blob/v4.6.0/CHANGELOG.md#v460) - -## Wazuh Docker v4.5.4 -### Added - -- Update Wazuh to version [4.5.4](https://github.com/wazuh/wazuh/blob/v4.5.4/CHANGELOG.md#v454) - -## Wazuh Docker v4.5.3 -### Added - -- Update Wazuh to version [4.5.3](https://github.com/wazuh/wazuh/blob/v4.5.3/CHANGELOG.md#v453) - -## Wazuh Docker v4.5.2 -### Added - -- Update Wazuh to version [4.5.2](https://github.com/wazuh/wazuh/blob/v4.5.2/CHANGELOG.md#v452) - -## Wazuh Docker v4.5.1 -### Added - -- Update Wazuh to version [4.5.1](https://github.com/wazuh/wazuh/blob/v4.5.1/CHANGELOG.md#v451) - -## Wazuh Docker v4.5.0 -### Added - -- Update Wazuh to version [4.5.0](https://github.com/wazuh/wazuh/blob/v4.5.0/CHANGELOG.md#v450) - -## Wazuh Docker v4.4.5 -### Added - -- Update Wazuh to version [4.4.5](https://github.com/wazuh/wazuh/blob/v4.4.5/CHANGELOG.md#v445) - -## Wazuh Docker v4.4.4 -### Added - -- Update Wazuh to version [4.4.4](https://github.com/wazuh/wazuh/blob/v4.4.4/CHANGELOG.md#v444) - -## Wazuh Docker v4.4.3 -### Added - -- Update Wazuh to version [4.4.3](https://github.com/wazuh/wazuh/blob/v4.4.3/CHANGELOG.md#v443) - -## Wazuh Docker v4.4.2 -### Added - -- Update Wazuh to version [4.4.2](https://github.com/wazuh/wazuh/blob/v4.4.2/CHANGELOG.md#v442) - -## Wazuh Docker v4.4.1 -### Added - -- Update Wazuh to version [4.4.1](https://github.com/wazuh/wazuh/blob/v4.4.1/CHANGELOG.md#v441) - -## Wazuh Docker v4.4.0 -### Added - -- Update Wazuh to version [4.4.0](https://github.com/wazuh/wazuh/blob/v4.4.0/CHANGELOG.md#v440) - -## Wazuh Docker v4.3.11 -### Added - -- Update Wazuh to version [4.3.11](https://github.com/wazuh/wazuh/blob/v4.3.11/CHANGELOG.md#v4311) - -## Wazuh Docker v4.3.10 -### Added - -- Update Wazuh to version [4.3.10](https://github.com/wazuh/wazuh/blob/v4.3.10/CHANGELOG.md#v4310) - - -## Wazuh Docker v4.3.9 -### Added - -- Update Wazuh to version [4.3.9](https://github.com/wazuh/wazuh/blob/v4.3.9/CHANGELOG.md#v439) - - -## Wazuh Docker v4.3.8 -### Added - -- Update Wazuh to version [4.3.8](https://github.com/wazuh/wazuh/blob/v4.3.8/CHANGELOG.md#v438) - -## Wazuh Docker v4.3.7 -### Added - -- Update Wazuh to version [4.3.7](https://github.com/wazuh/wazuh/blob/v4.3.7/CHANGELOG.md#v437) - -## Wazuh Docker v4.3.6 -### Added - -- Update Wazuh to version [4.3.6](https://github.com/wazuh/wazuh/blob/v4.3.6/CHANGELOG.md#v436) - -## Wazuh Docker v4.3.5 -### Added - -- Update Wazuh to version [4.3.5](https://github.com/wazuh/wazuh/blob/v4.3.5/CHANGELOG.md#v435) - -## Wazuh Docker v4.3.4 -### Added - -- Update Wazuh to version [4.3.4](https://github.com/wazuh/wazuh/blob/v4.3.4/CHANGELOG.md#v434) - -## Wazuh Docker v4.3.3 -### Added - -- Update Wazuh to version [4.3.3](https://github.com/wazuh/wazuh/blob/v4.3.3/CHANGELOG.md#v433) - -## Wazuh Docker v4.3.2 -### Added - -- Update Wazuh to version [4.3.2](https://github.com/wazuh/wazuh/blob/v4.3.2/CHANGELOG.md#v432) - -## Wazuh Docker v4.3.1 -### Added - -- Update Wazuh to version [4.3.1](https://github.com/wazuh/wazuh/blob/v4.3.1/CHANGELOG.md#v431) - -## Wazuh Docker v4.3.0 -### Added - -- Update Wazuh to version [4.3.0](https://github.com/wazuh/wazuh/blob/v4.3.0/CHANGELOG.md#v430) - -## Wazuh Docker v4.2.7 -### Added - -- Update Wazuh to version [4.2.7](https://github.com/wazuh/wazuh/blob/v4.2.7/CHANGELOG.md#v427) - -## Wazuh Docker v4.2.6 -### Added - -- Update Wazuh to version [4.2.6](https://github.com/wazuh/wazuh/blob/v4.2.6/CHANGELOG.md#v426) - -## Wazuh Docker v4.2.5 -### Added - -- Update Wazuh to version [4.2.5](https://github.com/wazuh/wazuh/blob/v4.2.5/CHANGELOG.md#v425) - -## Wazuh Docker v4.2.4 -### Added - -- Update Wazuh to version [4.2.4](https://github.com/wazuh/wazuh/blob/v4.2.4/CHANGELOG.md#v424) - -## Wazuh Docker v4.2.3 -### Added - -- Update Wazuh to version [4.2.3](https://github.com/wazuh/wazuh/blob/v4.2.3/CHANGELOG.md#v423) - -## Wazuh Docker v4.2.2 -### Added - -- Update Wazuh to version [4.2.2](https://github.com/wazuh/wazuh/blob/v4.2.2/CHANGELOG.md#v422) - -## Wazuh Docker v4.2.1 -### Added - -- Update Wazuh to version [4.2.1](https://github.com/wazuh/wazuh/blob/v4.2.1/CHANGELOG.md#v421) - -## Wazuh Docker v4.2.0 -### Added - -- Update Wazuh to version [4.2.0](https://github.com/wazuh/wazuh/blob/v4.2.0/CHANGELOG.md#v420) - -## Wazuh Docker v4.1.5 -### Added - -- Update Wazuh to version [4.1.5](https://github.com/wazuh/wazuh/blob/v4.1.5/CHANGELOG.md#v415) -- Update ODFE compatibility to version 1.13.2 - -## Wazuh Docker v4.1.4 -### Added - -- Update Wazuh to version [4.1.4](https://github.com/wazuh/wazuh/blob/v4.1.4/CHANGELOG.md#v414) - -## Wazuh Docker v4.1.3 -### Added - -- Update Wazuh to version [4.1.3](https://github.com/wazuh/wazuh/blob/v4.1.3/CHANGELOG.md#v413) - -## Wazuh Docker v4.1.2 -### Added - -- Update Wazuh to version [4.1.2](https://github.com/wazuh/wazuh/blob/v4.1.2/CHANGELOG.md#v412) - -## Wazuh Docker v4.1.1 -### Added - -- Update Wazuh to version [4.1.1](https://github.com/wazuh/wazuh/blob/v4.1.1/CHANGELOG.md#v411) - -## Wazuh Docker v4.1.0 -### Added - -- Update Wazuh to version [4.1.0](https://github.com/wazuh/wazuh/blob/v4.1.0/CHANGELOG.md#v410) -- Update ODFE compatibility to version 1.12.0 -- Add support for Elasticsearch (xpack) images once again (7.10.2) ([@xr09](https://github.com/xr09)) [#409](https://github.com/wazuh/wazuh-docker/pull/409) -- Re-enable entrypoint scripts ([@xr09](https://github.com/xr09)) [#435](https://github.com/wazuh/wazuh-docker/pull/435) -- Add Goss binary for healthchecks ([@xr09](https://github.com/xr09)) [$441](https://github.com/wazuh/wazuh-docker/pull/441) -- Update s6-overlay to latest version - -## Wazuh Docker v4.0.4_1.11.0 - -### Added - -- Update to Wazuh version [4.0.4](https://github.com/wazuh/wazuh/blob/v4.0.4/CHANGELOG.md#v404) - - -## Wazuh Docker v4.0.3_1.11.0 - -### Added - -- Update to Wazuh version 4.0.3 - - -## Wazuh Docker v4.0.2_1.11.0 - -### Added - -- Update to Wazuh version 4.0.2 - -## Wazuh Docker v4.0.1_1.11.0 - -### Added - -- Update to Wazuh version 4.0.1 -- Opendistro 1.11.0 compatiblity -- Re-enabled dumping ossec.log to stdout - -## Wazuh Docker v4.0.0_1.10.1 - -### Added - -- Update to Wazuh version 4.0.0 -- Updating Wazuh cluster key dynamically ([@1stOfHisGame](https://github.com/1stOfHisGame)) [#393](https://github.com/wazuh/wazuh-docker/pull/393) -- Switched to CentOS 7 for base image ([@xr09](https://github.com/xr09)) [#259](https://github.com/wazuh/wazuh-docker/issues/259) -- Using s6-overlay for process management ([@xr09](https://github.com/xr09)) [#274](https://github.com/wazuh/wazuh-docker/issues/274) -- Allow the creation of custom API users ([@xr09](https://github.com/xr09)) [#395](https://github.com/wazuh/wazuh-docker/issues/395) -- OpenDistro support ([@xr09](https://github.com/xr09)) [#373](https://github.com/wazuh/wazuh-docker/pull/373) - - -### Changed - -- Removal of Elastic images - - -## Wazuh Docker v3.13.2_7.9.1 - -### Added - -- Update to Wazuh version 3.13.2_7.9.1 -- Add CLUSTER_NETWORK_HOST environment variable ([@jfut](https://github.com/jfut)) [#372](https://github.com/wazuh/wazuh-docker/pull/372) - -### Fixed - -- Too many redirects when running on port 80 ([@chowmean](https://github.com/chowmean)) [#377](https://github.com/wazuh/wazuh-docker/pull/377) -- Move Filebeat installation to build stage ([@xr09](https://github.com/xr09)) [#378](https://github.com/wazuh/wazuh-docker/pull/378) - - -## Wazuh Docker v3.13.1_7.8.0 - -### Added - -- Update to Wazuh version 3.13.1_7.8.0 - - -## Wazuh Docker v3.13.0_7.7.1 - -### Added - -- Update to Wazuh version 3.13.3_7.7.1 - -### Fixed - -- Save agentless state ([@xr09](https://github.com/xr09)) [#350](https://github.com/wazuh/wazuh-docker/pull/350) -- Use HTTP credentials for service check when required ([@xr09](https://github.com/xr09)) [#356](https://github.com/wazuh/wazuh-docker/pull/356) - -## Wazuh Docker v3.12.3_7.6.2 - -### Added - -- Update to Wazuh version 3.12.3_7.6.2 - - -## Wazuh Docker v3.12.2_7.6.2 - -### Added - -- Update to Wazuh version 3.12.2_7.6.2 - -## Wazuh Docker v3.12.1_7.6.2 - -### Added - -- Update to Wazuh version 3.12.1_7.6.2 - -### Fixed - -- Agent timestamp not being properly saved ([@xr09](https://github.com/xr09)) [#323](https://github.com/wazuh/wazuh-docker/pull/323) - - -## Wazuh Docker v3.12.0_7.6.1 - -### Added - -- Update to Wazuh version 3.12.0_7.6.1 - - -## Wazuh Docker v3.11.4_7.6.1 - -### Added - -- Update to Wazuh version 3.11.4_7.6.1 - -- Enable HTTP v2 on nginx ([@xr09](https://github.com/xr09)) [#308](https://github.com/wazuh/wazuh-docker/pull/308) - -### Fixed - -- Updated NGINX config syntax ([@xr09](https://github.com/xr09)) [#303](https://github.com/wazuh/wazuh-docker/pull/303) - - -## Wazuh Docker v3.11.3_7.5.2 - -### Added - -- Update to Wazuh version 3.11.3_7.5.2 - -## Wazuh Docker v3.11.2_7.5.1 - -### Added - -- Bumped Node.js to version 10 ([@xr09](https://github.com/xr09)) [#8615cd4](https://github.com/wazuh/wazuh-docker/commit/8615cd4d2152601e55becc7c3675360938e74b6a) - -### Fixed - -- Fix S3 Plugin ([@AnthonySendra](https://github.com/AnthonySendra)) [#293](https://github.com/wazuh/wazuh-docker/pull/293) - -## Wazuh Docker v3.11.1_7.5.1 - -### Added - -- Update to Wazuh version 3.11.1_7.5.1 -- Filebeat configuration file updated to latest version ([@manuasir](https://github.com/manuasir)) [#271](https://github.com/wazuh/wazuh-docker/pull/271) -- Allow using the hostname as node_name for managers ([@JPLachance](https://github.com/JPLachance)) [#261](https://github.com/wazuh/wazuh-docker/pull/261) - -## Wazuh Docker v3.11.0_7.5.1 - -### Added - -- Update to Wazuh version 3.11.0_7.5.1 - -## Wazuh Docker v3.10.2_7.5.0 - -### Added - -- Update to Wazuh version 3.10.2_7.5.0 - -## Wazuh Docker v3.10.2_7.3.2 - -### Added - -- Update to Wazuh version 3.10.2_7.3.2 - -## Wazuh Docker v3.10.0_7.3.2 - -### Added - -- Update to Wazuh version 3.10.0_7.3.2 - -## Wazuh Docker v3.9.5_7.2.1 - -### Added - -- Update to Wazuh version 3.9.5_7.2.1 - -## Wazuh Docker v3.9.4_7.2.0 - -### Added - -- Update to Wazuh version 3.9.4_7.2.0 -- Implemented Wazuh Filebeat Module ([jm404](https://www.github.com/jm404)) [#2a77c6a](https://github.com/wazuh/wazuh-docker/commit/2a77c6a6e6bf78f2492adeedbade7a507d9974b2) - -## Wazuh Docker v3.9.3_7.2.0 - -### Fixed -- Wazuh-docker reinserts cluster settings after resuming containers ([@manuasir](https://github.com/manuasir)) [#213](https://github.com/wazuh/wazuh-docker/pull/213) - -## Wazuh Docker v3.9.2_7.1.1 - -### Added - -- Update to Wazuh version 3.9.2_7.1.1 - -## Wazuh Docker v3.9.2_6.8.0 - -### Added - -- Update to Wazuh version 3.9.2_6.8.0 - -## Wazuh Docker v3.9.1_7.1.0 - -### Added - -- Support for Elastic v7.1.0 -- New environment variables for Kibana ([@manuasir](https://github.com/manuasir)) [#22ad43](https://github.com/wazuh/wazuh-docker/commit/22ad4360f548e54bb0c5e929f8c84a186ad2ab88) - -## Wazuh Docker v3.9.1_6.8.0 - -### Added - -- Update to Wazuh version 3.9.1_6.8.0 ([#181](https://github.com/wazuh/wazuh-docker/pull/181)) - -### Fixed - -- Fixed `ELASTICSEARCH_KIBANA_IP` environment variable ([@manuasir](https://github.com/manuasir)) ([#181](https://github.com/wazuh/wazuh-docker/pull/181)) - -## Wazuh Docker v3.9.0_6.7.2 - -### Changed - -- Update Elastic Stack version to 6.7.2. - -## Wazuh Docker v3.9.0_6.7.1 - -### Added - -- Support for xPACK authorized requests ([@manuasir](https://github.com/manuasir)) ([#119](https://github.com/wazuh/wazuh-docker/pull/119)) -- Add Elasticsearch cluster configuration ([@SitoRBJ](https://github.com/SitoRBJ)). ([#146](https://github.com/wazuh/wazuh-docker/pull/146)) -- Add Elasticsearch cluster configuration ([@Phandora](https://github.com/Phandora)) ([#140](https://github.com/wazuh/wazuh-docker/pull/140)) -- Setting Nginx to support several user/passwords in Kibana ([@toniMR](https://github.com/toniMR)) ([#136](https://github.com/wazuh/wazuh-docker/pull/136)) - - -### Changed - -- Use LS_JAVA_OPTS instead of old LS_HEAP_SIZE ([@ruffy91](https://github.com/ruffy91)) ([#139](https://github.com/wazuh/wazuh-docker/pull/139)) -- Changing the original Wazuh docker image to allow adding code in the entrypoint ([@Phandora](https://github.com/phandora)) ([#151](https://github.com/wazuh/wazuh-docker/pull/151)) - ### Removed -- Removing files from Wazuh image ([@Phandora](https://github.com/phandora)) ([#153](https://github.com/wazuh/wazuh-docker/pull/153)) - -## Wazuh Docker v3.8.2_6.7.0 - -### Changed - -- Update Elastic Stack version to 6.7.0. ([#144](https://github.com/wazuh/wazuh-docker/pull/144)) - -## Wazuh Docker v3.8.2_6.6.2 - -### Changed - -- Update Elastic Stack version to 6.6.2. ([#130](https://github.com/wazuh/wazuh-docker/pull/130)) - -## Wazuh Docker v3.8.2_6.6.1 - -### Changed - -- Update Elastic Stack version to 6.6.1. ([#129](https://github.com/wazuh/wazuh-docker/pull/129)) - -## Wazuh Docker v3.8.2_6.5.4 - -### Added - -- Add Wazuh-Elasticsearch. ([#106](https://github.com/wazuh/wazuh-docker/pull/106)) -- Store Filebeat _/var/lib/filebeat/registry._ ([#109](https://github.com/wazuh/wazuh-docker/pull/109)) -- Adding the option to disable some xpack features. ([#111](https://github.com/wazuh/wazuh-docker/pull/111)) -- Wazuh-Kibana customizable at plugin level. ([#117](https://github.com/wazuh/wazuh-docker/pull/117)) -- Adding env variables for alerts data flow. ([#118](https://github.com/wazuh/wazuh-docker/pull/118)) -- New Logstash entrypoint added. ([#135](https://github.com/wazuh/wazuh-docker/pull/135/files)) -- Welcome screen management. ([#133](https://github.com/wazuh/wazuh-docker/pull/133)) - -### Changed - -- Update to Wazuh version 3.8.2. ([#105](https://github.com/wazuh/wazuh-docker/pull/105)) - -### Removed - -- Remove alerts created in build time. ([#137](https://github.com/wazuh/wazuh-docker/pull/137)) - - -## Wazuh Docker v3.8.1_6.5.4 - -### Changed -- Update to Wazuh version 3.8.1. ([#102](https://github.com/wazuh/wazuh-docker/pull/102)) - -## Wazuh Docker v3.8.0_6.5.4 - -### Changed - -- Upgrade version 3.8.0_6.5.4. ([#97](https://github.com/wazuh/wazuh-docker/pull/97)) - -### Removed - -- Remove cluster.py work around. ([#99](https://github.com/wazuh/wazuh-docker/pull/99)) - -## Wazuh Docker v3.7.2_6.5.4 - -### Added - -- Improvements to Kibana settings added. ([#91](https://github.com/wazuh/wazuh-docker/pull/91)) -- Add Kibana environmental variables for Wazuh APP config.yml. ([#89](https://github.com/wazuh/wazuh-docker/pull/89)) - -### Changed - -- Update Elastic Stack version to 6.5.4. ([#82](https://github.com/wazuh/wazuh-docker/pull/82)) -- Add env credentials for nginx. ([#86](https://github.com/wazuh/wazuh-docker/pull/86)) -- Improve filebeat configuration ([#88](https://github.com/wazuh/wazuh-docker/pull/88)) +- None ### Fixed -- Temporary fix for Wazuh cluster master node in Kubernetes. ([#84](https://github.com/wazuh/wazuh-docker/pull/84)) +- None -## Wazuh Docker v3.7.2_6.5.3 +## Prior version -### Changed - -- Erasing temporary fix for AWS integration. ([#81](https://github.com/wazuh/wazuh-docker/pull/81)) - -### Fixed - -- Upgrading errors due to wrong files. ([#80](https://github.com/wazuh/wazuh-docker/pull/80)) - - -## Wazuh Docker v3.7.0_6.5.0 - -### Changed - -- Adapt to Elastic stack 6.5.0. - -## Wazuh Docker v3.7.0_6.4.3 - -### Added - -- Allow custom scripts or commands before service start ([#58](https://github.com/wazuh/wazuh-docker/pull/58)) -- Added description for wazuh-nginx ([#59](https://github.com/wazuh/wazuh-docker/pull/59)) -- Added license file to match https://github.com/wazuh/wazuh LICENSE ([#60](https://github.com/wazuh/wazuh-docker/pull/60)) -- Added SMTP packages ([#67](https://github.com/wazuh/wazuh-docker/pull/67)) - -### Changed - -- Increased proxy buffer for NGINX Kibana ([#51](https://github.com/wazuh/wazuh-docker/pull/51)) -- Updated logstash config to remove deprecation warnings ([#55](https://github.com/wazuh/wazuh-docker/pull/55)) -- Set ossec user's home path ([#61](https://github.com/wazuh/wazuh-docker/pull/61)) - -### Fixed - -- Fixed a bug that prevents the API from starting when the Wazuh manager was updated. Change in the files that are stored in the volume. ([#65](https://github.com/wazuh/wazuh-docker/pull/65)) -- Fixed script reference ([#62](https://github.com/wazuh/wazuh-docker/pull/62/files)) - -## Wazuh Docker v3.6.1_6.4.3 - -Wazuh-Docker starting point. +- [v5.0.0](https://github.com/wazuh/wazuh-docker/blob/v5.0.0/CHANGELOG.md) \ No newline at end of file From a575cb71d5d775128ecf14c943c17114b54f61ee Mon Sep 17 00:00:00 2001 From: wazuhci <22834044+wazuhci@users.noreply.github.com> Date: Fri, 10 Jul 2026 12:28:51 +0000 Subject: [PATCH 4/4] feat: bump 5.0.1 --- .github/workflows/5_build_and_push_images.yml | 4 ++-- .github/workflows/5_check_integration_tools.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/5_build_and_push_images.yml b/.github/workflows/5_build_and_push_images.yml index d6329abf..90473b59 100644 --- a/.github/workflows/5_build_and_push_images.yml +++ b/.github/workflows/5_build_and_push_images.yml @@ -14,7 +14,7 @@ on: wazuh_automation_reference: description: 'Branch or tag of the wazuh-automation repository' required: false - default: 'main' + default: '5.0.1' products: description: 'Comma-separated list of the image names to build and push' default: 'wazuh-manager,wazuh-dashboard,wazuh-indexer,wazuh-agent' @@ -52,7 +52,7 @@ on: wazuh_automation_reference: description: 'Branch or tag of the wazuh-automation repository' required: false - default: 'main' + default: '5.0.1' type: string products: description: 'Comma-separated list of the image names to build and push' diff --git a/.github/workflows/5_check_integration_tools.yml b/.github/workflows/5_check_integration_tools.yml index b25b566b..ac9b9b81 100644 --- a/.github/workflows/5_check_integration_tools.yml +++ b/.github/workflows/5_check_integration_tools.yml @@ -16,7 +16,7 @@ on: automation_reference: description: 'Branch of wazuh-automation to use' required: false - default: 'main' + default: '5.0.1' type: string deployment_type: description: 'Deployment type to test'