Skip to content

Commit

Permalink
Merge branch '4.3-7.10' of https://github.com/wazuh/wazuh-kibana-app
Browse files Browse the repository at this point in the history
…into fix/4062-remove-agent-from-group-display-agents-list
  • Loading branch information
Desvelao committed Jun 2, 2022
2 parents 1609b99 + 9747088 commit 2afea76
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 13 deletions.
20 changes: 15 additions & 5 deletions .github/workflows/backport.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,26 @@
name: Backport
on:
pull_request:
pull_request_target:
types:
- closed
- labeled

jobs:
backport:
runs-on: ubuntu-18.04
name: Backport
runs-on: ubuntu-18.04
# Only react to merged PRs for security reasons.
# See https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#pull_request_target.
if: >
github.event.pull_request.merged
&& (
github.event.action == 'closed'
|| (
github.event.action == 'labeled'
&& contains(github.event.label.name, 'backport')
)
)
steps:
- name: Backport
uses: tibdex/backport@v1
- uses: tibdex/backport@v2
with:
github_token: ${{ secrets.PROJECT_ASSIGNER_TOKEN }}
github_token: ${{ secrets.GITHUB_TOKEN }}
17 changes: 15 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,31 @@

All notable changes to the Wazuh app project will be documented in this file.

## Wazuh v4.3.2 - Kibana 7.10.2, 7.16.x, 7.17.x - Revision 4303
## Wazuh v4.3.3 - Kibana 7.10.2, 7.16.x, 7.17.x - Revision 4304

### Fixed

- Fixed Wazuh Dashboard troubleshooting url [#4150](https://github.com/wazuh/wazuh-kibana-app/pull/4150)
- Fixed a toast message with a successful process appeared when removing an agent of a group in `Management/Groups` and the agent appear in the agent list after refreshing the table [#4167](https://github.com/wazuh/wazuh-kibana-app/pull/4167)

## Wazuh v4.3.1 - Kibana 7.10.2, 7.16.x, 7.17.x - Revision 4302
## Wazuh v4.3.2 - Kibana 7.10.2 , 7.16.x, 7.17.x - Revision 4303

### Added

- Support for Wazuh 4.3.2

## Wazuh v4.2.7 - Kibana 7.10.2, 7.11.2, 7.12.1, 7.13.0, 7.13.1, 7.13.2, 7.13.3, 7.13.4, 7.14.0, 7.14.1, 7.14.2 - Revision 4208

### Added

- Support for Wazuh 4.2.7

## Wazuh v4.3.1 - Kibana 7.10.2 , 7.16.x, 7.17.x - Revision 4302

### Added

- Added PowerShell version warning to Windows agent installation wizard [#4142](https://github.com/wazuh/wazuh-kibana-app/pull/4142)
- A new workflow is added to perform backports to specific branches [#4149](https://github.com/wazuh/wazuh-kibana-app/pull/4149)

### Fixed

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ This plugin for Kibana allows you to visualize and analyze Wazuh alerts stored i

## Requisites

- Wazuh HIDS 4.3.1
- Wazuh HIDS 4.3.2
- Kibana 7.10.2
- Elasticsearch 7.10.2

Expand All @@ -107,7 +107,7 @@ Install the Wazuh app plugin for Kibana

```
cd /usr/share/kibana
sudo -u kibana bin/kibana-plugin install https://packages.wazuh.com/4.x/ui/kibana/wazuh_kibana-4.3.1_7.10.2-1.zip
sudo -u kibana bin/kibana-plugin install https://packages.wazuh.com/4.x/ui/kibana/wazuh_kibana-4.3.2_7.10.2-1.zip
```

Restart Kibana
Expand Down Expand Up @@ -194,7 +194,7 @@ Install the Wazuh app

```
cd /usr/share/kibana/
sudo -u kibana bin/kibana-plugin install https://packages.wazuh.com/4.x/ui/kibana/wazuh_kibana-4.3.1_7.10.2-1.zip
sudo -u kibana bin/kibana-plugin install https://packages.wazuh.com/4.x/ui/kibana/wazuh_kibana-4.3.2_7.10.2-1.zip
```

Update configuration file permissions.
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "wazuh",
"version": "4.3.1",
"revision": "4302-1",
"code": "4302-1",
"version": "4.3.2",
"revision": "4303-1",
"code": "4303-1",
"pluginPlatform": {
"version": "7.10.2"
},
Expand Down

0 comments on commit 2afea76

Please sign in to comment.