Skip to content

Commit c21e261

Browse files
AlexRuiz7github-actions[bot]
authored andcommitted
Post-release v4.3.10 (#4879)
* [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> (cherry picked from commit d0c9e91)
1 parent d0a58ac commit c21e261

File tree

5 files changed

+15
-12
lines changed

5 files changed

+15
-12
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

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

5+
## Wazuh v4.3.10 - Kibana 7.10.2, 7.16.x, 7.17.x - Revision 4311
6+
7+
### Fixed
8+
9+
- Fixed issue when logging out from Wazuh when SAML is enabled [#4815](https://github.com/wazuh/wazuh-kibana-app/issues/4815)
10+
511
## Wazuh v4.3.9 - Kibana 7.10.2, 7.16.x, 7.17.x - Revision 4310
612

713
### Added

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ This plugin for Kibana allows you to visualize and analyze Wazuh alerts stored i
8989

9090
## Requisites
9191

92-
- Wazuh HIDS 4.3.9
92+
- Wazuh HIDS 4.3.10
9393
- Kibana 7.10.2
9494
- Elasticsearch 7.10.2
9595

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

108108
```
109109
cd /usr/share/kibana
110-
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
110+
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
111111
```
112112

113113
Restart Kibana
@@ -194,7 +194,7 @@ Install the Wazuh app
194194

195195
```
196196
cd /usr/share/kibana/
197-
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
197+
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
198198
```
199199

200200
Update configuration file permissions.

kibana.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"id": "wazuh",
3-
"version": "4.3.9-4310",
3+
"version": "4.3.10-4311",
44
"kibanaVersion": "kibana",
55
"configPath": [
66
"wazuh"

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "wazuh",
3-
"version": "4.3.9",
4-
"revision": "4310",
5-
"code": "4310",
3+
"version": "4.3.10",
4+
"revision": "4311",
5+
"code": "4311",
66
"pluginPlatform": {
77
"version": "7.10.2"
88
},

public/app.js

+2-5
Original file line numberDiff line numberDiff line change
@@ -111,9 +111,6 @@ app.run(function ($rootElement) {
111111
// Add plugin help links as extension to plugin platform help menu
112112
addHelpMenuToAppChrome();
113113

114-
115-
const urlToLogout = getHttp().basePath.prepend('/logout');
116-
117114
// Bind deleteExistentToken on Log out component.
118115
$('.euiHeaderSectionItem__button, .euiHeaderSectionItemButton').on('mouseleave', function () {
119116
// opendistro
@@ -123,14 +120,14 @@ app.run(function ($rootElement) {
123120
// x-pack
124121
$('a:contains(Log out)').on('click', function (event) {
125122
// Override href's behaviour and navigate programatically
126-
// to '/logout' once the token has been deleted.
123+
// to the logout path once the token has been deleted.
127124
event.preventDefault();
128125
WzAuthentication.deleteExistentToken()
129126
.catch((err) => {
130127
console.error('[ERROR] - User token could not be deprecated - ', err);
131128
})
132129
.finally(() => {
133-
window.location = urlToLogout;
130+
window.location = event.currentTarget.href;
134131
});
135132
});
136133
});

0 commit comments

Comments
 (0)