Merge 4.14.4 into main (#2182)

Co-authored-by: Victor Carlos Erenu <victor.erenu@wazuh.com>
Co-authored-by: wazuhci <22834044+wazuhci@users.noreply.github.com>
Co-authored-by: Enrique Araque <enrique.araque@wazuh.com>
This commit is contained in:
Gonzalo Acuña
2026-01-23 10:42:37 +01:00
committed by GitHub
co-authored by Victor Carlos Erenu wazuhci Enrique Araque
parent 33a497ab92
commit a79c49785b
2 changed files with 22 additions and 3 deletions
+19
View File
@@ -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))
+3 -3
View File
@@ -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