From a79c49785be8b6e5601945d901de87620b10b8b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gonzalo=20Acu=C3=B1a?= <33964202+teddytpc1@users.noreply.github.com> Date: Fri, 23 Jan 2026 06:42:37 -0300 Subject: [PATCH] Merge 4.14.4 into main (#2182) Co-authored-by: Victor Carlos Erenu Co-authored-by: wazuhci <22834044+wazuhci@users.noreply.github.com> Co-authored-by: Enrique Araque --- CHANGELOG.md | 19 +++++++++++++++++++ build-docker-images/build-images.sh | 6 +++--- 2 files changed, 22 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a824046..99ddf7e4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -30,6 +30,24 @@ All notable changes to this project will be documented in this file. - None +## [4.14.4] + +### Added + +- None + +### Changed + +- None + +### Fixed + +- None + +### Deleted + +- None + ## [4.14.3] ### Added @@ -38,6 +56,7 @@ All notable changes to this project will be documented in this file. ### 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)) diff --git a/build-docker-images/build-images.sh b/build-docker-images/build-images.sh index d12f2eb1..d428cb2f 100755 --- a/build-docker-images/build-images.sh +++ b/build-docker-images/build-images.sh @@ -60,12 +60,12 @@ build() { curl -fsSL -o "$ARTIFACT_URLS_FILE" "https://packages-dev.wazuh.com/${WAZUH_MINOR_VERSION}/${ARTIFACT_URLS_FILE}" fi fi - + awk -F':' '{name=$1; val=substr($0,length(name)+3); gsub(/[-.]/,"_",name); print name "=" val}' $ARTIFACT_URLS_FILE > artifacts_env.txt - + if [ "${WAZUH_DEV_STAGE}" ];then if [ "${WAZUH_TAG_REFERENCE}" ];then - IMAGE_TAG="${WAZUH_IMAGE_VERSION}-${WAZUH_DEV_STAGE,,}-${WAZUH_TAG_REFERENCE}" + IMAGE_TAG="${WAZUH_IMAGE_VERSION}-${WAZUH_DEV_STAGE,,}-${WAZUH_TAG_REFERENCE}" else IMAGE_TAG="${WAZUH_IMAGE_VERSION}-${WAZUH_DEV_STAGE,,}" fi