diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c45a41fb..88f2e1fbc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,25 @@ All notable changes to the Wazuh app project will be documented in this file. +## Wazuh v3.7.1 - Kibana v6.5.1 - Revision 415 + +### Added + +- Support for Wazuh v3.7.1. +- Dev Tools module now autocompletes API endpoints ([#1030](https://github.com/wazuh/wazuh-kibana-app/pull/1030)). + +### Changed + +- Increased number of rows for syscollector tables ([#1033](https://github.com/wazuh/wazuh-kibana-app/pull/1033)). +- Modularized JSON/XML viewers for the configuration section ([#982](https://github.com/wazuh/wazuh-kibana-app/pull/982)). + +### Fixed + +- Added missing fields for syscollector network tables ([#1036](https://github.com/wazuh/wazuh-kibana-app/pull/1036)). +- Using the right API path when downloading CSV for decoders list ([#1045](https://github.com/wazuh/wazuh-kibana-app/pull/1045)). +- Including group field when downloading CSV for agents list ([#1044](https://github.com/wazuh/wazuh-kibana-app/pull/1044)). +- Preserve active tab in configuration section when refreshing the page ([#1037](https://github.com/wazuh/wazuh-kibana-app/pull/1037)). + ## Wazuh v3.7.0 - Kibana v6.5.0 / v6.5.1 - Revision 414 ### Added diff --git a/README.md b/README.md index 5517b5cc9..7db449ded 100644 --- a/README.md +++ b/README.md @@ -25,8 +25,8 @@ Visualize and analyze Wazuh alerts stored in Elasticsearch using our Kibana app ## Requisites -- Wazuh HIDS 3.7.0 -- Wazuh RESTful API 3.7.0 +- Wazuh HIDS 3.7.1 +- Wazuh RESTful API 3.7.1 - Kibana 6.5.1 - Elasticsearch 6.5.1 @@ -35,7 +35,7 @@ Visualize and analyze Wazuh alerts stored in Elasticsearch using our Kibana app Install the app ``` -sudo -u kibana NODE_OPTIONS="--max-old-space-size=3072" /usr/share/kibana/bin/kibana-plugin install https://packages.wazuh.com/wazuhapp/wazuhapp-3.7.0_6.5.1.zip +sudo -u kibana NODE_OPTIONS="--max-old-space-size=3072" /usr/share/kibana/bin/kibana-plugin install https://packages.wazuh.com/wazuhapp/wazuhapp-3.7.1_6.5.1.zip ``` Restart Kibana @@ -90,7 +90,7 @@ chown -R kibana:kibana /usr/share/kibana/plugins Install the app ``` -sudo -u kibana NODE_OPTIONS="--max-old-space-size=3072" /usr/share/kibana/bin/kibana-plugin install https://packages.wazuh.com/wazuhapp/wazuhapp-3.7.0_6.5.1.zip +sudo -u kibana NODE_OPTIONS="--max-old-space-size=3072" /usr/share/kibana/bin/kibana-plugin install https://packages.wazuh.com/wazuhapp/wazuhapp-3.7.1_6.5.1.zip ``` Restart Kibana @@ -151,6 +151,7 @@ service kibana restart | 6.4.3 | 3.7.0 | /usr/share/kibana/bin/kibana-plugin install | | 6.5.0 | 3.7.0 | /usr/share/kibana/bin/kibana-plugin install | | 6.5.1 | 3.7.0 | /usr/share/kibana/bin/kibana-plugin install | +| 6.5.1 | 3.7.1 | /usr/share/kibana/bin/kibana-plugin install | ## Contribute diff --git a/package.json b/package.json index 029dc5e27..4e9eef68c 100644 --- a/package.json +++ b/package.json @@ -1,8 +1,8 @@ { "name": "wazuh", - "version": "3.7.0", - "revision": "0414", - "code": "0414-1", + "version": "3.7.1", + "revision": "0415", + "code": "0415-0", "kibana": { "version": "6.5.1" },