Skip to content

Commit

Permalink
Post-release v4.3.10 (#4879)
Browse files Browse the repository at this point in the history
* [Backport 4.3-7.10] Create pull_request_template.md (#4591)

Create pull_request_template.md (#4583)

(cherry picked from commit aac7f22)

Co-authored-by: Álex <alejandro.ruiz.becerra@wazuh.com>

* Bump 4.3.9 (#4655)

* bump: Version v4.3.9-7.10.2

* bump: Version v4.3.9-7.10.2

* change function to get the path programatically (#4815)

* change function to get the path programatically

* update changelog

* Add support for Wazuh 4.3.10 - 7.10.2 (#4839)

Bump 4.3.10

* Fixed 4.3.10 changelog (#4845)

Fixed changelog

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Federico Rodriguez <federico.rodriguez@wazuh.com>
Co-authored-by: Antonio David Gutiérrez <antonio.gutierrez@wazuh.com>
Co-authored-by: Nico Guevara <42900763+Tostti@users.noreply.github.com>
  • Loading branch information
5 people committed Nov 17, 2022
1 parent 1c6a2f9 commit d0c9e91
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 12 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

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

## Wazuh v4.3.10 - Kibana 7.10.2, 7.16.x, 7.17.x - Revision 4311

### Fixed

- Fixed issue when logging out from Wazuh when SAML is enabled [#4815](https://github.com/wazuh/wazuh-kibana-app/issues/4815)

## Wazuh v4.3.9 - Kibana 7.10.2, 7.16.x, 7.17.x - Revision 4310

### Added
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.9
- Wazuh HIDS 4.3.10
- 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.9_7.10.2-1.zip
sudo -u kibana bin/kibana-plugin install https://packages.wazuh.com/4.x/ui/kibana/wazuh_kibana-4.3.10_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.9_7.10.2-1.zip
sudo -u kibana bin/kibana-plugin install https://packages.wazuh.com/4.x/ui/kibana/wazuh_kibana-4.3.10_7.10.2-1.zip
```

Update configuration file permissions.
Expand Down
2 changes: 1 addition & 1 deletion kibana.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"id": "wazuh",
"version": "4.3.9-4310",
"version": "4.3.10-4311",
"kibanaVersion": "kibana",
"configPath": [
"wazuh"
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.9",
"revision": "4310",
"code": "4310",
"version": "4.3.10",
"revision": "4311",
"code": "4311",
"pluginPlatform": {
"version": "7.10.2"
},
Expand Down
7 changes: 2 additions & 5 deletions public/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -111,9 +111,6 @@ app.run(function ($rootElement) {
// Add plugin help links as extension to plugin platform help menu
addHelpMenuToAppChrome();


const urlToLogout = getHttp().basePath.prepend('/logout');

// Bind deleteExistentToken on Log out component.
$('.euiHeaderSectionItem__button, .euiHeaderSectionItemButton').on('mouseleave', function () {
// opendistro
Expand All @@ -123,14 +120,14 @@ app.run(function ($rootElement) {
// x-pack
$('a:contains(Log out)').on('click', function (event) {
// Override href's behaviour and navigate programatically
// to '/logout' once the token has been deleted.
// to the logout path once the token has been deleted.
event.preventDefault();
WzAuthentication.deleteExistentToken()
.catch((err) => {
console.error('[ERROR] - User token could not be deprecated - ', err);
})
.finally(() => {
window.location = urlToLogout;
window.location = event.currentTarget.href;
});
});
});
Expand Down

0 comments on commit d0c9e91

Please sign in to comment.