Skip to content

Commit

Permalink
Merge v4.4.5-7.16.0 into 4.4-7.16 (#5668)
Browse files Browse the repository at this point in the history
* [Backport 4.4.5-7.16] Bump Wazuh and platform versions for v4.4.5 (#5639) (#5641)

* Bump Wazuh and platform versions for v4.4.5 (#5639)

* Update changelog

* Update opensearch_dashboards.json

* Update package.json

* Update readme

* Update tag script

(cherry picked from commit b33c4a5)

* Change tag.py version value

* Empty tag suffix

---------

Co-authored-by: Nicolas Agustin Guevara Pihen <[email protected]>
Co-authored-by: Federico Rodriguez <[email protected]>

* [Backport 4.4.5-7.16] Prepare tag.py for v4.4.5-rc1 (#5647)

Prepare tag.py for v4.4.5-rc1 (#5645)

Add -rc1 tag suffix

(cherry picked from commit c10eb4e)

Co-authored-by: Álex Ruiz <[email protected]>

* Add yarn.lock (#5653)

feat: add yarn.lock file

* [Backport 4.4.5-7.16] Update unit-test.yml (#5657)

Update unit-test.yml (#5655)

(cherry picked from commit 29ec6f9)

Co-authored-by: Álex Ruiz <[email protected]>

* [Backport 4.4.5-7.16] Add support for Wazuh 4.4.5-rc2 (#5661)

* Add support for Wazuh 4.4.5-rc2 (#5659)

(cherry picked from commit 1103a0c)

* Update revision of v4.4.5 in the Changelog

---------

Co-authored-by: Álex Ruiz <[email protected]>

* Bump v4.4.5-7.16.0-rc2

---------

Co-authored-by: Nicolas Agustin Guevara Pihen <[email protected]>
Co-authored-by: Federico Rodriguez <[email protected]>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Álex Ruiz <[email protected]>
Co-authored-by: Antonio <[email protected]>
  • Loading branch information
6 people authored Jul 18, 2023
1 parent ef31dbb commit 870e09b
Show file tree
Hide file tree
Showing 8 changed files with 2,953 additions and 19 deletions.
5 changes: 0 additions & 5 deletions .github/workflows/unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,6 @@ on:
options:
- 'yarn test:jest'
pull_request:
branches:
- 'master'
- '*.*-*.*'
- '*.*-*.*-wzd'
- '[0-9].[0-9]+'

jobs:
# Run unit tests with Jest
Expand Down
4 changes: 1 addition & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,6 @@ typings/
target/
build/

yarn.lock

cypress/node_modules/
cypress/.idea/
cypress/cypress.env.json
Expand All @@ -84,4 +82,4 @@ cypress/cookies.json
public/assets/custom/*

# Mac files
.DS_Store
.DS_Store
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.4.5 - Kibana 7.10.2, 7.16.x, 7.17.x - Revision 02

### Added

- Support for Wazuh 4.4.5

## Wazuh v4.4.4 - Kibana 7.10.2, 7.16.x, 7.17.x - Revision 01

### Added
Expand Down
4 changes: 2 additions & 2 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.4.4
- Wazuh HIDS 4.4.5
- Kibana 7.16.x or 7.17.x
- Elasticsearch 7.16.x or 7.17.x

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.4.4_7.16.0-1.zip
sudo -u kibana bin/kibana-plugin install https://packages.wazuh.com/4.x/ui/kibana/wazuh_kibana-4.4.5_7.16.0-1.zip
```

Restart Kibana
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.4.4-01",
"version": "4.4.5-02",
"kibanaVersion": "kibana",
"configPath": [
"wazuh"
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "wazuh",
"version": "4.4.4",
"revision": "01",
"version": "4.4.5",
"revision": "02",
"stage": "stable",
"commit": "6267c16e8",
"commit": "fad907e97",
"pluginPlatform": {
"version": "7.17.9"
"version": "7.16.0"
},
"description": "Wazuh app",
"keywords": [
Expand Down
8 changes: 4 additions & 4 deletions scripts/tag.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@
# ======================================================= #

# Wazuh version: major.minor.patch
version = '4.4.4'
version = '4.4.5'
# App's revision number (previous rev + 1)
revision = '01'
revision = '02'
# One of 'pre-alpha', 'alpha', 'beta', 'release-candidate', 'stable'
stage = 'stable'
# Tag suffix. Usually set to stage + stage iteration.
# Tag suffix. Usually set to stage + stage iteration. E.g. '-rc1'
tag_suffix = '-rc2'

# ================================================ #
Expand All @@ -30,7 +30,7 @@
TAGS_FILE = 'tags.log'
# Global variable. Will be set later
branch = None
minor = ".".join(version.split('.')[:2])
minor = version

# Supported versions of Kibana
kbn_versions = [
Expand Down
Loading

0 comments on commit 870e09b

Please sign in to comment.