Skip to content

Commit 2b3bb4e

Browse files
authored
Merge 4.7.5 into 4.8.0 (#6731)
Merge 4.7.5 into 4.8.0
2 parents 27f8e85 + 7be371a commit 2b3bb4e

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,13 +56,17 @@ All notable changes to the Wazuh app project will be documented in this file.
5656
- Removed compilation date field from the app [#6366](https://github.com/wazuh/wazuh-dashboard-plugins/pull/6366)
5757
- Removed WAZUH_REGISTRATION_SERVER from Windows agent deployment command [#6361](https://github.com/wazuh/wazuh-dashboard-plugins/pull/6361)
5858

59-
## Wazuh v4.7.5 - OpenSearch Dashboards 2.8.0 - Revision 01
59+
## Wazuh v4.7.5 - OpenSearch Dashboards 2.8.0 - Revision 02
6060

6161
### Added
6262

6363
- Support for Wazuh 4.7.5
6464
- Added sanitization to custom branding SVG files [#6687](https://github.com/wazuh/wazuh-dashboard-plugins/pull/6687)
6565

66+
### Fixed
67+
68+
- Fixed a missing space in the macOS register agent command when a password is required [#6718](https://github.com/wazuh/wazuh-dashboard-plugins/pull/6718)
69+
6670
## Wazuh v4.7.4 - OpenSearch Dashboards 2.8.0 - Revision 02
6771

6872
### Added

plugins/main/opensearch_dashboards.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@
3030
],
3131
"server": true,
3232
"ui": true
33-
}
33+
}

plugins/main/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,4 +85,4 @@
8585
"redux-mock-store": "^1.5.4",
8686
"swagger-client": "^3.19.11"
8787
}
88-
}
88+
}

plugins/main/public/controllers/register-agent/services/register-agent-os-commands-services.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,8 +140,8 @@ export const getMacOsInstallCommand = (
140140
if (optionalsForCommand?.wazuhPassword) {
141141
/**
142142
* We use the JSON.stringify to prevent that the scaped specials characters will be removed
143-
* and mantain the format of the password
144-
The JSON.stringify mantain the password format but adds " to wrap the characters
143+
* and maintain the format of the password
144+
The JSON.stringify maintain the password format but adds " to wrap the characters
145145
*/
146146
const scapedPasswordLength = JSON.stringify(
147147
optionalsForCommand?.wazuhPassword,

0 commit comments

Comments
 (0)