Skip to content

Commit

Permalink
Merge 4.7.0 into 4.7.1 (#5981)
Browse files Browse the repository at this point in the history
Merge 4.7.0 into 4.7.1
> IMPORTANT: Merge PR strategy: Create a merge commit
  • Loading branch information
Tostti authored Oct 6, 2023
2 parents a5f14b2 + 98f572b commit 7817a6b
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 7 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ All notable changes to the Wazuh app project will be documented in this file.

- Removed views in JSON and XML formats from management settings. [#5747](https://github.com/wazuh/wazuh-kibana-app/pull/5747)

## Wazuh v4.6.0 - OpenSearch Dashboards 2.8.0 - Revision 00
## Wazuh v4.6.0 - OpenSearch Dashboards 2.8.0 - Revision 02

### Added

Expand Down Expand Up @@ -85,12 +85,16 @@ All notable changes to the Wazuh app project will be documented in this file.
- Removed obsolete code that caused duplicate requests to the api in `Management`. [#5485](https://github.com/wazuh/wazuh-kibana-app/pull/5485)
- Removed unused embedded jquery-ui [#5592](https://github.com/wazuh/wazuh-kibana-app/pull/5592)

## Wazuh v4.5.3 - OpenSearch Dashboards 2.6.0 - Revision 01
## Wazuh v4.5.3 - OpenSearch Dashboards 2.6.0 - Revision 02

### Added

- Support for Wazuh 4.5.3

### Changed

- Changed the command to install the agent on SUSE uses zypper [#5925](https://github.com/wazuh/wazuh-kibana-app/pull/5925)

## Wazuh v4.5.2 - OpenSearch Dashboards 2.6.0 - Revision 02

### Added
Expand Down
2 changes: 1 addition & 1 deletion plugins/main/opensearch_dashboards.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@
],
"server": true,
"ui": true
}
}
2 changes: 1 addition & 1 deletion plugins/main/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -85,4 +85,4 @@
"redux-mock-store": "^1.5.4",
"swagger-client": "^3.19.11"
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ export const EditRolesTable = ({
iconType='trash'
color='danger'
isDisabled={isDisabled && !isLoading}
onClick={async item => {
onClick={async ev => {
try {
setIsLoading(true);
const response = await WzRequest.apiReq(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1042,7 +1042,7 @@ apk add wazuh-agent=${this.state.wazuhVersion}-r1`,
amazonlinuxText: `sudo ${this.optionalDeploymentVariables()}${this.agentNameVariable()}yum install -y ${this.optionalPackages()}`,
fedoraText: `sudo ${this.optionalDeploymentVariables()}${this.agentNameVariable()}yum install -y ${this.optionalPackages()}`,
oraclelinuxText: `sudo ${this.optionalDeploymentVariables()}${this.agentNameVariable()}yum install -y ${this.optionalPackages()}`,
suseText: `sudo ${this.optionalDeploymentVariables()}${this.agentNameVariable()}yum install -y ${this.optionalPackages()}`,
suseText: `sudo rpm --import https://packages.wazuh.com/key/GPG-KEY-WAZUH && sudo ${this.optionalDeploymentVariables()}${this.agentNameVariable()}zypper install -y ${this.optionalPackages()}`,
raspbianText: `curl -so wazuh-agent.deb ${this.optionalPackages()} && sudo ${this.optionalDeploymentVariables()}${this.agentNameVariable()}dpkg -i ./wazuh-agent.deb`,
};

Expand Down
2 changes: 1 addition & 1 deletion plugins/main/scripts/release/tag.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ function getSupportedVersions(pluginVersion) {
branch: `${pluginVersion}-7.16`,
versions: [
...[...Array(4).keys()].map(idx => `7.16.${idx}`),
...[...Array(11).keys()].map(idx => `7.17.${idx}`),
...[...Array(14).keys()].map(idx => `7.17.${idx}`),
],
manifestPluginPath: 'kibana.json',
},
Expand Down

0 comments on commit 7817a6b

Please sign in to comment.