Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update release utilities #5677

Merged
merged 6 commits into from
Jul 20, 2023
Merged

Update release utilities #5677

merged 6 commits into from
Jul 20, 2023

Conversation

Desvelao
Copy link
Member

@Desvelao Desvelao commented Jul 13, 2023

Description

This pull request updates the release utilities.

Changes:

  • Add new bump script
  • Port tag.py to NodeJS and allow receive parameters from stdin
  • Add RELEASING.md file with information about the release process
    related to the usage of the included scripts
  • Add release:bump and release:tag package scripts to run these process
  • Remove tag.py
  • Remove tags rule from Makefile
  • Remove stage and commit properties from the package manifest

Both scripts ( bump.js and tag.js ) include:

  • Help text:
node scripts/release/bump.js --help
node scripts/release/tag.js --help
  • Usage examples:
node scripts/release/bump.js --examples
node scripts/release/tag.js --examples

The RELEASING.md file contains data about the usage of the included scripts in the release process. We should consider porting the relevant information of the internal document to this as necessary.

Issues Resolved

#5643

Evidence

bump script - help
$ node scripts/release/bump.js --help

bump - Help
Bump the plugin version, revision and/or platform version
Some warning messages are sent to stderr.

Usage: node bump.js [options]

Options:
  --debug                                             Set the logger to debug mode.
  --display-configuration                             Display the configuration. Log to sterr.
  --examples                                          Display examples of usage.
  --help                                              Display the help.
  --manifest-package <manifest-package>               Set the package manifest file location.
  --manifest-plugin <manifest-plugin>                 Set the plugin platform manifest file location.
  --platform-version <platform-version>               Set the platform version.
  --revision <revision>                               Set the revision.
  --version <version>                                 Set the version.
tag script - help
$ node scripts/release/tag.js --help
tag - Help
Create the tags in remote repository for the supported versions.
Some warning messages are sent to stderr.

Usage: node tag.js [options]

Options:
  --debug                                             Set the logger to debug mode.
  --display-configuration                             Display the configuration. Log to sterr.
  --examples                                          Display examples of usage.
  --export-tags <path/to/file>                        Export tags to file.
  --help                                              Display the help.
  --ignore-confirmation                               Ignore the confirmation.
  --manifest-package <manifest-package>               Set the package manifest file location.
  --manifest-plugin <manifest-plugin>                 Set the plugin platform manifest file location.
  --platform-version <platform-version>               Set the platform version.
  --revision <revision>                               Set the revision.
  --tag-suffix <tag-suffix>                           Set the tag suffix.
  --version <version>                                 Set the version.
Bump process - Bump version
$ yarn release:bump --version 4.5.2
yarn run v1.21.1
$ node scripts/release/bump --manifest-package package.json --manifest-plugin opensearch_dashboards.json --version 4.5.2
[WARN]: revision is not defined. Using from the current package manifest package.json: 01
[INFO]: Version: 4.5.2
[INFO]: Revision: 01
[INFO]: Package manifest: package.json
[INFO]: Plugin manifest: opensearch_dashboards.json
[INFO]: This will update the manifest files: package and platform plugin.
[INFO]: Updated package.json
[INFO]: Updated opensearch_dashboards.json
[WARN]: Some files could require to do changes manually. See RELEASING.md.
Done in 0.10s.
Tag process
$ yarn release:tag --version 4.4.6 --revision 06 --tag-suffix -test60 --export-tags ~/wazuh/tmp/tags.generated.log 
yarn run v1.21.1
$ node scripts/release/tag --manifest-package package.json --manifest-plugin opensearch_dashboards.json --version 4.4.6 --revision 06 --tag-suffix -test60 --export-tags ~/wazuh/tmp/tags.generated.log
[INFO]: Version: 4.4.6
[INFO]: Revision: 06
[INFO]: Tag suffix: -test60
[INFO]: Export tags to file: /home/toni/wazuh/tmp/tags.generated.log
[INFO]: Supported platforms
[INFO]: Platform: Kibana - Base branch: 4.4.6-7.16 - Versions: [7.16.0, 7.16.1, 7.16.2, 7.16.3, 7.17.0, 7.17.1, 7.17.2, 7.17.3, 7.17.4, 7.17.5, 7.17.6, 7.17.7, 7.17.8, 7.17.9, 7.17.10] - Manifest plugin path: kibana.json
[INFO]: Platform: OpenDistro - Base branch: 4.4.6-7.10 - Versions: [7.10.2] - Manifest plugin path: kibana.json
[INFO]: Platform: OpenSearch - Base branch: 4.4.6 - Versions: [2.6.0] - Manifest plugin path: opensearch_dashboards.json
[WARN]: Ensure the base branches are created in the remote and they have updated the files: README.md, CHANGELOG.md, unit tests files, API data files. It does not modify these files.
[WARN]: This script will commit and push the tags to the remote repository, deleting any unpushed changes.
Do you want to continue? [y/N] y
[INFO]: Run command: git checkout 4.4.6-7.16
Cambiado a rama '4.4.6-7.16'
[INFO]: Switched to branch: 4.4.6-7.16
[INFO]: Run command: git fetch --prune --prune-tags
[INFO]: Pruned local branches and tags
[INFO]: Generating tag: v4.4.6-7.16.0-test60...
[INFO]: Calling to bump script
[INFO]: Version: 4.4.6
[INFO]: Revision: 06
[INFO]: Package manifest: package.json
[INFO]: Plugin manifest: kibana.json
[INFO]: This will update the manifest files: package and platform plugin.
[INFO]: Updated package.json
[INFO]: Updated kibana.json
[WARN]: Some files could require to do changes manually. See RELEASING.md.
[INFO]: Run command: git commit -am "Bump v4.4.6-7.16.0-test60"
[INFO]: Commited
[INFO]: Run command: git tag -a v4.4.6-7.16.0-test60 -m "Wazuh 4.4.6 for Kibana 7.16.0"
[INFO]: Created tag: v4.4.6-7.16.0-test60
[INFO]: Run command: git push origin v4.4.6-7.16.0-test60
To https:/Desvelao/wazuh-kibana-app.git
 * [new tag]             v4.4.6-7.16.0-test60 -> v4.4.6-7.16.0-test60
[INFO]: Pushed tag v4.4.6-7.16.0-test60 to remote
[INFO]: Run command: git reset --hard origin/4.4.6-7.16
[INFO]: Undone changes
[INFO]: Run command: git checkout 4.4.6-7.16
Ya en '4.4.6-7.16'
[INFO]: Switched to branch: 4.4.6-7.16
[INFO]: Run command: git fetch --prune --prune-tags
[INFO]: Pruned local branches and tags
[INFO]: Generating tag: v4.4.6-7.16.1-test60...
[INFO]: Calling to bump script
[INFO]: Version: 4.4.6
[INFO]: Revision: 06
[INFO]: Package manifest: package.json
[INFO]: Plugin manifest: kibana.json
[INFO]: This will update the manifest files: package and platform plugin.
[INFO]: Updated package.json
[INFO]: Updated kibana.json
[WARN]: Some files could require to do changes manually. See RELEASING.md.
[INFO]: Run command: git commit -am "Bump v4.4.6-7.16.1-test60"
[INFO]: Commited
[INFO]: Run command: git tag -a v4.4.6-7.16.1-test60 -m "Wazuh 4.4.6 for Kibana 7.16.1"
[INFO]: Created tag: v4.4.6-7.16.1-test60
[INFO]: Run command: git push origin v4.4.6-7.16.1-test60
To https:/Desvelao/wazuh-kibana-app.git
 * [new tag]             v4.4.6-7.16.1-test60 -> v4.4.6-7.16.1-test60
[INFO]: Pushed tag v4.4.6-7.16.1-test60 to remote
[INFO]: Run command: git reset --hard origin/4.4.6-7.16
[INFO]: Undone changes
[INFO]: Run command: git checkout 4.4.6-7.16
Ya en '4.4.6-7.16'
[INFO]: Switched to branch: 4.4.6-7.16
[INFO]: Run command: git fetch --prune --prune-tags
[INFO]: Pruned local branches and tags
[INFO]: Generating tag: v4.4.6-7.16.2-test60...
[INFO]: Calling to bump script
[INFO]: Version: 4.4.6
[INFO]: Revision: 06
[INFO]: Package manifest: package.json
[INFO]: Plugin manifest: kibana.json
[INFO]: This will update the manifest files: package and platform plugin.
[INFO]: Updated package.json
[INFO]: Updated kibana.json
[WARN]: Some files could require to do changes manually. See RELEASING.md.
[INFO]: Run command: git commit -am "Bump v4.4.6-7.16.2-test60"
[INFO]: Commited
[INFO]: Run command: git tag -a v4.4.6-7.16.2-test60 -m "Wazuh 4.4.6 for Kibana 7.16.2"
[INFO]: Created tag: v4.4.6-7.16.2-test60
[INFO]: Run command: git push origin v4.4.6-7.16.2-test60
To https:/Desvelao/wazuh-kibana-app.git
 * [new tag]             v4.4.6-7.16.2-test60 -> v4.4.6-7.16.2-test60
[INFO]: Pushed tag v4.4.6-7.16.2-test60 to remote
[INFO]: Run command: git reset --hard origin/4.4.6-7.16
[INFO]: Undone changes
[INFO]: Run command: git checkout 4.4.6-7.16
Ya en '4.4.6-7.16'
[INFO]: Switched to branch: 4.4.6-7.16
[INFO]: Run command: git fetch --prune --prune-tags
[INFO]: Pruned local branches and tags
[INFO]: Generating tag: v4.4.6-7.16.3-test60...
[INFO]: Calling to bump script
[INFO]: Version: 4.4.6
[INFO]: Revision: 06
[INFO]: Package manifest: package.json
[INFO]: Plugin manifest: kibana.json
[INFO]: This will update the manifest files: package and platform plugin.
[INFO]: Updated package.json
[INFO]: Updated kibana.json
[WARN]: Some files could require to do changes manually. See RELEASING.md.
[INFO]: Run command: git commit -am "Bump v4.4.6-7.16.3-test60"
[INFO]: Commited
[INFO]: Run command: git tag -a v4.4.6-7.16.3-test60 -m "Wazuh 4.4.6 for Kibana 7.16.3"
[INFO]: Created tag: v4.4.6-7.16.3-test60
[INFO]: Run command: git push origin v4.4.6-7.16.3-test60
To https:/Desvelao/wazuh-kibana-app.git
 * [new tag]             v4.4.6-7.16.3-test60 -> v4.4.6-7.16.3-test60
[INFO]: Pushed tag v4.4.6-7.16.3-test60 to remote
[INFO]: Run command: git reset --hard origin/4.4.6-7.16
[INFO]: Undone changes
[INFO]: Run command: git checkout 4.4.6-7.16
Ya en '4.4.6-7.16'
[INFO]: Switched to branch: 4.4.6-7.16
[INFO]: Run command: git fetch --prune --prune-tags
[INFO]: Pruned local branches and tags
[INFO]: Generating tag: v4.4.6-7.17.0-test60...
[INFO]: Calling to bump script
[INFO]: Version: 4.4.6
[INFO]: Revision: 06
[INFO]: Package manifest: package.json
[INFO]: Plugin manifest: kibana.json
[INFO]: This will update the manifest files: package and platform plugin.
[INFO]: Updated package.json
[INFO]: Updated kibana.json
[WARN]: Some files could require to do changes manually. See RELEASING.md.
[INFO]: Run command: git commit -am "Bump v4.4.6-7.17.0-test60"
[INFO]: Commited
[INFO]: Run command: git tag -a v4.4.6-7.17.0-test60 -m "Wazuh 4.4.6 for Kibana 7.17.0"
[INFO]: Created tag: v4.4.6-7.17.0-test60
[INFO]: Run command: git push origin v4.4.6-7.17.0-test60
To https:/Desvelao/wazuh-kibana-app.git
 * [new tag]             v4.4.6-7.17.0-test60 -> v4.4.6-7.17.0-test60
[INFO]: Pushed tag v4.4.6-7.17.0-test60 to remote
[INFO]: Run command: git reset --hard origin/4.4.6-7.16
[INFO]: Undone changes
[INFO]: Run command: git checkout 4.4.6-7.16
Ya en '4.4.6-7.16'
[INFO]: Switched to branch: 4.4.6-7.16
[INFO]: Run command: git fetch --prune --prune-tags
[INFO]: Pruned local branches and tags
[INFO]: Generating tag: v4.4.6-7.17.1-test60...
[INFO]: Calling to bump script
[INFO]: Version: 4.4.6
[INFO]: Revision: 06
[INFO]: Package manifest: package.json
[INFO]: Plugin manifest: kibana.json
[INFO]: This will update the manifest files: package and platform plugin.
[INFO]: Updated package.json
[INFO]: Updated kibana.json
[WARN]: Some files could require to do changes manually. See RELEASING.md.
[INFO]: Run command: git commit -am "Bump v4.4.6-7.17.1-test60"
[INFO]: Commited
[INFO]: Run command: git tag -a v4.4.6-7.17.1-test60 -m "Wazuh 4.4.6 for Kibana 7.17.1"
[INFO]: Created tag: v4.4.6-7.17.1-test60
[INFO]: Run command: git push origin v4.4.6-7.17.1-test60
To https:/Desvelao/wazuh-kibana-app.git
 * [new tag]             v4.4.6-7.17.1-test60 -> v4.4.6-7.17.1-test60
[INFO]: Pushed tag v4.4.6-7.17.1-test60 to remote
[INFO]: Run command: git reset --hard origin/4.4.6-7.16
[INFO]: Undone changes
[INFO]: Run command: git checkout 4.4.6-7.16
Ya en '4.4.6-7.16'
[INFO]: Switched to branch: 4.4.6-7.16
[INFO]: Run command: git fetch --prune --prune-tags
[INFO]: Pruned local branches and tags
[INFO]: Generating tag: v4.4.6-7.17.2-test60...
[INFO]: Calling to bump script
[INFO]: Version: 4.4.6
[INFO]: Revision: 06
[INFO]: Package manifest: package.json
[INFO]: Plugin manifest: kibana.json
[INFO]: This will update the manifest files: package and platform plugin.
[INFO]: Updated package.json
[INFO]: Updated kibana.json
[WARN]: Some files could require to do changes manually. See RELEASING.md.
[INFO]: Run command: git commit -am "Bump v4.4.6-7.17.2-test60"
[INFO]: Commited
[INFO]: Run command: git tag -a v4.4.6-7.17.2-test60 -m "Wazuh 4.4.6 for Kibana 7.17.2"
[INFO]: Created tag: v4.4.6-7.17.2-test60
[INFO]: Run command: git push origin v4.4.6-7.17.2-test60
To https:/Desvelao/wazuh-kibana-app.git
 * [new tag]             v4.4.6-7.17.2-test60 -> v4.4.6-7.17.2-test60
[INFO]: Pushed tag v4.4.6-7.17.2-test60 to remote
[INFO]: Run command: git reset --hard origin/4.4.6-7.16
[INFO]: Undone changes
[INFO]: Run command: git checkout 4.4.6-7.16
Ya en '4.4.6-7.16'
[INFO]: Switched to branch: 4.4.6-7.16
[INFO]: Run command: git fetch --prune --prune-tags
[INFO]: Pruned local branches and tags
[INFO]: Generating tag: v4.4.6-7.17.3-test60...
[INFO]: Calling to bump script
[INFO]: Version: 4.4.6
[INFO]: Revision: 06
[INFO]: Package manifest: package.json
[INFO]: Plugin manifest: kibana.json
[INFO]: This will update the manifest files: package and platform plugin.
[INFO]: Updated package.json
[INFO]: Updated kibana.json
[WARN]: Some files could require to do changes manually. See RELEASING.md.
[INFO]: Run command: git commit -am "Bump v4.4.6-7.17.3-test60"
[INFO]: Commited
[INFO]: Run command: git tag -a v4.4.6-7.17.3-test60 -m "Wazuh 4.4.6 for Kibana 7.17.3"
[INFO]: Created tag: v4.4.6-7.17.3-test60
[INFO]: Run command: git push origin v4.4.6-7.17.3-test60
To https:/Desvelao/wazuh-kibana-app.git
 * [new tag]             v4.4.6-7.17.3-test60 -> v4.4.6-7.17.3-test60
[INFO]: Pushed tag v4.4.6-7.17.3-test60 to remote
[INFO]: Run command: git reset --hard origin/4.4.6-7.16
[INFO]: Undone changes
[INFO]: Run command: git checkout 4.4.6-7.16
Ya en '4.4.6-7.16'
[INFO]: Switched to branch: 4.4.6-7.16
[INFO]: Run command: git fetch --prune --prune-tags
[INFO]: Pruned local branches and tags
[INFO]: Generating tag: v4.4.6-7.17.4-test60...
[INFO]: Calling to bump script
[INFO]: Version: 4.4.6
[INFO]: Revision: 06
[INFO]: Package manifest: package.json
[INFO]: Plugin manifest: kibana.json
[INFO]: This will update the manifest files: package and platform plugin.
[INFO]: Updated package.json
[INFO]: Updated kibana.json
[WARN]: Some files could require to do changes manually. See RELEASING.md.
[INFO]: Run command: git commit -am "Bump v4.4.6-7.17.4-test60"
[INFO]: Commited
[INFO]: Run command: git tag -a v4.4.6-7.17.4-test60 -m "Wazuh 4.4.6 for Kibana 7.17.4"
[INFO]: Created tag: v4.4.6-7.17.4-test60
[INFO]: Run command: git push origin v4.4.6-7.17.4-test60
To https:/Desvelao/wazuh-kibana-app.git
 * [new tag]             v4.4.6-7.17.4-test60 -> v4.4.6-7.17.4-test60
[INFO]: Pushed tag v4.4.6-7.17.4-test60 to remote
[INFO]: Run command: git reset --hard origin/4.4.6-7.16
[INFO]: Undone changes
[INFO]: Run command: git checkout 4.4.6-7.16
Ya en '4.4.6-7.16'
[INFO]: Switched to branch: 4.4.6-7.16
[INFO]: Run command: git fetch --prune --prune-tags
[INFO]: Pruned local branches and tags
[INFO]: Generating tag: v4.4.6-7.17.5-test60...
[INFO]: Calling to bump script
[INFO]: Version: 4.4.6
[INFO]: Revision: 06
[INFO]: Package manifest: package.json
[INFO]: Plugin manifest: kibana.json
[INFO]: This will update the manifest files: package and platform plugin.
[INFO]: Updated package.json
[INFO]: Updated kibana.json
[WARN]: Some files could require to do changes manually. See RELEASING.md.
[INFO]: Run command: git commit -am "Bump v4.4.6-7.17.5-test60"
[INFO]: Commited
[INFO]: Run command: git tag -a v4.4.6-7.17.5-test60 -m "Wazuh 4.4.6 for Kibana 7.17.5"
[INFO]: Created tag: v4.4.6-7.17.5-test60
[INFO]: Run command: git push origin v4.4.6-7.17.5-test60
To https:/Desvelao/wazuh-kibana-app.git
 * [new tag]             v4.4.6-7.17.5-test60 -> v4.4.6-7.17.5-test60
[INFO]: Pushed tag v4.4.6-7.17.5-test60 to remote
[INFO]: Run command: git reset --hard origin/4.4.6-7.16
[INFO]: Undone changes
[INFO]: Run command: git checkout 4.4.6-7.16
Ya en '4.4.6-7.16'
[INFO]: Switched to branch: 4.4.6-7.16
[INFO]: Run command: git fetch --prune --prune-tags
[INFO]: Pruned local branches and tags
[INFO]: Generating tag: v4.4.6-7.17.6-test60...
[INFO]: Calling to bump script
[INFO]: Version: 4.4.6
[INFO]: Revision: 06
[INFO]: Package manifest: package.json
[INFO]: Plugin manifest: kibana.json
[INFO]: This will update the manifest files: package and platform plugin.
[INFO]: Updated package.json
[INFO]: Updated kibana.json
[WARN]: Some files could require to do changes manually. See RELEASING.md.
[INFO]: Run command: git commit -am "Bump v4.4.6-7.17.6-test60"
[INFO]: Commited
[INFO]: Run command: git tag -a v4.4.6-7.17.6-test60 -m "Wazuh 4.4.6 for Kibana 7.17.6"
[INFO]: Created tag: v4.4.6-7.17.6-test60
[INFO]: Run command: git push origin v4.4.6-7.17.6-test60
To https:/Desvelao/wazuh-kibana-app.git
 * [new tag]             v4.4.6-7.17.6-test60 -> v4.4.6-7.17.6-test60
[INFO]: Pushed tag v4.4.6-7.17.6-test60 to remote
[INFO]: Run command: git reset --hard origin/4.4.6-7.16
[INFO]: Undone changes
[INFO]: Run command: git checkout 4.4.6-7.16
Ya en '4.4.6-7.16'
[INFO]: Switched to branch: 4.4.6-7.16
[INFO]: Run command: git fetch --prune --prune-tags
[INFO]: Pruned local branches and tags
[INFO]: Generating tag: v4.4.6-7.17.7-test60...
[INFO]: Calling to bump script
[INFO]: Version: 4.4.6
[INFO]: Revision: 06
[INFO]: Package manifest: package.json
[INFO]: Plugin manifest: kibana.json
[INFO]: This will update the manifest files: package and platform plugin.
[INFO]: Updated package.json
[INFO]: Updated kibana.json
[WARN]: Some files could require to do changes manually. See RELEASING.md.
[INFO]: Run command: git commit -am "Bump v4.4.6-7.17.7-test60"
[INFO]: Commited
[INFO]: Run command: git tag -a v4.4.6-7.17.7-test60 -m "Wazuh 4.4.6 for Kibana 7.17.7"
[INFO]: Created tag: v4.4.6-7.17.7-test60
[INFO]: Run command: git push origin v4.4.6-7.17.7-test60
To https:/Desvelao/wazuh-kibana-app.git
 * [new tag]             v4.4.6-7.17.7-test60 -> v4.4.6-7.17.7-test60
[INFO]: Pushed tag v4.4.6-7.17.7-test60 to remote
[INFO]: Run command: git reset --hard origin/4.4.6-7.16
[INFO]: Undone changes
[INFO]: Run command: git checkout 4.4.6-7.16
Ya en '4.4.6-7.16'
[INFO]: Switched to branch: 4.4.6-7.16
[INFO]: Run command: git fetch --prune --prune-tags
[INFO]: Pruned local branches and tags
[INFO]: Generating tag: v4.4.6-7.17.8-test60...
[INFO]: Calling to bump script
[INFO]: Version: 4.4.6
[INFO]: Revision: 06
[INFO]: Package manifest: package.json
[INFO]: Plugin manifest: kibana.json
[INFO]: This will update the manifest files: package and platform plugin.
[INFO]: Updated package.json
[INFO]: Updated kibana.json
[WARN]: Some files could require to do changes manually. See RELEASING.md.
[INFO]: Run command: git commit -am "Bump v4.4.6-7.17.8-test60"
[INFO]: Commited
[INFO]: Run command: git tag -a v4.4.6-7.17.8-test60 -m "Wazuh 4.4.6 for Kibana 7.17.8"
[INFO]: Created tag: v4.4.6-7.17.8-test60
[INFO]: Run command: git push origin v4.4.6-7.17.8-test60
To https:/Desvelao/wazuh-kibana-app.git
 * [new tag]             v4.4.6-7.17.8-test60 -> v4.4.6-7.17.8-test60
[INFO]: Pushed tag v4.4.6-7.17.8-test60 to remote
[INFO]: Run command: git reset --hard origin/4.4.6-7.16
[INFO]: Undone changes
[INFO]: Run command: git checkout 4.4.6-7.16
Ya en '4.4.6-7.16'
[INFO]: Switched to branch: 4.4.6-7.16
[INFO]: Run command: git fetch --prune --prune-tags
[INFO]: Pruned local branches and tags
[INFO]: Generating tag: v4.4.6-7.17.9-test60...
[INFO]: Calling to bump script
[INFO]: Version: 4.4.6
[INFO]: Revision: 06
[INFO]: Package manifest: package.json
[INFO]: Plugin manifest: kibana.json
[INFO]: This will update the manifest files: package and platform plugin.
[INFO]: Updated package.json
[INFO]: Updated kibana.json
[WARN]: Some files could require to do changes manually. See RELEASING.md.
[INFO]: Run command: git commit -am "Bump v4.4.6-7.17.9-test60"
[INFO]: Commited
[INFO]: Run command: git tag -a v4.4.6-7.17.9-test60 -m "Wazuh 4.4.6 for Kibana 7.17.9"
[INFO]: Created tag: v4.4.6-7.17.9-test60
[INFO]: Run command: git push origin v4.4.6-7.17.9-test60
To https:/Desvelao/wazuh-kibana-app.git
 * [new tag]             v4.4.6-7.17.9-test60 -> v4.4.6-7.17.9-test60
[INFO]: Pushed tag v4.4.6-7.17.9-test60 to remote
[INFO]: Run command: git reset --hard origin/4.4.6-7.16
[INFO]: Undone changes
[INFO]: Run command: git checkout 4.4.6-7.16
Ya en '4.4.6-7.16'
[INFO]: Switched to branch: 4.4.6-7.16
[INFO]: Run command: git fetch --prune --prune-tags
[INFO]: Pruned local branches and tags
[INFO]: Generating tag: v4.4.6-7.17.10-test60...
[INFO]: Calling to bump script
[INFO]: Version: 4.4.6
[INFO]: Revision: 06
[INFO]: Package manifest: package.json
[INFO]: Plugin manifest: kibana.json
[INFO]: This will update the manifest files: package and platform plugin.
[INFO]: Updated package.json
[INFO]: Updated kibana.json
[WARN]: Some files could require to do changes manually. See RELEASING.md.
[INFO]: Run command: git commit -am "Bump v4.4.6-7.17.10-test60"
[INFO]: Commited
[INFO]: Run command: git tag -a v4.4.6-7.17.10-test60 -m "Wazuh 4.4.6 for Kibana 7.17.10"
[INFO]: Created tag: v4.4.6-7.17.10-test60
[INFO]: Run command: git push origin v4.4.6-7.17.10-test60
To https:/Desvelao/wazuh-kibana-app.git
 * [new tag]             v4.4.6-7.17.10-test60 -> v4.4.6-7.17.10-test60
[INFO]: Pushed tag v4.4.6-7.17.10-test60 to remote
[INFO]: Run command: git reset --hard origin/4.4.6-7.16
[INFO]: Undone changes
[INFO]: Run command: git checkout 4.4.6-7.10
Cambiado a rama '4.4.6-7.10'
[INFO]: Switched to branch: 4.4.6-7.10
[INFO]: Run command: git fetch --prune --prune-tags
[INFO]: Pruned local branches and tags
[INFO]: Generating tag: v4.4.6-7.10.2-test60...
[INFO]: Calling to bump script
[INFO]: Version: 4.4.6
[INFO]: Revision: 06
[INFO]: Package manifest: package.json
[INFO]: Plugin manifest: kibana.json
[INFO]: This will update the manifest files: package and platform plugin.
[INFO]: Updated package.json
[INFO]: Updated kibana.json
[WARN]: Some files could require to do changes manually. See RELEASING.md.
[INFO]: Run command: git commit -am "Bump v4.4.6-7.10.2-test60"
[INFO]: Commited
[INFO]: Run command: git tag -a v4.4.6-7.10.2-test60 -m "Wazuh 4.4.6 for OpenDistro 7.10.2"
[INFO]: Created tag: v4.4.6-7.10.2-test60
[INFO]: Run command: git push origin v4.4.6-7.10.2-test60
To https:/Desvelao/wazuh-kibana-app.git
 * [new tag]             v4.4.6-7.10.2-test60 -> v4.4.6-7.10.2-test60
[INFO]: Pushed tag v4.4.6-7.10.2-test60 to remote
[INFO]: Run command: git reset --hard origin/4.4.6-7.10
[INFO]: Undone changes
[INFO]: Run command: git checkout 4.4.6
Cambiado a rama '4.4.6'
[INFO]: Switched to branch: 4.4.6
[INFO]: Run command: git fetch --prune --prune-tags
[INFO]: Pruned local branches and tags
[INFO]: Generating tag: v4.4.6-2.6.0-test60...
[INFO]: Calling to bump script
[INFO]: Version: 4.4.6
[INFO]: Revision: 06
[INFO]: Package manifest: package.json
[INFO]: Plugin manifest: opensearch_dashboards.json
[INFO]: This will update the manifest files: package and platform plugin.
[INFO]: Updated package.json
[INFO]: Updated opensearch_dashboards.json
[WARN]: Some files could require to do changes manually. See RELEASING.md.
[INFO]: Run command: git commit -am "Bump v4.4.6-2.6.0-test60"
[INFO]: Commited
[INFO]: Run command: git tag -a v4.4.6-2.6.0-test60 -m "Wazuh 4.4.6 for OpenSearch 2.6.0"
[INFO]: Created tag: v4.4.6-2.6.0-test60
[INFO]: Run command: git push origin v4.4.6-2.6.0-test60
To https:/Desvelao/wazuh-kibana-app.git
 * [new tag]             v4.4.6-2.6.0-test60 -> v4.4.6-2.6.0-test60
[INFO]: Pushed tag v4.4.6-2.6.0-test60 to remote
[INFO]: Run command: git reset --hard origin/4.4.6
[INFO]: Undone changes
[INFO]: Run command: git tag | grep -P -i "^v4.4.6-.*-test60" > /home/toni/wazuh/tmp/tags.generated.log
[INFO]: Exported tags to file /home/toni/wazuh/tmp/tags.generated.log
Done in 84.79s.
$ cat ~/wazuh/tmp/tags.generated.log 
v4.4.6-2.6.0-test60
v4.4.6-7.10.2-test60
v4.4.6-7.16.0-test60
v4.4.6-7.16.1-test60
v4.4.6-7.16.2-test60
v4.4.6-7.16.3-test60
v4.4.6-7.17.0-test60
v4.4.6-7.17.1-test60
v4.4.6-7.17.10-test60
v4.4.6-7.17.2-test60
v4.4.6-7.17.3-test60
v4.4.6-7.17.4-test60
v4.4.6-7.17.5-test60
v4.4.6-7.17.6-test60
v4.4.6-7.17.7-test60
v4.4.6-7.17.8-test60
v4.4.6-7.17.9-test60

Test

Legend:
⚫: none
🟢: pass
🟡: warning
🔴: fail
⚪: not applicable

Other

Test Result
Bump plugin version using yarn release:bump --version 4.5.1. The version property in the package manifest should have changed to the specified plugin version and the version property in the plugin manifest file should have changed.
Bump plugin revision using yarn release:bump --revision 02. The revision property in the package manifest should have changed to the specified plugin revision and the version property in the plugin manifest file should have changed.
Bump plugin platform version using yarn release:bump --platform-version 2.7.0. The pluginPlatform.version property in the package manifest should have changed to the specified plugin platform version.
Bump plugin version and revision, and plugin platform version using yarn release:bump --version 4.5.1 --revision 02 --platform-version 2.7.0. The version, revision and pluginPlatform.version properties in the package manifest should have changed to the specified values and the version property in the plugin manifest file should have changed.
This test should be done in a forked repository because this will create tags. Create tags using yarn release:tag --version 4.5.0 --tag-suffix -test1
This test should be done in a forked repository because this will create tags. Create tags using yarn release:tag --revision 02 --tag-suffix -test2
This test should be done in a forked repository because this will create tags. Create tags using yarn release:tag --revision 02 --tag-suffix -test3 --export-tags <path/to/output.tags>

Details

⚫ Bump plugin version using yarn release:bump --version 4.5.1. The version property in the package manifest should have changed to the specified plugin version and the version property in the plugin manifest file should have changed.
⚫ Bump plugin revision using yarn release:bump --revision 02. The revision property in the package manifest should have changed to the specified plugin revision and the version property in the plugin manifest file should have changed.
⚫ Bump plugin platform version using yarn release:bump --platform-version 2.7.0. The pluginPlatform.version property in the package manifest should have changed to the specified plugin platform version.
⚫ Bump plugin version and revision, and plugin platform version using yarn release:bump --version 4.5.1 --revision 02 --platform-version 2.7.0. The version, revision and pluginPlatform.version properties in the package manifest should have changed to the specified values and the version property in the plugin manifest file should have changed.
⚫ This test should be done in a forked repository because this will create tags. Create tags using yarn release:tag --version 4.5.0 --tag-suffix -test1
⚫ This test should be done in a forked repository because this will create tags. Create tags using yarn release:tag --revision 02 --tag-suffix -test2
⚫ This test should be done in a forked repository because this will create tags. Create tags using yarn release:tag --revision 02 --tag-suffix -test3 --export-tags

Check List

  • All tests pass
    • yarn test:jest
  • New functionality includes testing.
  • New functionality has been documented.
  • Update CHANGELOG.md
  • Commits are signed per the DCO using --signoff

- Add new bump script
- Port tag.py to NodeJS and allow receive parameters from stdin
- Add RELEASING.md file with information about the release process
  related to the usage of the included scripts
- Add release:bump and release:tag package scripts to run these process
@Desvelao Desvelao requested a review from a team as a code owner July 13, 2023 07:11
@Desvelao Desvelao self-assigned this Jul 13, 2023
@Desvelao Desvelao linked an issue Jul 13, 2023 that may be closed by this pull request
4 tasks
@yenienserrano
Copy link
Member

yenienserrano commented Jul 13, 2023

Test

Legend:
⚫: none
🟢: pass
🟡: warning
🔴: fail
⚪: not applicable

Other

Test Result
Bump plugin version using yarn release:bump --version 4.5.1. The version property in the package manifest should have changed to the specified plugin version and the version property in the plugin manifest file should have changed. 🟢
Bump plugin revision using yarn release:bump --revision 02. The revision property in the package manifest should have changed to the specified plugin revision and the version property in the plugin manifest file should have changed. 🟢
Bump plugin platform version using yarn release:bump --platform-version 2.7.0. The pluginPlatform.version property in the package manifest should have changed to the specified plugin platform version. 🟢
Bump plugin version and revision, and plugin platform version using yarn release:bump --version 4.5.1 --revision 02 --platform-version 2.7.0. The version, revision and pluginPlatform.version properties in the package manifest should have changed to the specified values and the version property in the plugin manifest file should have changed. 🟢
This test should be done in a forked repository because this will create tags. Create tags using yarn release:tag --version 4.5.0 --tag-suffix -test1
This test should be done in a forked repository because this will create tags. Create tags using yarn release:tag --revision 02 --tag-suffix -test2
This test should be done in a forked repository because this will create tags. Create tags using yarn release:tag --revision 02 --tag-suffix -test3 --export-tags <path/to/output.tags>

Details

🟢 Bump plugin version using yarn release:bump --version 4.5.1. The version property in the package manifest should have changed to the specified plugin version and the version property in the plugin manifest file should have changed.

image

🟢 Bump plugin revision using yarn release:bump --revision 02. The revision property in the package manifest should have changed to the specified plugin revision and the version property in the plugin manifest file should have changed.

image

image

🟢 Bump plugin platform version using yarn release:bump --platform-version 2.7.0. The pluginPlatform.version property in the package manifest should have changed to the specified plugin platform version.

image

image

🟢 Bump plugin version and revision, and plugin platform version using yarn release:bump --version 4.5.1 --revision 02 --platform-version 2.7.0. The version, revision and pluginPlatform.version properties in the package manifest should have changed to the specified values and the version property in the plugin manifest file should have changed.

image

image

image

⚫ This test should be done in a forked repository because this will create tags. Create tags using yarn release:tag --version 4.5.0 --tag-suffix -test1
⚫ This test should be done in a forked repository because this will create tags. Create tags using yarn release:tag --revision 02 --tag-suffix -test2
⚫ This test should be done in a forked repository because this will create tags. Create tags using yarn release:tag --revision 02 --tag-suffix -test3 --export-tags

@yenienserrano
Copy link
Member

I found a problem when committing when there is no change for example in the first package that would have revision 1 and version 4.5.0.

yarn release:tag --version 4.5.0 --revision 01 --tag-suffix -test1 --debug
image

Maybe the solutions could be:

  • Skip the commit if there are no changes
  • Allow empty commits
  • Let the base branches have revision 00 so that the first tag has revision 1.

@Desvelao
Copy link
Member Author

Desvelao commented Jul 13, 2023

I found a problem when committing when there is no change for example in the first package that would have revision 1 and version 4.5.0.

yarn release:tag --version 4.5.0 --revision 01 --tag-suffix -test1 --debug image

Maybe the solutions could be:

  • Skip the commit if there are no changes
  • Allow empty commits
  • Let the base branches have revision 00 so that the first tag has revision 1.
    In a meeting, we saw this could not be happening with the usage of tags.py, because this script updated the commit field of the package manifest. This caused there were changes to commit.

We have to decide how to proceed in this case for the current logic.

@Desvelao
Copy link
Member Author

Desvelao commented Jul 13, 2023

I found a problem when committing when there is no change for example in the first package that would have revision 1 and version 4.5.0.
yarn release:tag --version 4.5.0 --revision 01 --tag-suffix -test1 --debug image
Maybe the solutions could be:

  • Skip the commit if there are no changes
  • Allow empty commits
  • Let the base branches have revision 00 so that the first tag has revision 1.
    In a meeting, we saw this could not be happening with the usage of tags.py, because this script updated the commit field of the package manifest. This caused there were changes to commit.

We have to decide how to proceed in this case for the current logic.

We decided to follow the approach:

Skip the commit if there are no changes

This commit a532593 implements it.

@github-actions
Copy link
Contributor

Code coverage (Jest) % values
Statements 8.78% ( 3244 / 36928 )
Branches 4.48% ( 1285 / 28635 )
Functions 7.63% ( 698 / 9147 )
Lines 8.84% ( 3129 / 35362 )

Tostti
Tostti previously approved these changes Jul 14, 2023
Copy link
Member

@Tostti Tostti left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Test

Legend:
⚫: none
🟢: pass
🟡: warning
🔴: fail
⚪: not applicable

Other

Test Result
Bump plugin version using yarn release:bump --version 4.5.1 . The version property in the package manifest should have changed to the specified plugin version and the version property in the plugin manifest file should have changed. 🟢
Bump plugin revision using yarn release:bump --revision 02 . The revision property in the package manifest should have changed to the specified plugin revision and the version property in the plugin manifest file should have changed. 🟢
Bump plugin platform version using yarn release:bump --platform-version 2.7.0 . The pluginPlatform.version property in the package manifest should have changed to the specified plugin platform version. 🟢
Bump plugin version and revision, and plugin platform version using yarn release:bump --version 4.5.1 --revision 02 --platform-version 2.7.0 . The version, revision and pluginPlatform.version properties in the package manifest should have changed to the specified values and the version property in the plugin manifest file should have changed. 🟢
This test should be done in a forked repository because this will create tags. Create tags using yarn release:tag --version 4.5.0 --tag-suffix -test1 🟢
This test should be done in a forked repository because this will create tags. Create tags using yarn release:tag --revision 02 --tag-suffix -test2 🟢
This test should be done in a forked repository because this will create tags. Create tags using yarn release:tag --revision 02 --tag-suffix -test4 --export-tags <path/to/output.tags> 🟢

Details

🟢 Bump plugin version using yarn release:bump --version 4.5.1. The version property in the package manifest should have changed to the specified plugin version and the version property in the plugin manifest file should have changed.
tostti@Tostti-PC:~/src/localrepos/wazuh-kibana-app$ yarn release:bump --version 4.5.1
yarn run v1.22.19
$ node scripts/release/bump --manifest-package package.json --manifest-plugin opensearch_dashboards.json --version 4.5.1
[WARN]: revision is not defined. Using from the current package manifest package.json: 01
[INFO]: Version: 4.5.1
[INFO]: Revision: 01
[INFO]: Package manifest: package.json
[INFO]: Plugin manifest: opensearch_dashboards.json
[INFO]: This will update the manifest files: package and platform plugin.
[INFO]: Updated package.json
[INFO]: Updated opensearch_dashboards.json
[WARN]: Some files could require to do changes manually. See RELEASING.md.
Done in 0.07s.
tostti@Tostti-PC:~/src/localrepos/wazuh-kibana-app$ git diff
diff --git a/opensearch_dashboards.json b/opensearch_dashboards.json
index 193854355..6f45efb6b 100644
--- a/opensearch_dashboards.json
+++ b/opensearch_dashboards.json
@@ -1,6 +1,6 @@
 {
   "id": "wazuh",
-  "version": "4.5.0-01",
+  "version": "4.5.1-01",
   "opensearchDashboardsVersion": "opensearchDashboards",
   "configPath": [
     "wazuh"
diff --git a/package.json b/package.json
index f68d3601c..b30d0a7f3 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "wazuh",
-  "version": "4.5.0",
+  "version": "4.5.1",
   "revision": "01",
   "pluginPlatform": {
     "version": "2.6.0"
@@ -84,4 +84,4 @@
     "tslint": "^5.11.0",
     "typescript-eslint-parser": "^18.0.0"
   }
-}
+}
\ No newline at end of file
🟢 Bump plugin revision using yarn release:bump --revision 02. The revision property in the package manifest should have changed to the specified plugin revision and the version property in the plugin manifest file should have changed.
tostti@Tostti-PC:~/src/localrepos/wazuh-kibana-app$ yarn release:bump --revision 02
yarn run v1.22.19
$ node scripts/release/bump --manifest-package package.json --manifest-plugin opensearch_dashboards.json --revision 02
[WARN]: version is not defined. Using from the current package manifest package.json: 4.5.0
[INFO]: Version: 4.5.0
[INFO]: Revision: 02
[INFO]: Package manifest: package.json
[INFO]: Plugin manifest: opensearch_dashboards.json
[INFO]: This will update the manifest files: package and platform plugin.
[INFO]: Updated package.json
[INFO]: Updated opensearch_dashboards.json
[WARN]: Some files could require to do changes manually. See RELEASING.md.
Done in 0.06s.
tostti@Tostti-PC:~/src/localrepos/wazuh-kibana-app$ git diff
diff --git a/opensearch_dashboards.json b/opensearch_dashboards.json
index 193854355..037594edb 100644
--- a/opensearch_dashboards.json
+++ b/opensearch_dashboards.json
@@ -1,6 +1,6 @@
 {
   "id": "wazuh",
-  "version": "4.5.0-01",
+  "version": "4.5.0-02",
   "opensearchDashboardsVersion": "opensearchDashboards",
   "configPath": [
     "wazuh"
diff --git a/package.json b/package.json
index f68d3601c..a6b596b2c 100644
--- a/package.json
+++ b/package.json
@@ -1,7 +1,7 @@
 {
   "name": "wazuh",
   "version": "4.5.0",
-  "revision": "01",
+  "revision": "02",
   "pluginPlatform": {
     "version": "2.6.0"
   },
@@ -84,4 +84,4 @@
     "tslint": "^5.11.0",
     "typescript-eslint-parser": "^18.0.0"
   }
-}
+}
\ No newline at end of file
🟢 Bump plugin platform version using yarn release:bump --platform-version 2.7.0. The pluginPlatform.version property in the package manifest should have changed to the specified plugin platform version.
tostti@Tostti-PC:~/src/localrepos/wazuh-kibana-app$ yarn release:bump --platform-version 2.7.0
yarn run v1.22.19
$ node scripts/release/bump --manifest-package package.json --manifest-plugin opensearch_dashboards.json --platform-version 2.7.0
[WARN]: version is not defined. Using from the current package manifest package.json: 4.5.0
[WARN]: revision is not defined. Using from the current package manifest package.json: 01
[INFO]: Version: 4.5.0
[INFO]: Revision: 01
[INFO]: Platform version: 2.7.0
[INFO]: Package manifest: package.json
[INFO]: Plugin manifest: opensearch_dashboards.json
[INFO]: This will update the manifest files: package and platform plugin.
[INFO]: Updated package.json
[INFO]: Updated opensearch_dashboards.json
[WARN]: Some files could require to do changes manually. See RELEASING.md.
Done in 0.06s.
tostti@Tostti-PC:~/src/localrepos/wazuh-kibana-app$ git diff
diff --git a/package.json b/package.json
index f68d3601c..b3f7e8933 100644
--- a/package.json
+++ b/package.json
@@ -3,7 +3,7 @@
   "version": "4.5.0",
   "revision": "01",
   "pluginPlatform": {
-    "version": "2.6.0"
+    "version": "2.7.0"
   },
   "description": "Wazuh dashboard",
   "keywords": [
@@ -84,4 +84,4 @@
     "tslint": "^5.11.0",
     "typescript-eslint-parser": "^18.0.0"
   }
-}
+}
\ No newline at end of file
🟢 Bump plugin version and revision, and plugin platform version using yarn release:bump --version 4.5.1 --revision 02 --platform-version 2.7.0. The version, revision and pluginPlatform.version properties in the package manifest should have changed to the specified values and the version property in the plugin manifest file should have changed.
tostti@Tostti-PC:~/src/localrepos/wazuh-kibana-app$ yarn release:bump --version 4.5.1 --revision 02 --platform-version 2.7.0
yarn run v1.22.19
$ node scripts/release/bump --manifest-package package.json --manifest-plugin opensearch_dashboards.json --version 4.5.1 --revision 02 --platform-version 2.7.0
[INFO]: Version: 4.5.1
[INFO]: Revision: 02
[INFO]: Platform version: 2.7.0
[INFO]: Package manifest: package.json
[INFO]: Plugin manifest: opensearch_dashboards.json
[INFO]: This will update the manifest files: package and platform plugin.
[INFO]: Updated package.json
[INFO]: Updated opensearch_dashboards.json
[WARN]: Some files could require to do changes manually. See RELEASING.md.
Done in 0.06s.
tostti@Tostti-PC:~/src/localrepos/wazuh-kibana-app$ git diff
diff --git a/opensearch_dashboards.json b/opensearch_dashboards.json
index 193854355..1f1a22dff 100644
--- a/opensearch_dashboards.json
+++ b/opensearch_dashboards.json
@@ -1,6 +1,6 @@
 {
   "id": "wazuh",
-  "version": "4.5.0-01",
+  "version": "4.5.1-02",
   "opensearchDashboardsVersion": "opensearchDashboards",
   "configPath": [
     "wazuh"
diff --git a/package.json b/package.json
index f68d3601c..b248f80cc 100644
--- a/package.json
+++ b/package.json
@@ -1,9 +1,9 @@
 {
   "name": "wazuh",
-  "version": "4.5.0",
-  "revision": "01",
+  "version": "4.5.1",
+  "revision": "02",
   "pluginPlatform": {
-    "version": "2.6.0"
+    "version": "2.7.0"
   },
   "description": "Wazuh dashboard",
   "keywords": [
@@ -84,4 +84,4 @@
     "tslint": "^5.11.0",
     "typescript-eslint-parser": "^18.0.0"
   }
-}
+}
\ No newline at end of file
🟢 This test should be done in a forked repository because this will create tags. Create tags using yarn release:tag --version 4.5.0 --tag-suffix -test1
Code execution
tostti@Tostti-PC:~/src/localrepos/wazuh-kibana-app$ yarn release:tag --version 4.5.0 --tag-suffix -test1
yarn run v1.22.19
$ node scripts/release/tag --manifest-package package.json --version 4.5.0 --tag-suffix -test1
[WARN]: revision is not defined. Using from the current package manifest package.json: 01
[INFO]: Version: 4.5.0
[INFO]: Revision: 01
[INFO]: Tag suffix: -test1
[INFO]: Supported platforms
[INFO]: Platform: Kibana - Base branch: 4.5.0-7.16 - Versions: [7.16.0, 7.16.1, 7.16.2, 7.16.3, 7.17.0, 7.17.1, 7.17.2, 7.17.3, 7.17.4, 7.17.5, 7.17.6, 7.17.7, 7.17.8, 7.17.9, 7.17.10] - Manifest plugin path: kibana.json
[INFO]: Platform: OpenDistro - Base branch: 4.5.0-7.10 - Versions: [7.10.2] - Manifest plugin path: kibana.json
[INFO]: Platform: OpenSearch - Base branch: 4.5.0 - Versions: [2.6.0] - Manifest plugin path: opensearch_dashboards.json
[WARN]: Ensure the base branches are created in the remote and they have updated the files: README.md, CHANGELOG.md, unit tests files, API data files. It does not modify these files.
[WARN]: This script will commit and push the tags to the remote repository, deleting any unpushed changes.
Do you want to continue? [y/N] Y
[INFO]: Run command: git checkout 4.5.0-7.16
Switched to a new branch '4.5.0-7.16'
[INFO]: Switched to branch: 4.5.0-7.16
[INFO]: Run command: git fetch --prune --prune-tags
[INFO]: Pruned local branches and tags
[INFO]: Generating tag: v4.5.0-7.16.0-test1...
[INFO]: Calling to bump script
[INFO]: Version: 4.5.0
[INFO]: Revision: 01
[INFO]: Platform version: 7.16.0
[INFO]: Package manifest: package.json
[INFO]: Plugin manifest: kibana.json
[INFO]: This will update the manifest files: package and platform plugin.
[INFO]: Updated package.json
[INFO]: Updated kibana.json
[WARN]: Some files could require to do changes manually. See RELEASING.md.
[INFO]: Run command: git diff --exit-code --no-patch;echo -n $?
[INFO]: There are changes to commit.
[INFO]: Run command: git commit -am "Bump v4.5.0-7.16.0-test1"
[INFO]: Commited
[INFO]: Run command: git tag -a v4.5.0-7.16.0-test1 -m "Wazuh 4.5.0 for Kibana 7.16.0"
[INFO]: Created tag: v4.5.0-7.16.0-test1
[INFO]: Run command: git push origin v4.5.0-7.16.0-test1
To https:/Tostti/wazuh-kibana-app.git
 * [new tag]             v4.5.0-7.16.0-test1 -> v4.5.0-7.16.0-test1
[INFO]: Pushed tag v4.5.0-7.16.0-test1 to remote
[INFO]: Run command: git reset --hard origin/4.5.0-7.16
[INFO]: Undone changes
[INFO]: Run command: git checkout 4.5.0-7.16
Already on '4.5.0-7.16'
[INFO]: Switched to branch: 4.5.0-7.16
[INFO]: Run command: git fetch --prune --prune-tags
[INFO]: Pruned local branches and tags
[INFO]: Generating tag: v4.5.0-7.16.1-test1...
[INFO]: Calling to bump script
[INFO]: Version: 4.5.0
[INFO]: Revision: 01
[INFO]: Platform version: 7.16.1
[INFO]: Package manifest: package.json
[INFO]: Plugin manifest: kibana.json
[INFO]: This will update the manifest files: package and platform plugin.
[INFO]: Updated package.json
[INFO]: Updated kibana.json
[WARN]: Some files could require to do changes manually. See RELEASING.md.
[INFO]: Run command: git diff --exit-code --no-patch;echo -n $?
[INFO]: There are changes to commit.
[INFO]: Run command: git commit -am "Bump v4.5.0-7.16.1-test1"
[INFO]: Commited
[INFO]: Run command: git tag -a v4.5.0-7.16.1-test1 -m "Wazuh 4.5.0 for Kibana 7.16.1"
[INFO]: Created tag: v4.5.0-7.16.1-test1
[INFO]: Run command: git push origin v4.5.0-7.16.1-test1
To https:/Tostti/wazuh-kibana-app.git
 * [new tag]             v4.5.0-7.16.1-test1 -> v4.5.0-7.16.1-test1
[INFO]: Pushed tag v4.5.0-7.16.1-test1 to remote
[INFO]: Run command: git reset --hard origin/4.5.0-7.16
[INFO]: Undone changes
[INFO]: Run command: git checkout 4.5.0-7.16
Already on '4.5.0-7.16'
[INFO]: Switched to branch: 4.5.0-7.16
[INFO]: Run command: git fetch --prune --prune-tags
[INFO]: Pruned local branches and tags
[INFO]: Generating tag: v4.5.0-7.16.2-test1...
[INFO]: Calling to bump script
[INFO]: Version: 4.5.0
[INFO]: Revision: 01
[INFO]: Platform version: 7.16.2
[INFO]: Package manifest: package.json
[INFO]: Plugin manifest: kibana.json
[INFO]: This will update the manifest files: package and platform plugin.
[INFO]: Updated package.json
[INFO]: Updated kibana.json
[WARN]: Some files could require to do changes manually. See RELEASING.md.
[INFO]: Run command: git diff --exit-code --no-patch;echo -n $?
[INFO]: There are changes to commit.
[INFO]: Run command: git commit -am "Bump v4.5.0-7.16.2-test1"
[INFO]: Commited
[INFO]: Run command: git tag -a v4.5.0-7.16.2-test1 -m "Wazuh 4.5.0 for Kibana 7.16.2"
[INFO]: Created tag: v4.5.0-7.16.2-test1
[INFO]: Run command: git push origin v4.5.0-7.16.2-test1
To https:/Tostti/wazuh-kibana-app.git
 * [new tag]             v4.5.0-7.16.2-test1 -> v4.5.0-7.16.2-test1
[INFO]: Pushed tag v4.5.0-7.16.2-test1 to remote
[INFO]: Run command: git reset --hard origin/4.5.0-7.16
[INFO]: Undone changes
[INFO]: Run command: git checkout 4.5.0-7.16
Already on '4.5.0-7.16'
[INFO]: Switched to branch: 4.5.0-7.16
[INFO]: Run command: git fetch --prune --prune-tags
[INFO]: Pruned local branches and tags
[INFO]: Generating tag: v4.5.0-7.16.3-test1...
[INFO]: Calling to bump script
[INFO]: Version: 4.5.0
[INFO]: Revision: 01
[INFO]: Platform version: 7.16.3
[INFO]: Package manifest: package.json
[INFO]: Plugin manifest: kibana.json
[INFO]: This will update the manifest files: package and platform plugin.
[INFO]: Updated package.json
[INFO]: Updated kibana.json
[WARN]: Some files could require to do changes manually. See RELEASING.md.
[INFO]: Run command: git diff --exit-code --no-patch;echo -n $?
[INFO]: There are changes to commit.
[INFO]: Run command: git commit -am "Bump v4.5.0-7.16.3-test1"
[INFO]: Commited
[INFO]: Run command: git tag -a v4.5.0-7.16.3-test1 -m "Wazuh 4.5.0 for Kibana 7.16.3"
[INFO]: Created tag: v4.5.0-7.16.3-test1
[INFO]: Run command: git push origin v4.5.0-7.16.3-test1
To https:/Tostti/wazuh-kibana-app.git
 * [new tag]             v4.5.0-7.16.3-test1 -> v4.5.0-7.16.3-test1
[INFO]: Pushed tag v4.5.0-7.16.3-test1 to remote
[INFO]: Run command: git reset --hard origin/4.5.0-7.16
[INFO]: Undone changes
[INFO]: Run command: git checkout 4.5.0-7.16
Already on '4.5.0-7.16'
[INFO]: Switched to branch: 4.5.0-7.16
[INFO]: Run command: git fetch --prune --prune-tags
[INFO]: Pruned local branches and tags
[INFO]: Generating tag: v4.5.0-7.17.0-test1...
[INFO]: Calling to bump script
[INFO]: Version: 4.5.0
[INFO]: Revision: 01
[INFO]: Platform version: 7.17.0
[INFO]: Package manifest: package.json
[INFO]: Plugin manifest: kibana.json
[INFO]: This will update the manifest files: package and platform plugin.
[INFO]: Updated package.json
[INFO]: Updated kibana.json
[WARN]: Some files could require to do changes manually. See RELEASING.md.
[INFO]: Run command: git diff --exit-code --no-patch;echo -n $?
[INFO]: There are changes to commit.
[INFO]: Run command: git commit -am "Bump v4.5.0-7.17.0-test1"
[INFO]: Commited
[INFO]: Run command: git tag -a v4.5.0-7.17.0-test1 -m "Wazuh 4.5.0 for Kibana 7.17.0"
[INFO]: Created tag: v4.5.0-7.17.0-test1
[INFO]: Run command: git push origin v4.5.0-7.17.0-test1
To https:/Tostti/wazuh-kibana-app.git
 * [new tag]             v4.5.0-7.17.0-test1 -> v4.5.0-7.17.0-test1
[INFO]: Pushed tag v4.5.0-7.17.0-test1 to remote
[INFO]: Run command: git reset --hard origin/4.5.0-7.16
[INFO]: Undone changes
[INFO]: Run command: git checkout 4.5.0-7.16
Already on '4.5.0-7.16'
[INFO]: Switched to branch: 4.5.0-7.16
[INFO]: Run command: git fetch --prune --prune-tags
[INFO]: Pruned local branches and tags
[INFO]: Generating tag: v4.5.0-7.17.1-test1...
[INFO]: Calling to bump script
[INFO]: Version: 4.5.0
[INFO]: Revision: 01
[INFO]: Platform version: 7.17.1
[INFO]: Package manifest: package.json
[INFO]: Plugin manifest: kibana.json
[INFO]: This will update the manifest files: package and platform plugin.
[INFO]: Updated package.json
[INFO]: Updated kibana.json
[WARN]: Some files could require to do changes manually. See RELEASING.md.
[INFO]: Run command: git diff --exit-code --no-patch;echo -n $?
[INFO]: There are changes to commit.
[INFO]: Run command: git commit -am "Bump v4.5.0-7.17.1-test1"
[INFO]: Commited
[INFO]: Run command: git tag -a v4.5.0-7.17.1-test1 -m "Wazuh 4.5.0 for Kibana 7.17.1"
[INFO]: Created tag: v4.5.0-7.17.1-test1
[INFO]: Run command: git push origin v4.5.0-7.17.1-test1
To https:/Tostti/wazuh-kibana-app.git
 * [new tag]             v4.5.0-7.17.1-test1 -> v4.5.0-7.17.1-test1
[INFO]: Pushed tag v4.5.0-7.17.1-test1 to remote
[INFO]: Run command: git reset --hard origin/4.5.0-7.16
[INFO]: Undone changes
[INFO]: Run command: git checkout 4.5.0-7.16
Already on '4.5.0-7.16'
[INFO]: Switched to branch: 4.5.0-7.16
[INFO]: Run command: git fetch --prune --prune-tags
[INFO]: Pruned local branches and tags
[INFO]: Generating tag: v4.5.0-7.17.2-test1...
[INFO]: Calling to bump script
[INFO]: Version: 4.5.0
[INFO]: Revision: 01
[INFO]: Platform version: 7.17.2
[INFO]: Package manifest: package.json
[INFO]: Plugin manifest: kibana.json
[INFO]: This will update the manifest files: package and platform plugin.
[INFO]: Updated package.json
[INFO]: Updated kibana.json
[WARN]: Some files could require to do changes manually. See RELEASING.md.
[INFO]: Run command: git diff --exit-code --no-patch;echo -n $?
[INFO]: There are changes to commit.
[INFO]: Run command: git commit -am "Bump v4.5.0-7.17.2-test1"
[INFO]: Commited
[INFO]: Run command: git tag -a v4.5.0-7.17.2-test1 -m "Wazuh 4.5.0 for Kibana 7.17.2"
[INFO]: Created tag: v4.5.0-7.17.2-test1
[INFO]: Run command: git push origin v4.5.0-7.17.2-test1
To https:/Tostti/wazuh-kibana-app.git
 * [new tag]             v4.5.0-7.17.2-test1 -> v4.5.0-7.17.2-test1
[INFO]: Pushed tag v4.5.0-7.17.2-test1 to remote
[INFO]: Run command: git reset --hard origin/4.5.0-7.16
[INFO]: Undone changes
[INFO]: Run command: git checkout 4.5.0-7.16
Already on '4.5.0-7.16'
[INFO]: Switched to branch: 4.5.0-7.16
[INFO]: Run command: git fetch --prune --prune-tags
[INFO]: Pruned local branches and tags
[INFO]: Generating tag: v4.5.0-7.17.3-test1...
[INFO]: Calling to bump script
[INFO]: Version: 4.5.0
[INFO]: Revision: 01
[INFO]: Platform version: 7.17.3
[INFO]: Package manifest: package.json
[INFO]: Plugin manifest: kibana.json
[INFO]: This will update the manifest files: package and platform plugin.
[INFO]: Updated package.json
[INFO]: Updated kibana.json
[WARN]: Some files could require to do changes manually. See RELEASING.md.
[INFO]: Run command: git diff --exit-code --no-patch;echo -n $?
[INFO]: There are changes to commit.
[INFO]: Run command: git commit -am "Bump v4.5.0-7.17.3-test1"
[INFO]: Commited
[INFO]: Run command: git tag -a v4.5.0-7.17.3-test1 -m "Wazuh 4.5.0 for Kibana 7.17.3"
[INFO]: Created tag: v4.5.0-7.17.3-test1
[INFO]: Run command: git push origin v4.5.0-7.17.3-test1
To https:/Tostti/wazuh-kibana-app.git
 * [new tag]             v4.5.0-7.17.3-test1 -> v4.5.0-7.17.3-test1
[INFO]: Pushed tag v4.5.0-7.17.3-test1 to remote
[INFO]: Run command: git reset --hard origin/4.5.0-7.16
[INFO]: Undone changes
[INFO]: Run command: git checkout 4.5.0-7.16
Already on '4.5.0-7.16'
[INFO]: Switched to branch: 4.5.0-7.16
[INFO]: Run command: git fetch --prune --prune-tags
[INFO]: Pruned local branches and tags
[INFO]: Generating tag: v4.5.0-7.17.4-test1...
[INFO]: Calling to bump script
[INFO]: Version: 4.5.0
[INFO]: Revision: 01
[INFO]: Platform version: 7.17.4
[INFO]: Package manifest: package.json
[INFO]: Plugin manifest: kibana.json
[INFO]: This will update the manifest files: package and platform plugin.
[INFO]: Updated package.json
[INFO]: Updated kibana.json
[WARN]: Some files could require to do changes manually. See RELEASING.md.
[INFO]: Run command: git diff --exit-code --no-patch;echo -n $?
[INFO]: There are changes to commit.
[INFO]: Run command: git commit -am "Bump v4.5.0-7.17.4-test1"
[INFO]: Commited
[INFO]: Run command: git tag -a v4.5.0-7.17.4-test1 -m "Wazuh 4.5.0 for Kibana 7.17.4"
[INFO]: Created tag: v4.5.0-7.17.4-test1
[INFO]: Run command: git push origin v4.5.0-7.17.4-test1
To https:/Tostti/wazuh-kibana-app.git
 * [new tag]             v4.5.0-7.17.4-test1 -> v4.5.0-7.17.4-test1
[INFO]: Pushed tag v4.5.0-7.17.4-test1 to remote
[INFO]: Run command: git reset --hard origin/4.5.0-7.16
[INFO]: Undone changes
[INFO]: Run command: git checkout 4.5.0-7.16
Already on '4.5.0-7.16'
[INFO]: Switched to branch: 4.5.0-7.16
[INFO]: Run command: git fetch --prune --prune-tags
[INFO]: Pruned local branches and tags
[INFO]: Generating tag: v4.5.0-7.17.5-test1...
[INFO]: Calling to bump script
[INFO]: Version: 4.5.0
[INFO]: Revision: 01
[INFO]: Platform version: 7.17.5
[INFO]: Package manifest: package.json
[INFO]: Plugin manifest: kibana.json
[INFO]: This will update the manifest files: package and platform plugin.
[INFO]: Updated package.json
[INFO]: Updated kibana.json
[WARN]: Some files could require to do changes manually. See RELEASING.md.
[INFO]: Run command: git diff --exit-code --no-patch;echo -n $?
[INFO]: There are changes to commit.
[INFO]: Run command: git commit -am "Bump v4.5.0-7.17.5-test1"
[INFO]: Commited
[INFO]: Run command: git tag -a v4.5.0-7.17.5-test1 -m "Wazuh 4.5.0 for Kibana 7.17.5"
[INFO]: Created tag: v4.5.0-7.17.5-test1
[INFO]: Run command: git push origin v4.5.0-7.17.5-test1
To https:/Tostti/wazuh-kibana-app.git
 * [new tag]             v4.5.0-7.17.5-test1 -> v4.5.0-7.17.5-test1
[INFO]: Pushed tag v4.5.0-7.17.5-test1 to remote
[INFO]: Run command: git reset --hard origin/4.5.0-7.16
[INFO]: Undone changes
[INFO]: Run command: git checkout 4.5.0-7.16
Already on '4.5.0-7.16'
[INFO]: Switched to branch: 4.5.0-7.16
[INFO]: Run command: git fetch --prune --prune-tags
[INFO]: Pruned local branches and tags
[INFO]: Generating tag: v4.5.0-7.17.6-test1...
[INFO]: Calling to bump script
[INFO]: Version: 4.5.0
[INFO]: Revision: 01
[INFO]: Platform version: 7.17.6
[INFO]: Package manifest: package.json
[INFO]: Plugin manifest: kibana.json
[INFO]: This will update the manifest files: package and platform plugin.
[INFO]: Updated package.json
[INFO]: Updated kibana.json
[WARN]: Some files could require to do changes manually. See RELEASING.md.
[INFO]: Run command: git diff --exit-code --no-patch;echo -n $?
[INFO]: There are changes to commit.
[INFO]: Run command: git commit -am "Bump v4.5.0-7.17.6-test1"
[INFO]: Commited
[INFO]: Run command: git tag -a v4.5.0-7.17.6-test1 -m "Wazuh 4.5.0 for Kibana 7.17.6"
[INFO]: Created tag: v4.5.0-7.17.6-test1
[INFO]: Run command: git push origin v4.5.0-7.17.6-test1
To https:/Tostti/wazuh-kibana-app.git
 * [new tag]             v4.5.0-7.17.6-test1 -> v4.5.0-7.17.6-test1
[INFO]: Pushed tag v4.5.0-7.17.6-test1 to remote
[INFO]: Run command: git reset --hard origin/4.5.0-7.16
[INFO]: Undone changes
[INFO]: Run command: git checkout 4.5.0-7.16
Already on '4.5.0-7.16'
[INFO]: Switched to branch: 4.5.0-7.16
[INFO]: Run command: git fetch --prune --prune-tags
[INFO]: Pruned local branches and tags
[INFO]: Generating tag: v4.5.0-7.17.7-test1...
[INFO]: Calling to bump script
[INFO]: Version: 4.5.0
[INFO]: Revision: 01
[INFO]: Platform version: 7.17.7
[INFO]: Package manifest: package.json
[INFO]: Plugin manifest: kibana.json
[INFO]: This will update the manifest files: package and platform plugin.
[INFO]: Updated package.json
[INFO]: Updated kibana.json
[WARN]: Some files could require to do changes manually. See RELEASING.md.
[INFO]: Run command: git diff --exit-code --no-patch;echo -n $?
[INFO]: There are changes to commit.
[INFO]: Run command: git commit -am "Bump v4.5.0-7.17.7-test1"
[INFO]: Commited
[INFO]: Run command: git tag -a v4.5.0-7.17.7-test1 -m "Wazuh 4.5.0 for Kibana 7.17.7"
[INFO]: Created tag: v4.5.0-7.17.7-test1
[INFO]: Run command: git push origin v4.5.0-7.17.7-test1
To https:/Tostti/wazuh-kibana-app.git
 * [new tag]             v4.5.0-7.17.7-test1 -> v4.5.0-7.17.7-test1
[INFO]: Pushed tag v4.5.0-7.17.7-test1 to remote
[INFO]: Run command: git reset --hard origin/4.5.0-7.16
[INFO]: Undone changes
[INFO]: Run command: git checkout 4.5.0-7.16
Already on '4.5.0-7.16'
[INFO]: Switched to branch: 4.5.0-7.16
[INFO]: Run command: git fetch --prune --prune-tags
[INFO]: Pruned local branches and tags
[INFO]: Generating tag: v4.5.0-7.17.8-test1...
[INFO]: Calling to bump script
[INFO]: Version: 4.5.0
[INFO]: Revision: 01
[INFO]: Platform version: 7.17.8
[INFO]: Package manifest: package.json
[INFO]: Plugin manifest: kibana.json
[INFO]: This will update the manifest files: package and platform plugin.
[INFO]: Updated package.json
[INFO]: Updated kibana.json
[WARN]: Some files could require to do changes manually. See RELEASING.md.
[INFO]: Run command: git diff --exit-code --no-patch;echo -n $?
[INFO]: There are changes to commit.
[INFO]: Run command: git commit -am "Bump v4.5.0-7.17.8-test1"
[INFO]: Commited
[INFO]: Run command: git tag -a v4.5.0-7.17.8-test1 -m "Wazuh 4.5.0 for Kibana 7.17.8"
[INFO]: Created tag: v4.5.0-7.17.8-test1
[INFO]: Run command: git push origin v4.5.0-7.17.8-test1
To https:/Tostti/wazuh-kibana-app.git
 * [new tag]             v4.5.0-7.17.8-test1 -> v4.5.0-7.17.8-test1
[INFO]: Pushed tag v4.5.0-7.17.8-test1 to remote
[INFO]: Run command: git reset --hard origin/4.5.0-7.16
[INFO]: Undone changes
[INFO]: Run command: git checkout 4.5.0-7.16
Already on '4.5.0-7.16'
[INFO]: Switched to branch: 4.5.0-7.16
[INFO]: Run command: git fetch --prune --prune-tags
[INFO]: Pruned local branches and tags
[INFO]: Generating tag: v4.5.0-7.17.9-test1...
[INFO]: Calling to bump script
[INFO]: Version: 4.5.0
[INFO]: Revision: 01
[INFO]: Platform version: 7.17.9
[INFO]: Package manifest: package.json
[INFO]: Plugin manifest: kibana.json
[INFO]: This will update the manifest files: package and platform plugin.
[INFO]: Updated package.json
[INFO]: Updated kibana.json
[WARN]: Some files could require to do changes manually. See RELEASING.md.
[INFO]: Run command: git diff --exit-code --no-patch;echo -n $?
[INFO]: There are not changes to commit.
[INFO]: Run command: git tag -a v4.5.0-7.17.9-test1 -m "Wazuh 4.5.0 for Kibana 7.17.9"
[INFO]: Created tag: v4.5.0-7.17.9-test1
[INFO]: Run command: git push origin v4.5.0-7.17.9-test1
To https:/Tostti/wazuh-kibana-app.git
 * [new tag]             v4.5.0-7.17.9-test1 -> v4.5.0-7.17.9-test1
[INFO]: Pushed tag v4.5.0-7.17.9-test1 to remote
[INFO]: Run command: git reset --hard origin/4.5.0-7.16
[INFO]: Undone changes
[INFO]: Run command: git checkout 4.5.0-7.16
Already on '4.5.0-7.16'
[INFO]: Switched to branch: 4.5.0-7.16
[INFO]: Run command: git fetch --prune --prune-tags
[INFO]: Pruned local branches and tags
[INFO]: Generating tag: v4.5.0-7.17.10-test1...
[INFO]: Calling to bump script
[INFO]: Version: 4.5.0
[INFO]: Revision: 01
[INFO]: Platform version: 7.17.10
[INFO]: Package manifest: package.json
[INFO]: Plugin manifest: kibana.json
[INFO]: This will update the manifest files: package and platform plugin.
[INFO]: Updated package.json
[INFO]: Updated kibana.json
[WARN]: Some files could require to do changes manually. See RELEASING.md.
[INFO]: Run command: git diff --exit-code --no-patch;echo -n $?
[INFO]: There are changes to commit.
[INFO]: Run command: git commit -am "Bump v4.5.0-7.17.10-test1"
[INFO]: Commited
[INFO]: Run command: git tag -a v4.5.0-7.17.10-test1 -m "Wazuh 4.5.0 for Kibana 7.17.10"
[INFO]: Created tag: v4.5.0-7.17.10-test1
[INFO]: Run command: git push origin v4.5.0-7.17.10-test1
To https:/Tostti/wazuh-kibana-app.git
 * [new tag]             v4.5.0-7.17.10-test1 -> v4.5.0-7.17.10-test1
[INFO]: Pushed tag v4.5.0-7.17.10-test1 to remote
[INFO]: Run command: git reset --hard origin/4.5.0-7.16
[INFO]: Undone changes
[INFO]: Run command: git checkout 4.5.0-7.10
Switched to a new branch '4.5.0-7.10'
[INFO]: Switched to branch: 4.5.0-7.10
[INFO]: Run command: git fetch --prune --prune-tags
[INFO]: Pruned local branches and tags
[INFO]: Generating tag: v4.5.0-7.10.2-test1...
[INFO]: Calling to bump script
[INFO]: Version: 4.5.0
[INFO]: Revision: 01
[INFO]: Platform version: 7.10.2
[INFO]: Package manifest: package.json
[INFO]: Plugin manifest: kibana.json
[INFO]: This will update the manifest files: package and platform plugin.
[INFO]: Updated package.json
[INFO]: Updated kibana.json
[WARN]: Some files could require to do changes manually. See RELEASING.md.
[INFO]: Run command: git diff --exit-code --no-patch;echo -n $?
[INFO]: There are not changes to commit.
[INFO]: Run command: git tag -a v4.5.0-7.10.2-test1 -m "Wazuh 4.5.0 for OpenDistro 7.10.2"
[INFO]: Created tag: v4.5.0-7.10.2-test1
[INFO]: Run command: git push origin v4.5.0-7.10.2-test1
To https:/Tostti/wazuh-kibana-app.git
 * [new tag]             v4.5.0-7.10.2-test1 -> v4.5.0-7.10.2-test1
[INFO]: Pushed tag v4.5.0-7.10.2-test1 to remote
[INFO]: Run command: git reset --hard origin/4.5.0-7.10
[INFO]: Undone changes
[INFO]: Run command: git checkout 4.5.0
Switched to a new branch '4.5.0'
[INFO]: Switched to branch: 4.5.0
[INFO]: Run command: git fetch --prune --prune-tags
[INFO]: Pruned local branches and tags
[INFO]: Generating tag: v4.5.0-2.6.0-test1...
[INFO]: Calling to bump script
[INFO]: Version: 4.5.0
[INFO]: Revision: 01
[INFO]: Platform version: 2.6.0
[INFO]: Package manifest: package.json
[INFO]: Plugin manifest: opensearch_dashboards.json
[INFO]: This will update the manifest files: package and platform plugin.
[INFO]: Updated package.json
[INFO]: Updated opensearch_dashboards.json
[WARN]: Some files could require to do changes manually. See RELEASING.md.
[INFO]: Run command: git diff --exit-code --no-patch;echo -n $?
[INFO]: There are not changes to commit.
[INFO]: Run command: git tag -a v4.5.0-2.6.0-test1 -m "Wazuh 4.5.0 for OpenSearch 2.6.0"
[INFO]: Created tag: v4.5.0-2.6.0-test1
[INFO]: Run command: git push origin v4.5.0-2.6.0-test1
To https:/Tostti/wazuh-kibana-app.git
 * [new tag]             v4.5.0-2.6.0-test1 -> v4.5.0-2.6.0-test1
[INFO]: Pushed tag v4.5.0-2.6.0-test1 to remote
[INFO]: Run command: git reset --hard origin/4.5.0
[INFO]: Undone changes
Done in 54.00s.
tostti@Tostti-PC:~/src/localrepos/wazuh-kibana-app$ git tag -l | grep 4.5.0
v4.5.0-2.6.0-test
v4.5.0-2.6.0-test1
v4.5.0-7.10.2-test1
v4.5.0-7.16.0-test1
v4.5.0-7.16.1-test1
v4.5.0-7.16.2-test1
v4.5.0-7.16.3-test1
v4.5.0-7.17.0-test1
v4.5.0-7.17.1-test1
v4.5.0-7.17.10-test1
v4.5.0-7.17.2-test1
v4.5.0-7.17.3-test1
v4.5.0-7.17.4-test1
v4.5.0-7.17.5-test1
v4.5.0-7.17.6-test1
v4.5.0-7.17.7-test1
v4.5.0-7.17.8-test1
v4.5.0-7.17.9-test1

image

image

🟢 This test should be done in a forked repository because this will create tags. Create tags using yarn release:tag --revision 02 --tag-suffix -test2
Code execution
tostti@Tostti-PC:~/src/localrepos/wazuh-kibana-app$ yarn release:tag --revision 02 --tag-suffix -test2
yarn run v1.22.19
$ node scripts/release/tag --manifest-package package.json --revision 02 --tag-suffix -test2
[WARN]: version is not defined. Using from the current package manifest package.json: 4.5.0
[INFO]: Version: 4.5.0
[INFO]: Revision: 02
[INFO]: Tag suffix: -test2
[INFO]: Supported platforms
[INFO]: Platform: Kibana - Base branch: 4.5.0-7.16 - Versions: [7.16.0, 7.16.1, 7.16.2, 7.16.3, 7.17.0, 7.17.1, 7.17.2, 7.17.3, 7.17.4, 7.17.5, 7.17.6, 7.17.7, 7.17.8, 7.17.9, 7.17.10] - Manifest plugin path: kibana.json
[INFO]: Platform: OpenDistro - Base branch: 4.5.0-7.10 - Versions: [7.10.2] - Manifest plugin path: kibana.json
[INFO]: Platform: OpenSearch - Base branch: 4.5.0 - Versions: [2.6.0] - Manifest plugin path: opensearch_dashboards.json
[WARN]: Ensure the base branches are created in the remote and they have updated the files: README.md, CHANGELOG.md, unit tests files, API data files. It does not modify these files.
[WARN]: This script will commit and push the tags to the remote repository, deleting any unpushed changes.
Do you want to continue? [y/N] y
[INFO]: Run command: git checkout 4.5.0-7.16
Switched to branch '4.5.0-7.16'
[INFO]: Switched to branch: 4.5.0-7.16
[INFO]: Run command: git fetch --prune --prune-tags
[INFO]: Pruned local branches and tags
[INFO]: Generating tag: v4.5.0-7.16.0-test2...
[INFO]: Calling to bump script
[INFO]: Version: 4.5.0
[INFO]: Revision: 02
[INFO]: Platform version: 7.16.0
[INFO]: Package manifest: package.json
[INFO]: Plugin manifest: kibana.json
[INFO]: This will update the manifest files: package and platform plugin.
[INFO]: Updated package.json
[INFO]: Updated kibana.json
[WARN]: Some files could require to do changes manually. See RELEASING.md.
[INFO]: Run command: git diff --exit-code --no-patch;echo -n $?
[INFO]: There are changes to commit.
[INFO]: Run command: git commit -am "Bump v4.5.0-7.16.0-test2"
[INFO]: Commited
[INFO]: Run command: git tag -a v4.5.0-7.16.0-test2 -m "Wazuh 4.5.0 for Kibana 7.16.0"
[INFO]: Created tag: v4.5.0-7.16.0-test2
[INFO]: Run command: git push origin v4.5.0-7.16.0-test2
To https:/Tostti/wazuh-kibana-app.git
 * [new tag]             v4.5.0-7.16.0-test2 -> v4.5.0-7.16.0-test2
[INFO]: Pushed tag v4.5.0-7.16.0-test2 to remote
[INFO]: Run command: git reset --hard origin/4.5.0-7.16
[INFO]: Undone changes
[INFO]: Run command: git checkout 4.5.0-7.16
Already on '4.5.0-7.16'
[INFO]: Switched to branch: 4.5.0-7.16
[INFO]: Run command: git fetch --prune --prune-tags
[INFO]: Pruned local branches and tags
[INFO]: Generating tag: v4.5.0-7.16.1-test2...
[INFO]: Calling to bump script
[INFO]: Version: 4.5.0
[INFO]: Revision: 02
[INFO]: Platform version: 7.16.1
[INFO]: Package manifest: package.json
[INFO]: Plugin manifest: kibana.json
[INFO]: This will update the manifest files: package and platform plugin.
[INFO]: Updated package.json
[INFO]: Updated kibana.json
[WARN]: Some files could require to do changes manually. See RELEASING.md.
[INFO]: Run command: git diff --exit-code --no-patch;echo -n $?
[INFO]: There are changes to commit.
[INFO]: Run command: git commit -am "Bump v4.5.0-7.16.1-test2"
[INFO]: Commited
[INFO]: Run command: git tag -a v4.5.0-7.16.1-test2 -m "Wazuh 4.5.0 for Kibana 7.16.1"
[INFO]: Created tag: v4.5.0-7.16.1-test2
[INFO]: Run command: git push origin v4.5.0-7.16.1-test2
To https:/Tostti/wazuh-kibana-app.git
 * [new tag]             v4.5.0-7.16.1-test2 -> v4.5.0-7.16.1-test2
[INFO]: Pushed tag v4.5.0-7.16.1-test2 to remote
[INFO]: Run command: git reset --hard origin/4.5.0-7.16
[INFO]: Undone changes
[INFO]: Run command: git checkout 4.5.0-7.16
Already on '4.5.0-7.16'
[INFO]: Switched to branch: 4.5.0-7.16
[INFO]: Run command: git fetch --prune --prune-tags
[INFO]: Pruned local branches and tags
[INFO]: Generating tag: v4.5.0-7.16.2-test2...
[INFO]: Calling to bump script
[INFO]: Version: 4.5.0
[INFO]: Revision: 02
[INFO]: Platform version: 7.16.2
[INFO]: Package manifest: package.json
[INFO]: Plugin manifest: kibana.json
[INFO]: This will update the manifest files: package and platform plugin.
[INFO]: Updated package.json
[INFO]: Updated kibana.json
[WARN]: Some files could require to do changes manually. See RELEASING.md.
[INFO]: Run command: git diff --exit-code --no-patch;echo -n $?
[INFO]: There are changes to commit.
[INFO]: Run command: git commit -am "Bump v4.5.0-7.16.2-test2"
[INFO]: Commited
[INFO]: Run command: git tag -a v4.5.0-7.16.2-test2 -m "Wazuh 4.5.0 for Kibana 7.16.2"
[INFO]: Created tag: v4.5.0-7.16.2-test2
[INFO]: Run command: git push origin v4.5.0-7.16.2-test2
To https:/Tostti/wazuh-kibana-app.git
 * [new tag]             v4.5.0-7.16.2-test2 -> v4.5.0-7.16.2-test2
[INFO]: Pushed tag v4.5.0-7.16.2-test2 to remote
[INFO]: Run command: git reset --hard origin/4.5.0-7.16
[INFO]: Undone changes
[INFO]: Run command: git checkout 4.5.0-7.16
Already on '4.5.0-7.16'
[INFO]: Switched to branch: 4.5.0-7.16
[INFO]: Run command: git fetch --prune --prune-tags
[INFO]: Pruned local branches and tags
[INFO]: Generating tag: v4.5.0-7.16.3-test2...
[INFO]: Calling to bump script
[INFO]: Version: 4.5.0
[INFO]: Revision: 02
[INFO]: Platform version: 7.16.3
[INFO]: Package manifest: package.json
[INFO]: Plugin manifest: kibana.json
[INFO]: This will update the manifest files: package and platform plugin.
[INFO]: Updated package.json
[INFO]: Updated kibana.json
[WARN]: Some files could require to do changes manually. See RELEASING.md.
[INFO]: Run command: git diff --exit-code --no-patch;echo -n $?
[INFO]: There are changes to commit.
[INFO]: Run command: git commit -am "Bump v4.5.0-7.16.3-test2"
[INFO]: Commited
[INFO]: Run command: git tag -a v4.5.0-7.16.3-test2 -m "Wazuh 4.5.0 for Kibana 7.16.3"
[INFO]: Created tag: v4.5.0-7.16.3-test2
[INFO]: Run command: git push origin v4.5.0-7.16.3-test2
To https:/Tostti/wazuh-kibana-app.git
 * [new tag]             v4.5.0-7.16.3-test2 -> v4.5.0-7.16.3-test2
[INFO]: Pushed tag v4.5.0-7.16.3-test2 to remote
[INFO]: Run command: git reset --hard origin/4.5.0-7.16
[INFO]: Undone changes
[INFO]: Run command: git checkout 4.5.0-7.16
Already on '4.5.0-7.16'
[INFO]: Switched to branch: 4.5.0-7.16
[INFO]: Run command: git fetch --prune --prune-tags
[INFO]: Pruned local branches and tags
[INFO]: Generating tag: v4.5.0-7.17.0-test2...
[INFO]: Calling to bump script
[INFO]: Version: 4.5.0
[INFO]: Revision: 02
[INFO]: Platform version: 7.17.0
[INFO]: Package manifest: package.json
[INFO]: Plugin manifest: kibana.json
[INFO]: This will update the manifest files: package and platform plugin.
[INFO]: Updated package.json
[INFO]: Updated kibana.json
[WARN]: Some files could require to do changes manually. See RELEASING.md.
[INFO]: Run command: git diff --exit-code --no-patch;echo -n $?
[INFO]: There are changes to commit.
[INFO]: Run command: git commit -am "Bump v4.5.0-7.17.0-test2"
[INFO]: Commited
[INFO]: Run command: git tag -a v4.5.0-7.17.0-test2 -m "Wazuh 4.5.0 for Kibana 7.17.0"
[INFO]: Created tag: v4.5.0-7.17.0-test2
[INFO]: Run command: git push origin v4.5.0-7.17.0-test2
To https:/Tostti/wazuh-kibana-app.git
 * [new tag]             v4.5.0-7.17.0-test2 -> v4.5.0-7.17.0-test2
[INFO]: Pushed tag v4.5.0-7.17.0-test2 to remote
[INFO]: Run command: git reset --hard origin/4.5.0-7.16
[INFO]: Undone changes
[INFO]: Run command: git checkout 4.5.0-7.16
Already on '4.5.0-7.16'
[INFO]: Switched to branch: 4.5.0-7.16
[INFO]: Run command: git fetch --prune --prune-tags
[INFO]: Pruned local branches and tags
[INFO]: Generating tag: v4.5.0-7.17.1-test2...
[INFO]: Calling to bump script
[INFO]: Version: 4.5.0
[INFO]: Revision: 02
[INFO]: Platform version: 7.17.1
[INFO]: Package manifest: package.json
[INFO]: Plugin manifest: kibana.json
[INFO]: This will update the manifest files: package and platform plugin.
[INFO]: Updated package.json
[INFO]: Updated kibana.json
[WARN]: Some files could require to do changes manually. See RELEASING.md.
[INFO]: Run command: git diff --exit-code --no-patch;echo -n $?
[INFO]: There are changes to commit.
[INFO]: Run command: git commit -am "Bump v4.5.0-7.17.1-test2"
[INFO]: Commited
[INFO]: Run command: git tag -a v4.5.0-7.17.1-test2 -m "Wazuh 4.5.0 for Kibana 7.17.1"
[INFO]: Created tag: v4.5.0-7.17.1-test2
[INFO]: Run command: git push origin v4.5.0-7.17.1-test2
To https:/Tostti/wazuh-kibana-app.git
 * [new tag]             v4.5.0-7.17.1-test2 -> v4.5.0-7.17.1-test2
[INFO]: Pushed tag v4.5.0-7.17.1-test2 to remote
[INFO]: Run command: git reset --hard origin/4.5.0-7.16
[INFO]: Undone changes
[INFO]: Run command: git checkout 4.5.0-7.16
Already on '4.5.0-7.16'
[INFO]: Switched to branch: 4.5.0-7.16
[INFO]: Run command: git fetch --prune --prune-tags
[INFO]: Pruned local branches and tags
[INFO]: Generating tag: v4.5.0-7.17.2-test2...
[INFO]: Calling to bump script
[INFO]: Version: 4.5.0
[INFO]: Revision: 02
[INFO]: Platform version: 7.17.2
[INFO]: Package manifest: package.json
[INFO]: Plugin manifest: kibana.json
[INFO]: This will update the manifest files: package and platform plugin.
[INFO]: Updated package.json
[INFO]: Updated kibana.json
[WARN]: Some files could require to do changes manually. See RELEASING.md.
[INFO]: Run command: git diff --exit-code --no-patch;echo -n $?
[INFO]: There are changes to commit.
[INFO]: Run command: git commit -am "Bump v4.5.0-7.17.2-test2"
[INFO]: Commited
[INFO]: Run command: git tag -a v4.5.0-7.17.2-test2 -m "Wazuh 4.5.0 for Kibana 7.17.2"
[INFO]: Created tag: v4.5.0-7.17.2-test2
[INFO]: Run command: git push origin v4.5.0-7.17.2-test2
To https:/Tostti/wazuh-kibana-app.git
 * [new tag]             v4.5.0-7.17.2-test2 -> v4.5.0-7.17.2-test2
[INFO]: Pushed tag v4.5.0-7.17.2-test2 to remote
[INFO]: Run command: git reset --hard origin/4.5.0-7.16
[INFO]: Undone changes
[INFO]: Run command: git checkout 4.5.0-7.16
Already on '4.5.0-7.16'
[INFO]: Switched to branch: 4.5.0-7.16
[INFO]: Run command: git fetch --prune --prune-tags
[INFO]: Pruned local branches and tags
[INFO]: Generating tag: v4.5.0-7.17.3-test2...
[INFO]: Calling to bump script
[INFO]: Version: 4.5.0
[INFO]: Revision: 02
[INFO]: Platform version: 7.17.3
[INFO]: Package manifest: package.json
[INFO]: Plugin manifest: kibana.json
[INFO]: This will update the manifest files: package and platform plugin.
[INFO]: Updated package.json
[INFO]: Updated kibana.json
[WARN]: Some files could require to do changes manually. See RELEASING.md.
[INFO]: Run command: git diff --exit-code --no-patch;echo -n $?
[INFO]: There are changes to commit.
[INFO]: Run command: git commit -am "Bump v4.5.0-7.17.3-test2"
[INFO]: Commited
[INFO]: Run command: git tag -a v4.5.0-7.17.3-test2 -m "Wazuh 4.5.0 for Kibana 7.17.3"
[INFO]: Created tag: v4.5.0-7.17.3-test2
[INFO]: Run command: git push origin v4.5.0-7.17.3-test2
To https:/Tostti/wazuh-kibana-app.git
 * [new tag]             v4.5.0-7.17.3-test2 -> v4.5.0-7.17.3-test2
[INFO]: Pushed tag v4.5.0-7.17.3-test2 to remote
[INFO]: Run command: git reset --hard origin/4.5.0-7.16
[INFO]: Undone changes
[INFO]: Run command: git checkout 4.5.0-7.16
Already on '4.5.0-7.16'
[INFO]: Switched to branch: 4.5.0-7.16
[INFO]: Run command: git fetch --prune --prune-tags
[INFO]: Pruned local branches and tags
[INFO]: Generating tag: v4.5.0-7.17.4-test2...
[INFO]: Calling to bump script
[INFO]: Version: 4.5.0
[INFO]: Revision: 02
[INFO]: Platform version: 7.17.4
[INFO]: Package manifest: package.json
[INFO]: Plugin manifest: kibana.json
[INFO]: This will update the manifest files: package and platform plugin.
[INFO]: Updated package.json
[INFO]: Updated kibana.json
[WARN]: Some files could require to do changes manually. See RELEASING.md.
[INFO]: Run command: git diff --exit-code --no-patch;echo -n $?
[INFO]: There are changes to commit.
[INFO]: Run command: git commit -am "Bump v4.5.0-7.17.4-test2"
[INFO]: Commited
[INFO]: Run command: git tag -a v4.5.0-7.17.4-test2 -m "Wazuh 4.5.0 for Kibana 7.17.4"
[INFO]: Created tag: v4.5.0-7.17.4-test2
[INFO]: Run command: git push origin v4.5.0-7.17.4-test2
To https:/Tostti/wazuh-kibana-app.git
 * [new tag]             v4.5.0-7.17.4-test2 -> v4.5.0-7.17.4-test2
[INFO]: Pushed tag v4.5.0-7.17.4-test2 to remote
[INFO]: Run command: git reset --hard origin/4.5.0-7.16
[INFO]: Undone changes
[INFO]: Run command: git checkout 4.5.0-7.16
Already on '4.5.0-7.16'
[INFO]: Switched to branch: 4.5.0-7.16
[INFO]: Run command: git fetch --prune --prune-tags
[INFO]: Pruned local branches and tags
[INFO]: Generating tag: v4.5.0-7.17.5-test2...
[INFO]: Calling to bump script
[INFO]: Version: 4.5.0
[INFO]: Revision: 02
[INFO]: Platform version: 7.17.5
[INFO]: Package manifest: package.json
[INFO]: Plugin manifest: kibana.json
[INFO]: This will update the manifest files: package and platform plugin.
[INFO]: Updated package.json
[INFO]: Updated kibana.json
[WARN]: Some files could require to do changes manually. See RELEASING.md.
[INFO]: Run command: git diff --exit-code --no-patch;echo -n $?
[INFO]: There are changes to commit.
[INFO]: Run command: git commit -am "Bump v4.5.0-7.17.5-test2"
[INFO]: Commited
[INFO]: Run command: git tag -a v4.5.0-7.17.5-test2 -m "Wazuh 4.5.0 for Kibana 7.17.5"
[INFO]: Created tag: v4.5.0-7.17.5-test2
[INFO]: Run command: git push origin v4.5.0-7.17.5-test2
To https:/Tostti/wazuh-kibana-app.git
 * [new tag]             v4.5.0-7.17.5-test2 -> v4.5.0-7.17.5-test2
[INFO]: Pushed tag v4.5.0-7.17.5-test2 to remote
[INFO]: Run command: git reset --hard origin/4.5.0-7.16
[INFO]: Undone changes
[INFO]: Run command: git checkout 4.5.0-7.16
Already on '4.5.0-7.16'
[INFO]: Switched to branch: 4.5.0-7.16
[INFO]: Run command: git fetch --prune --prune-tags
[INFO]: Pruned local branches and tags
[INFO]: Generating tag: v4.5.0-7.17.6-test2...
[INFO]: Calling to bump script
[INFO]: Version: 4.5.0
[INFO]: Revision: 02
[INFO]: Platform version: 7.17.6
[INFO]: Package manifest: package.json
[INFO]: Plugin manifest: kibana.json
[INFO]: This will update the manifest files: package and platform plugin.
[INFO]: Updated package.json
[INFO]: Updated kibana.json
[WARN]: Some files could require to do changes manually. See RELEASING.md.
[INFO]: Run command: git diff --exit-code --no-patch;echo -n $?
[INFO]: There are changes to commit.
[INFO]: Run command: git commit -am "Bump v4.5.0-7.17.6-test2"
[INFO]: Commited
[INFO]: Run command: git tag -a v4.5.0-7.17.6-test2 -m "Wazuh 4.5.0 for Kibana 7.17.6"
[INFO]: Created tag: v4.5.0-7.17.6-test2
[INFO]: Run command: git push origin v4.5.0-7.17.6-test2
To https:/Tostti/wazuh-kibana-app.git
 * [new tag]             v4.5.0-7.17.6-test2 -> v4.5.0-7.17.6-test2
[INFO]: Pushed tag v4.5.0-7.17.6-test2 to remote
[INFO]: Run command: git reset --hard origin/4.5.0-7.16
[INFO]: Undone changes
[INFO]: Run command: git checkout 4.5.0-7.16
Already on '4.5.0-7.16'
[INFO]: Switched to branch: 4.5.0-7.16
[INFO]: Run command: git fetch --prune --prune-tags
[INFO]: Pruned local branches and tags
[INFO]: Generating tag: v4.5.0-7.17.7-test2...
[INFO]: Calling to bump script
[INFO]: Version: 4.5.0
[INFO]: Revision: 02
[INFO]: Platform version: 7.17.7
[INFO]: Package manifest: package.json
[INFO]: Plugin manifest: kibana.json
[INFO]: This will update the manifest files: package and platform plugin.
[INFO]: Updated package.json
[INFO]: Updated kibana.json
[WARN]: Some files could require to do changes manually. See RELEASING.md.
[INFO]: Run command: git diff --exit-code --no-patch;echo -n $?
[INFO]: There are changes to commit.
[INFO]: Run command: git commit -am "Bump v4.5.0-7.17.7-test2"
[INFO]: Commited
[INFO]: Run command: git tag -a v4.5.0-7.17.7-test2 -m "Wazuh 4.5.0 for Kibana 7.17.7"
[INFO]: Created tag: v4.5.0-7.17.7-test2
[INFO]: Run command: git push origin v4.5.0-7.17.7-test2
To https:/Tostti/wazuh-kibana-app.git
 * [new tag]             v4.5.0-7.17.7-test2 -> v4.5.0-7.17.7-test2
[INFO]: Pushed tag v4.5.0-7.17.7-test2 to remote
[INFO]: Run command: git reset --hard origin/4.5.0-7.16
[INFO]: Undone changes
[INFO]: Run command: git checkout 4.5.0-7.16
Already on '4.5.0-7.16'
[INFO]: Switched to branch: 4.5.0-7.16
[INFO]: Run command: git fetch --prune --prune-tags
[INFO]: Pruned local branches and tags
[INFO]: Generating tag: v4.5.0-7.17.8-test2...
[INFO]: Calling to bump script
[INFO]: Version: 4.5.0
[INFO]: Revision: 02
[INFO]: Platform version: 7.17.8
[INFO]: Package manifest: package.json
[INFO]: Plugin manifest: kibana.json
[INFO]: This will update the manifest files: package and platform plugin.
[INFO]: Updated package.json
[INFO]: Updated kibana.json
[WARN]: Some files could require to do changes manually. See RELEASING.md.
[INFO]: Run command: git diff --exit-code --no-patch;echo -n $?
[INFO]: There are changes to commit.
[INFO]: Run command: git commit -am "Bump v4.5.0-7.17.8-test2"
[INFO]: Commited
[INFO]: Run command: git tag -a v4.5.0-7.17.8-test2 -m "Wazuh 4.5.0 for Kibana 7.17.8"
[INFO]: Created tag: v4.5.0-7.17.8-test2
[INFO]: Run command: git push origin v4.5.0-7.17.8-test2
To https:/Tostti/wazuh-kibana-app.git
 * [new tag]             v4.5.0-7.17.8-test2 -> v4.5.0-7.17.8-test2
[INFO]: Pushed tag v4.5.0-7.17.8-test2 to remote
[INFO]: Run command: git reset --hard origin/4.5.0-7.16
[INFO]: Undone changes
[INFO]: Run command: git checkout 4.5.0-7.16
Already on '4.5.0-7.16'
[INFO]: Switched to branch: 4.5.0-7.16
[INFO]: Run command: git fetch --prune --prune-tags
[INFO]: Pruned local branches and tags
[INFO]: Generating tag: v4.5.0-7.17.9-test2...
[INFO]: Calling to bump script
[INFO]: Version: 4.5.0
[INFO]: Revision: 02
[INFO]: Platform version: 7.17.9
[INFO]: Package manifest: package.json
[INFO]: Plugin manifest: kibana.json
[INFO]: This will update the manifest files: package and platform plugin.
[INFO]: Updated package.json
[INFO]: Updated kibana.json
[WARN]: Some files could require to do changes manually. See RELEASING.md.
[INFO]: Run command: git diff --exit-code --no-patch;echo -n $?
[INFO]: There are changes to commit.
[INFO]: Run command: git commit -am "Bump v4.5.0-7.17.9-test2"
[INFO]: Commited
[INFO]: Run command: git tag -a v4.5.0-7.17.9-test2 -m "Wazuh 4.5.0 for Kibana 7.17.9"
[INFO]: Created tag: v4.5.0-7.17.9-test2
[INFO]: Run command: git push origin v4.5.0-7.17.9-test2
To https:/Tostti/wazuh-kibana-app.git
 * [new tag]             v4.5.0-7.17.9-test2 -> v4.5.0-7.17.9-test2
[INFO]: Pushed tag v4.5.0-7.17.9-test2 to remote
[INFO]: Run command: git reset --hard origin/4.5.0-7.16
[INFO]: Undone changes
[INFO]: Run command: git checkout 4.5.0-7.16
Already on '4.5.0-7.16'
[INFO]: Switched to branch: 4.5.0-7.16
[INFO]: Run command: git fetch --prune --prune-tags
[INFO]: Pruned local branches and tags
[INFO]: Generating tag: v4.5.0-7.17.10-test2...
[INFO]: Calling to bump script
[INFO]: Version: 4.5.0
[INFO]: Revision: 02
[INFO]: Platform version: 7.17.10
[INFO]: Package manifest: package.json
[INFO]: Plugin manifest: kibana.json
[INFO]: This will update the manifest files: package and platform plugin.
[INFO]: Updated package.json
[INFO]: Updated kibana.json
[WARN]: Some files could require to do changes manually. See RELEASING.md.
[INFO]: Run command: git diff --exit-code --no-patch;echo -n $?
[INFO]: There are changes to commit.
[INFO]: Run command: git commit -am "Bump v4.5.0-7.17.10-test2"
[INFO]: Commited
[INFO]: Run command: git tag -a v4.5.0-7.17.10-test2 -m "Wazuh 4.5.0 for Kibana 7.17.10"
[INFO]: Created tag: v4.5.0-7.17.10-test2
[INFO]: Run command: git push origin v4.5.0-7.17.10-test2
To https:/Tostti/wazuh-kibana-app.git
 * [new tag]             v4.5.0-7.17.10-test2 -> v4.5.0-7.17.10-test2
[INFO]: Pushed tag v4.5.0-7.17.10-test2 to remote
[INFO]: Run command: git reset --hard origin/4.5.0-7.16
[INFO]: Undone changes
[INFO]: Run command: git checkout 4.5.0-7.10
Switched to branch '4.5.0-7.10'
[INFO]: Switched to branch: 4.5.0-7.10
[INFO]: Run command: git fetch --prune --prune-tags
[INFO]: Pruned local branches and tags
[INFO]: Generating tag: v4.5.0-7.10.2-test2...
[INFO]: Calling to bump script
[INFO]: Version: 4.5.0
[INFO]: Revision: 02
[INFO]: Platform version: 7.10.2
[INFO]: Package manifest: package.json
[INFO]: Plugin manifest: kibana.json
[INFO]: This will update the manifest files: package and platform plugin.
[INFO]: Updated package.json
[INFO]: Updated kibana.json
[WARN]: Some files could require to do changes manually. See RELEASING.md.
[INFO]: Run command: git diff --exit-code --no-patch;echo -n $?
[INFO]: There are changes to commit.
[INFO]: Run command: git commit -am "Bump v4.5.0-7.10.2-test2"
[INFO]: Commited
[INFO]: Run command: git tag -a v4.5.0-7.10.2-test2 -m "Wazuh 4.5.0 for OpenDistro 7.10.2"
[INFO]: Created tag: v4.5.0-7.10.2-test2
[INFO]: Run command: git push origin v4.5.0-7.10.2-test2
To https:/Tostti/wazuh-kibana-app.git
 * [new tag]             v4.5.0-7.10.2-test2 -> v4.5.0-7.10.2-test2
[INFO]: Pushed tag v4.5.0-7.10.2-test2 to remote
[INFO]: Run command: git reset --hard origin/4.5.0-7.10
[INFO]: Undone changes
[INFO]: Run command: git checkout 4.5.0
Switched to branch '4.5.0'
[INFO]: Switched to branch: 4.5.0
[INFO]: Run command: git fetch --prune --prune-tags
[INFO]: Pruned local branches and tags
[INFO]: Generating tag: v4.5.0-2.6.0-test2...
[INFO]: Calling to bump script
[INFO]: Version: 4.5.0
[INFO]: Revision: 02
[INFO]: Platform version: 2.6.0
[INFO]: Package manifest: package.json
[INFO]: Plugin manifest: opensearch_dashboards.json
[INFO]: This will update the manifest files: package and platform plugin.
[INFO]: Updated package.json
[INFO]: Updated opensearch_dashboards.json
[WARN]: Some files could require to do changes manually. See RELEASING.md.
[INFO]: Run command: git diff --exit-code --no-patch;echo -n $?
[INFO]: There are changes to commit.
[INFO]: Run command: git commit -am "Bump v4.5.0-2.6.0-test2"
[INFO]: Commited
[INFO]: Run command: git tag -a v4.5.0-2.6.0-test2 -m "Wazuh 4.5.0 for OpenSearch 2.6.0"
[INFO]: Created tag: v4.5.0-2.6.0-test2
[INFO]: Run command: git push origin v4.5.0-2.6.0-test2
To https:/Tostti/wazuh-kibana-app.git
 * [new tag]             v4.5.0-2.6.0-test2 -> v4.5.0-2.6.0-test2
[INFO]: Pushed tag v4.5.0-2.6.0-test2 to remote
[INFO]: Run command: git reset --hard origin/4.5.0
[INFO]: Undone changes
Done in 50.46s.
tostti@Tostti-PC:~/src/localrepos/wazuh-kibana-app$ git tag -l | grep test2
v4.5.0-2.6.0-test2
v4.5.0-7.10.2-test2
v4.5.0-7.16.0-test2
v4.5.0-7.16.1-test2
v4.5.0-7.16.2-test2
v4.5.0-7.16.3-test2
v4.5.0-7.17.0-test2
v4.5.0-7.17.1-test2
v4.5.0-7.17.10-test2
v4.5.0-7.17.2-test2
v4.5.0-7.17.3-test2
v4.5.0-7.17.4-test2
v4.5.0-7.17.5-test2
v4.5.0-7.17.6-test2
v4.5.0-7.17.7-test2
v4.5.0-7.17.8-test2
v4.5.0-7.17.9-test2

image

image

image

🟢 This test should be done in a forked repository because this will create tags. Create tags using yarn release:tag --revision 02 --tag-suffix -test4 --export-tags
Code execution
tostti@Tostti-PC:~/src/localrepos/wazuh-kibana-app$ yarn release:tag --revision 02 --tag-suffix -test4 --export-tags /home/tostti/src/localrepos/tags/tags
yarn run v1.22.19
$ node scripts/release/tag --manifest-package package.json --revision 02 --tag-suffix -test4 --export-tags /home/tostti/src/localrepos/tags/tags
[WARN]: version is not defined. Using from the current package manifest package.json: 4.5.0
[INFO]: Version: 4.5.0
[INFO]: Revision: 02
[INFO]: Tag suffix: -test4
[INFO]: Export tags to file: /home/tostti/src/localrepos/tags/tags
[INFO]: Supported platforms
[INFO]: Platform: Kibana - Base branch: 4.5.0-7.16 - Versions: [7.16.0, 7.16.1, 7.16.2, 7.16.3, 7.17.0, 7.17.1, 7.17.2, 7.17.3, 7.17.4, 7.17.5, 7.17.6, 7.17.7, 7.17.8, 7.17.9, 7.17.10] - Manifest plugin path: kibana.json
[INFO]: Platform: OpenDistro - Base branch: 4.5.0-7.10 - Versions: [7.10.2] - Manifest plugin path: kibana.json
[INFO]: Platform: OpenSearch - Base branch: 4.5.0 - Versions: [2.6.0] - Manifest plugin path: opensearch_dashboards.json
[WARN]: Ensure the base branches are created in the remote and they have updated the files: README.md, CHANGELOG.md, unit tests files, API data files. It does not modify these files.
[WARN]: This script will commit and push the tags to the remote repository, deleting any unpushed changes.
Do you want to continue? [y/N] y
[INFO]: Run command: git checkout 4.5.0-7.16
Switched to branch '4.5.0-7.16'
[INFO]: Switched to branch: 4.5.0-7.16
[INFO]: Run command: git fetch --prune --prune-tags
[INFO]: Pruned local branches and tags
[INFO]: Generating tag: v4.5.0-7.16.0-test4...
[INFO]: Calling to bump script
[INFO]: Version: 4.5.0
[INFO]: Revision: 02
[INFO]: Platform version: 7.16.0
[INFO]: Package manifest: package.json
[INFO]: Plugin manifest: kibana.json
[INFO]: This will update the manifest files: package and platform plugin.
[INFO]: Updated package.json
[INFO]: Updated kibana.json
[WARN]: Some files could require to do changes manually. See RELEASING.md.
[INFO]: Run command: git diff --exit-code --no-patch;echo -n $?
[INFO]: There are not changes to commit.
[INFO]: Run command: git tag -a v4.5.0-7.16.0-test4 -m "Wazuh 4.5.0 for Kibana 7.16.0"
[INFO]: Created tag: v4.5.0-7.16.0-test4
[INFO]: Run command: git push origin v4.5.0-7.16.0-test4
To https:/Tostti/wazuh-kibana-app.git
 * [new tag]             v4.5.0-7.16.0-test4 -> v4.5.0-7.16.0-test4
[INFO]: Pushed tag v4.5.0-7.16.0-test4 to remote
[INFO]: Run command: git reset --hard origin/4.5.0-7.16
[INFO]: Undone changes
[INFO]: Run command: git checkout 4.5.0-7.16
Already on '4.5.0-7.16'
[INFO]: Switched to branch: 4.5.0-7.16
[INFO]: Run command: git fetch --prune --prune-tags
[INFO]: Pruned local branches and tags
[INFO]: Generating tag: v4.5.0-7.16.1-test4...
[INFO]: Calling to bump script
[INFO]: Version: 4.5.0
[INFO]: Revision: 02
[INFO]: Platform version: 7.16.1
[INFO]: Package manifest: package.json
[INFO]: Plugin manifest: kibana.json
[INFO]: This will update the manifest files: package and platform plugin.
[INFO]: Updated package.json
[INFO]: Updated kibana.json
[WARN]: Some files could require to do changes manually. See RELEASING.md.
[INFO]: Run command: git diff --exit-code --no-patch;echo -n $?
[INFO]: There are changes to commit.
[INFO]: Run command: git commit -am "Bump v4.5.0-7.16.1-test4"
[INFO]: Commited
[INFO]: Run command: git tag -a v4.5.0-7.16.1-test4 -m "Wazuh 4.5.0 for Kibana 7.16.1"
[INFO]: Created tag: v4.5.0-7.16.1-test4
[INFO]: Run command: git push origin v4.5.0-7.16.1-test4
To https:/Tostti/wazuh-kibana-app.git
 * [new tag]             v4.5.0-7.16.1-test4 -> v4.5.0-7.16.1-test4
[INFO]: Pushed tag v4.5.0-7.16.1-test4 to remote
[INFO]: Run command: git reset --hard origin/4.5.0-7.16
[INFO]: Undone changes
[INFO]: Run command: git checkout 4.5.0-7.16
Already on '4.5.0-7.16'
[INFO]: Switched to branch: 4.5.0-7.16
[INFO]: Run command: git fetch --prune --prune-tags
[INFO]: Pruned local branches and tags
[INFO]: Generating tag: v4.5.0-7.16.2-test4...
[INFO]: Calling to bump script
[INFO]: Version: 4.5.0
[INFO]: Revision: 02
[INFO]: Platform version: 7.16.2
[INFO]: Package manifest: package.json
[INFO]: Plugin manifest: kibana.json
[INFO]: This will update the manifest files: package and platform plugin.
[INFO]: Updated package.json
[INFO]: Updated kibana.json
[WARN]: Some files could require to do changes manually. See RELEASING.md.
[INFO]: Run command: git diff --exit-code --no-patch;echo -n $?
[INFO]: There are changes to commit.
[INFO]: Run command: git commit -am "Bump v4.5.0-7.16.2-test4"
[INFO]: Commited
[INFO]: Run command: git tag -a v4.5.0-7.16.2-test4 -m "Wazuh 4.5.0 for Kibana 7.16.2"
[INFO]: Created tag: v4.5.0-7.16.2-test4
[INFO]: Run command: git push origin v4.5.0-7.16.2-test4
To https:/Tostti/wazuh-kibana-app.git
 * [new tag]             v4.5.0-7.16.2-test4 -> v4.5.0-7.16.2-test4
[INFO]: Pushed tag v4.5.0-7.16.2-test4 to remote
[INFO]: Run command: git reset --hard origin/4.5.0-7.16
[INFO]: Undone changes
[INFO]: Run command: git checkout 4.5.0-7.16
Already on '4.5.0-7.16'
[INFO]: Switched to branch: 4.5.0-7.16
[INFO]: Run command: git fetch --prune --prune-tags
[INFO]: Pruned local branches and tags
[INFO]: Generating tag: v4.5.0-7.16.3-test4...
[INFO]: Calling to bump script
[INFO]: Version: 4.5.0
[INFO]: Revision: 02
[INFO]: Platform version: 7.16.3
[INFO]: Package manifest: package.json
[INFO]: Plugin manifest: kibana.json
[INFO]: This will update the manifest files: package and platform plugin.
[INFO]: Updated package.json
[INFO]: Updated kibana.json
[WARN]: Some files could require to do changes manually. See RELEASING.md.
[INFO]: Run command: git diff --exit-code --no-patch;echo -n $?
[INFO]: There are changes to commit.
[INFO]: Run command: git commit -am "Bump v4.5.0-7.16.3-test4"
[INFO]: Commited
[INFO]: Run command: git tag -a v4.5.0-7.16.3-test4 -m "Wazuh 4.5.0 for Kibana 7.16.3"
[INFO]: Created tag: v4.5.0-7.16.3-test4
[INFO]: Run command: git push origin v4.5.0-7.16.3-test4
To https:/Tostti/wazuh-kibana-app.git
 * [new tag]             v4.5.0-7.16.3-test4 -> v4.5.0-7.16.3-test4
[INFO]: Pushed tag v4.5.0-7.16.3-test4 to remote
[INFO]: Run command: git reset --hard origin/4.5.0-7.16
[INFO]: Undone changes
[INFO]: Run command: git checkout 4.5.0-7.16
Already on '4.5.0-7.16'
[INFO]: Switched to branch: 4.5.0-7.16
[INFO]: Run command: git fetch --prune --prune-tags
[INFO]: Pruned local branches and tags
[INFO]: Generating tag: v4.5.0-7.17.0-test4...
[INFO]: Calling to bump script
[INFO]: Version: 4.5.0
[INFO]: Revision: 02
[INFO]: Platform version: 7.17.0
[INFO]: Package manifest: package.json
[INFO]: Plugin manifest: kibana.json
[INFO]: This will update the manifest files: package and platform plugin.
[INFO]: Updated package.json
[INFO]: Updated kibana.json
[WARN]: Some files could require to do changes manually. See RELEASING.md.
[INFO]: Run command: git diff --exit-code --no-patch;echo -n $?
[INFO]: There are changes to commit.
[INFO]: Run command: git commit -am "Bump v4.5.0-7.17.0-test4"
[INFO]: Commited
[INFO]: Run command: git tag -a v4.5.0-7.17.0-test4 -m "Wazuh 4.5.0 for Kibana 7.17.0"
[INFO]: Created tag: v4.5.0-7.17.0-test4
[INFO]: Run command: git push origin v4.5.0-7.17.0-test4
To https:/Tostti/wazuh-kibana-app.git
 * [new tag]             v4.5.0-7.17.0-test4 -> v4.5.0-7.17.0-test4
[INFO]: Pushed tag v4.5.0-7.17.0-test4 to remote
[INFO]: Run command: git reset --hard origin/4.5.0-7.16
[INFO]: Undone changes
[INFO]: Run command: git checkout 4.5.0-7.16
Already on '4.5.0-7.16'
[INFO]: Switched to branch: 4.5.0-7.16
[INFO]: Run command: git fetch --prune --prune-tags
[INFO]: Pruned local branches and tags
[INFO]: Generating tag: v4.5.0-7.17.1-test4...
[INFO]: Calling to bump script
[INFO]: Version: 4.5.0
[INFO]: Revision: 02
[INFO]: Platform version: 7.17.1
[INFO]: Package manifest: package.json
[INFO]: Plugin manifest: kibana.json
[INFO]: This will update the manifest files: package and platform plugin.
[INFO]: Updated package.json
[INFO]: Updated kibana.json
[WARN]: Some files could require to do changes manually. See RELEASING.md.
[INFO]: Run command: git diff --exit-code --no-patch;echo -n $?
[INFO]: There are changes to commit.
[INFO]: Run command: git commit -am "Bump v4.5.0-7.17.1-test4"
[INFO]: Commited
[INFO]: Run command: git tag -a v4.5.0-7.17.1-test4 -m "Wazuh 4.5.0 for Kibana 7.17.1"
[INFO]: Created tag: v4.5.0-7.17.1-test4
[INFO]: Run command: git push origin v4.5.0-7.17.1-test4
To https:/Tostti/wazuh-kibana-app.git
 * [new tag]             v4.5.0-7.17.1-test4 -> v4.5.0-7.17.1-test4
[INFO]: Pushed tag v4.5.0-7.17.1-test4 to remote
[INFO]: Run command: git reset --hard origin/4.5.0-7.16
[INFO]: Undone changes
[INFO]: Run command: git checkout 4.5.0-7.16
Already on '4.5.0-7.16'
[INFO]: Switched to branch: 4.5.0-7.16
[INFO]: Run command: git fetch --prune --prune-tags
[INFO]: Pruned local branches and tags
[INFO]: Generating tag: v4.5.0-7.17.2-test4...
[INFO]: Calling to bump script
[INFO]: Version: 4.5.0
[INFO]: Revision: 02
[INFO]: Platform version: 7.17.2
[INFO]: Package manifest: package.json
[INFO]: Plugin manifest: kibana.json
[INFO]: This will update the manifest files: package and platform plugin.
[INFO]: Updated package.json
[INFO]: Updated kibana.json
[WARN]: Some files could require to do changes manually. See RELEASING.md.
[INFO]: Run command: git diff --exit-code --no-patch;echo -n $?
[INFO]: There are changes to commit.
[INFO]: Run command: git commit -am "Bump v4.5.0-7.17.2-test4"
[INFO]: Commited
[INFO]: Run command: git tag -a v4.5.0-7.17.2-test4 -m "Wazuh 4.5.0 for Kibana 7.17.2"
[INFO]: Created tag: v4.5.0-7.17.2-test4
[INFO]: Run command: git push origin v4.5.0-7.17.2-test4
To https:/Tostti/wazuh-kibana-app.git
 * [new tag]             v4.5.0-7.17.2-test4 -> v4.5.0-7.17.2-test4
[INFO]: Pushed tag v4.5.0-7.17.2-test4 to remote
[INFO]: Run command: git reset --hard origin/4.5.0-7.16
[INFO]: Undone changes
[INFO]: Run command: git checkout 4.5.0-7.16
Already on '4.5.0-7.16'
[INFO]: Switched to branch: 4.5.0-7.16
[INFO]: Run command: git fetch --prune --prune-tags
[INFO]: Pruned local branches and tags
[INFO]: Generating tag: v4.5.0-7.17.3-test4...
[INFO]: Calling to bump script
[INFO]: Version: 4.5.0
[INFO]: Revision: 02
[INFO]: Platform version: 7.17.3
[INFO]: Package manifest: package.json
[INFO]: Plugin manifest: kibana.json
[INFO]: This will update the manifest files: package and platform plugin.
[INFO]: Updated package.json
[INFO]: Updated kibana.json
[WARN]: Some files could require to do changes manually. See RELEASING.md.
[INFO]: Run command: git diff --exit-code --no-patch;echo -n $?
[INFO]: There are changes to commit.
[INFO]: Run command: git commit -am "Bump v4.5.0-7.17.3-test4"
[INFO]: Commited
[INFO]: Run command: git tag -a v4.5.0-7.17.3-test4 -m "Wazuh 4.5.0 for Kibana 7.17.3"
[INFO]: Created tag: v4.5.0-7.17.3-test4
[INFO]: Run command: git push origin v4.5.0-7.17.3-test4
To https:/Tostti/wazuh-kibana-app.git
 * [new tag]             v4.5.0-7.17.3-test4 -> v4.5.0-7.17.3-test4
[INFO]: Pushed tag v4.5.0-7.17.3-test4 to remote
[INFO]: Run command: git reset --hard origin/4.5.0-7.16
[INFO]: Undone changes
[INFO]: Run command: git checkout 4.5.0-7.16
Already on '4.5.0-7.16'
[INFO]: Switched to branch: 4.5.0-7.16
[INFO]: Run command: git fetch --prune --prune-tags
[INFO]: Pruned local branches and tags
[INFO]: Generating tag: v4.5.0-7.17.4-test4...
[INFO]: Calling to bump script
[INFO]: Version: 4.5.0
[INFO]: Revision: 02
[INFO]: Platform version: 7.17.4
[INFO]: Package manifest: package.json
[INFO]: Plugin manifest: kibana.json
[INFO]: This will update the manifest files: package and platform plugin.
[INFO]: Updated package.json
[INFO]: Updated kibana.json
[WARN]: Some files could require to do changes manually. See RELEASING.md.
[INFO]: Run command: git diff --exit-code --no-patch;echo -n $?
[INFO]: There are changes to commit.
[INFO]: Run command: git commit -am "Bump v4.5.0-7.17.4-test4"
[INFO]: Commited
[INFO]: Run command: git tag -a v4.5.0-7.17.4-test4 -m "Wazuh 4.5.0 for Kibana 7.17.4"
[INFO]: Created tag: v4.5.0-7.17.4-test4
[INFO]: Run command: git push origin v4.5.0-7.17.4-test4
To https:/Tostti/wazuh-kibana-app.git
 * [new tag]             v4.5.0-7.17.4-test4 -> v4.5.0-7.17.4-test4
[INFO]: Pushed tag v4.5.0-7.17.4-test4 to remote
[INFO]: Run command: git reset --hard origin/4.5.0-7.16
[INFO]: Undone changes
[INFO]: Run command: git checkout 4.5.0-7.16
Already on '4.5.0-7.16'
[INFO]: Switched to branch: 4.5.0-7.16
[INFO]: Run command: git fetch --prune --prune-tags
[INFO]: Pruned local branches and tags
[INFO]: Generating tag: v4.5.0-7.17.5-test4...
[INFO]: Calling to bump script
[INFO]: Version: 4.5.0
[INFO]: Revision: 02
[INFO]: Platform version: 7.17.5
[INFO]: Package manifest: package.json
[INFO]: Plugin manifest: kibana.json
[INFO]: This will update the manifest files: package and platform plugin.
[INFO]: Updated package.json
[INFO]: Updated kibana.json
[WARN]: Some files could require to do changes manually. See RELEASING.md.
[INFO]: Run command: git diff --exit-code --no-patch;echo -n $?
[INFO]: There are changes to commit.
[INFO]: Run command: git commit -am "Bump v4.5.0-7.17.5-test4"
[INFO]: Commited
[INFO]: Run command: git tag -a v4.5.0-7.17.5-test4 -m "Wazuh 4.5.0 for Kibana 7.17.5"
[INFO]: Created tag: v4.5.0-7.17.5-test4
[INFO]: Run command: git push origin v4.5.0-7.17.5-test4
To https:/Tostti/wazuh-kibana-app.git
 * [new tag]             v4.5.0-7.17.5-test4 -> v4.5.0-7.17.5-test4
[INFO]: Pushed tag v4.5.0-7.17.5-test4 to remote
[INFO]: Run command: git reset --hard origin/4.5.0-7.16
[INFO]: Undone changes
[INFO]: Run command: git checkout 4.5.0-7.16
Already on '4.5.0-7.16'
[INFO]: Switched to branch: 4.5.0-7.16
[INFO]: Run command: git fetch --prune --prune-tags
[INFO]: Pruned local branches and tags
[INFO]: Generating tag: v4.5.0-7.17.6-test4...
[INFO]: Calling to bump script
[INFO]: Version: 4.5.0
[INFO]: Revision: 02
[INFO]: Platform version: 7.17.6
[INFO]: Package manifest: package.json
[INFO]: Plugin manifest: kibana.json
[INFO]: This will update the manifest files: package and platform plugin.
[INFO]: Updated package.json
[INFO]: Updated kibana.json
[WARN]: Some files could require to do changes manually. See RELEASING.md.
[INFO]: Run command: git diff --exit-code --no-patch;echo -n $?
[INFO]: There are changes to commit.
[INFO]: Run command: git commit -am "Bump v4.5.0-7.17.6-test4"
[INFO]: Commited
[INFO]: Run command: git tag -a v4.5.0-7.17.6-test4 -m "Wazuh 4.5.0 for Kibana 7.17.6"
[INFO]: Created tag: v4.5.0-7.17.6-test4
[INFO]: Run command: git push origin v4.5.0-7.17.6-test4
To https:/Tostti/wazuh-kibana-app.git
 * [new tag]             v4.5.0-7.17.6-test4 -> v4.5.0-7.17.6-test4
[INFO]: Pushed tag v4.5.0-7.17.6-test4 to remote
[INFO]: Run command: git reset --hard origin/4.5.0-7.16
[INFO]: Undone changes
[INFO]: Run command: git checkout 4.5.0-7.16
Already on '4.5.0-7.16'
[INFO]: Switched to branch: 4.5.0-7.16
[INFO]: Run command: git fetch --prune --prune-tags
[INFO]: Pruned local branches and tags
[INFO]: Generating tag: v4.5.0-7.17.7-test4...
[INFO]: Calling to bump script
[INFO]: Version: 4.5.0
[INFO]: Revision: 02
[INFO]: Platform version: 7.17.7
[INFO]: Package manifest: package.json
[INFO]: Plugin manifest: kibana.json
[INFO]: This will update the manifest files: package and platform plugin.
[INFO]: Updated package.json
[INFO]: Updated kibana.json
[WARN]: Some files could require to do changes manually. See RELEASING.md.
[INFO]: Run command: git diff --exit-code --no-patch;echo -n $?
[INFO]: There are changes to commit.
[INFO]: Run command: git commit -am "Bump v4.5.0-7.17.7-test4"
[INFO]: Commited
[INFO]: Run command: git tag -a v4.5.0-7.17.7-test4 -m "Wazuh 4.5.0 for Kibana 7.17.7"
[INFO]: Created tag: v4.5.0-7.17.7-test4
[INFO]: Run command: git push origin v4.5.0-7.17.7-test4
To https:/Tostti/wazuh-kibana-app.git
 * [new tag]             v4.5.0-7.17.7-test4 -> v4.5.0-7.17.7-test4
[INFO]: Pushed tag v4.5.0-7.17.7-test4 to remote
[INFO]: Run command: git reset --hard origin/4.5.0-7.16
[INFO]: Undone changes
[INFO]: Run command: git checkout 4.5.0-7.16
Already on '4.5.0-7.16'
[INFO]: Switched to branch: 4.5.0-7.16
[INFO]: Run command: git fetch --prune --prune-tags
[INFO]: Pruned local branches and tags
[INFO]: Generating tag: v4.5.0-7.17.8-test4...
[INFO]: Calling to bump script
[INFO]: Version: 4.5.0
[INFO]: Revision: 02
[INFO]: Platform version: 7.17.8
[INFO]: Package manifest: package.json
[INFO]: Plugin manifest: kibana.json
[INFO]: This will update the manifest files: package and platform plugin.
[INFO]: Updated package.json
[INFO]: Updated kibana.json
[WARN]: Some files could require to do changes manually. See RELEASING.md.
[INFO]: Run command: git diff --exit-code --no-patch;echo -n $?
[INFO]: There are changes to commit.
[INFO]: Run command: git commit -am "Bump v4.5.0-7.17.8-test4"
[INFO]: Commited
[INFO]: Run command: git tag -a v4.5.0-7.17.8-test4 -m "Wazuh 4.5.0 for Kibana 7.17.8"
[INFO]: Created tag: v4.5.0-7.17.8-test4
[INFO]: Run command: git push origin v4.5.0-7.17.8-test4
To https:/Tostti/wazuh-kibana-app.git
 * [new tag]             v4.5.0-7.17.8-test4 -> v4.5.0-7.17.8-test4
[INFO]: Pushed tag v4.5.0-7.17.8-test4 to remote
[INFO]: Run command: git reset --hard origin/4.5.0-7.16
[INFO]: Undone changes
[INFO]: Run command: git checkout 4.5.0-7.16
Already on '4.5.0-7.16'
[INFO]: Switched to branch: 4.5.0-7.16
[INFO]: Run command: git fetch --prune --prune-tags
[INFO]: Pruned local branches and tags
[INFO]: Generating tag: v4.5.0-7.17.9-test4...
[INFO]: Calling to bump script
[INFO]: Version: 4.5.0
[INFO]: Revision: 02
[INFO]: Platform version: 7.17.9
[INFO]: Package manifest: package.json
[INFO]: Plugin manifest: kibana.json
[INFO]: This will update the manifest files: package and platform plugin.
[INFO]: Updated package.json
[INFO]: Updated kibana.json
[WARN]: Some files could require to do changes manually. See RELEASING.md.
[INFO]: Run command: git diff --exit-code --no-patch;echo -n $?
[INFO]: There are changes to commit.
[INFO]: Run command: git commit -am "Bump v4.5.0-7.17.9-test4"
[INFO]: Commited
[INFO]: Run command: git tag -a v4.5.0-7.17.9-test4 -m "Wazuh 4.5.0 for Kibana 7.17.9"
[INFO]: Created tag: v4.5.0-7.17.9-test4
[INFO]: Run command: git push origin v4.5.0-7.17.9-test4
To https:/Tostti/wazuh-kibana-app.git
 * [new tag]             v4.5.0-7.17.9-test4 -> v4.5.0-7.17.9-test4
[INFO]: Pushed tag v4.5.0-7.17.9-test4 to remote
[INFO]: Run command: git reset --hard origin/4.5.0-7.16
[INFO]: Undone changes
[INFO]: Run command: git checkout 4.5.0-7.16
Already on '4.5.0-7.16'
[INFO]: Switched to branch: 4.5.0-7.16
[INFO]: Run command: git fetch --prune --prune-tags
[INFO]: Pruned local branches and tags
[INFO]: Generating tag: v4.5.0-7.17.10-test4...
[INFO]: Calling to bump script
[INFO]: Version: 4.5.0
[INFO]: Revision: 02
[INFO]: Platform version: 7.17.10
[INFO]: Package manifest: package.json
[INFO]: Plugin manifest: kibana.json
[INFO]: This will update the manifest files: package and platform plugin.
[INFO]: Updated package.json
[INFO]: Updated kibana.json
[WARN]: Some files could require to do changes manually. See RELEASING.md.
[INFO]: Run command: git diff --exit-code --no-patch;echo -n $?
[INFO]: There are changes to commit.
[INFO]: Run command: git commit -am "Bump v4.5.0-7.17.10-test4"
[INFO]: Commited
[INFO]: Run command: git tag -a v4.5.0-7.17.10-test4 -m "Wazuh 4.5.0 for Kibana 7.17.10"
[INFO]: Created tag: v4.5.0-7.17.10-test4
[INFO]: Run command: git push origin v4.5.0-7.17.10-test4
To https:/Tostti/wazuh-kibana-app.git
 * [new tag]             v4.5.0-7.17.10-test4 -> v4.5.0-7.17.10-test4
[INFO]: Pushed tag v4.5.0-7.17.10-test4 to remote
[INFO]: Run command: git reset --hard origin/4.5.0-7.16
[INFO]: Undone changes
[INFO]: Run command: git checkout 4.5.0-7.10
Switched to branch '4.5.0-7.10'
[INFO]: Switched to branch: 4.5.0-7.10
[INFO]: Run command: git fetch --prune --prune-tags
[INFO]: Pruned local branches and tags
[INFO]: Generating tag: v4.5.0-7.10.2-test4...
[INFO]: Calling to bump script
[INFO]: Version: 4.5.0
[INFO]: Revision: 02
[INFO]: Platform version: 7.10.2
[INFO]: Package manifest: package.json
[INFO]: Plugin manifest: kibana.json
[INFO]: This will update the manifest files: package and platform plugin.
[INFO]: Updated package.json
[INFO]: Updated kibana.json
[WARN]: Some files could require to do changes manually. See RELEASING.md.
[INFO]: Run command: git diff --exit-code --no-patch;echo -n $?
[INFO]: There are changes to commit.
[INFO]: Run command: git commit -am "Bump v4.5.0-7.10.2-test4"
[INFO]: Commited
[INFO]: Run command: git tag -a v4.5.0-7.10.2-test4 -m "Wazuh 4.5.0 for OpenDistro 7.10.2"
[INFO]: Created tag: v4.5.0-7.10.2-test4
[INFO]: Run command: git push origin v4.5.0-7.10.2-test4
To https:/Tostti/wazuh-kibana-app.git
 * [new tag]             v4.5.0-7.10.2-test4 -> v4.5.0-7.10.2-test4
[INFO]: Pushed tag v4.5.0-7.10.2-test4 to remote
[INFO]: Run command: git reset --hard origin/4.5.0-7.10
[INFO]: Undone changes
[INFO]: Run command: git checkout 4.5.0
Switched to branch '4.5.0'
[INFO]: Switched to branch: 4.5.0
[INFO]: Run command: git fetch --prune --prune-tags
[INFO]: Pruned local branches and tags
[INFO]: Generating tag: v4.5.0-2.6.0-test4...
[INFO]: Calling to bump script
[INFO]: Version: 4.5.0
[INFO]: Revision: 02
[INFO]: Platform version: 2.6.0
[INFO]: Package manifest: package.json
[INFO]: Plugin manifest: opensearch_dashboards.json
[INFO]: This will update the manifest files: package and platform plugin.
[INFO]: Updated package.json
[INFO]: Updated opensearch_dashboards.json
[WARN]: Some files could require to do changes manually. See RELEASING.md.
[INFO]: Run command: git diff --exit-code --no-patch;echo -n $?
[INFO]: There are changes to commit.
[INFO]: Run command: git commit -am "Bump v4.5.0-2.6.0-test4"
[INFO]: Commited
[INFO]: Run command: git tag -a v4.5.0-2.6.0-test4 -m "Wazuh 4.5.0 for OpenSearch 2.6.0"
[INFO]: Created tag: v4.5.0-2.6.0-test4
[INFO]: Run command: git push origin v4.5.0-2.6.0-test4
To https:/Tostti/wazuh-kibana-app.git
 * [new tag]             v4.5.0-2.6.0-test4 -> v4.5.0-2.6.0-test4
[INFO]: Pushed tag v4.5.0-2.6.0-test4 to remote
[INFO]: Run command: git reset --hard origin/4.5.0
[INFO]: Undone changes
[INFO]: Run command: git tag | grep -P -i "^v4.5.0-.*-test4" > /home/tostti/src/localrepos/tags/tags
[INFO]: Exported tags to file /home/tostti/src/localrepos/tags/tags
Done in 47.59s.
tostti@Tostti-PC:~/src/localrepos/wazuh-kibana-app$ git tag -l | grep test4
v4.5.0-2.6.0-test4
v4.5.0-7.10.2-test4
v4.5.0-7.16.0-test4
v4.5.0-7.16.1-test4
v4.5.0-7.16.2-test4
v4.5.0-7.16.3-test4
v4.5.0-7.17.0-test4
v4.5.0-7.17.1-test4
v4.5.0-7.17.10-test4
v4.5.0-7.17.2-test4
v4.5.0-7.17.3-test4
v4.5.0-7.17.4-test4
v4.5.0-7.17.5-test4
v4.5.0-7.17.6-test4
v4.5.0-7.17.7-test4
v4.5.0-7.17.8-test4
v4.5.0-7.17.9-test4
tostti@Tostti-PC:~/src/localrepos/wazuh-kibana-app$ cat /home/tostti/src/localrepos/tags/tags
v4.5.0-2.6.0-test4
v4.5.0-7.10.2-test4
v4.5.0-7.16.0-test4
v4.5.0-7.16.1-test4
v4.5.0-7.16.2-test4
v4.5.0-7.16.3-test4
v4.5.0-7.17.0-test4
v4.5.0-7.17.1-test4
v4.5.0-7.17.10-test4
v4.5.0-7.17.2-test4
v4.5.0-7.17.3-test4
v4.5.0-7.17.4-test4
v4.5.0-7.17.5-test4
v4.5.0-7.17.6-test4
v4.5.0-7.17.7-test4
v4.5.0-7.17.8-test4
v4.5.0-7.17.9-test4

image

image

image

TEST:✔️
CR:✔️

LGTM

@Desvelao Desvelao changed the base branch from 4.5.0 to 4.5.1 July 20, 2023 14:29
@Desvelao Desvelao dismissed Tostti’s stale review July 20, 2023 14:29

The base branch was changed.

@Desvelao Desvelao force-pushed the feat/5643-update-release-utilities branch from 06240fc to a532593 Compare July 20, 2023 14:38
@Desvelao Desvelao changed the base branch from 4.5.1 to 4.5.0 July 20, 2023 14:40
@Desvelao Desvelao requested a review from Tostti July 20, 2023 14:41
@Desvelao Desvelao merged commit e6caddc into 4.5.0 Jul 20, 2023
2 checks passed
@Desvelao Desvelao deleted the feat/5643-update-release-utilities branch July 20, 2023 14:48
@github-actions
Copy link
Contributor

The backport to 4.5.0-7.10 failed:

The process '/usr/bin/git' failed with exit code 1

To backport manually, run these commands in your terminal:

# Fetch latest updates from GitHub
git fetch
# Create a new working tree
git worktree add .worktrees/backport-4.5.0-7.10 4.5.0-7.10
# Navigate to the new working tree
cd .worktrees/backport-4.5.0-7.10
# Create a new branch
git switch --create backport-5677-to-4.5.0-7.10
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick -x --mainline 1 e6caddc1989bd5433d901c0f0b3bf5629ba316ff
# Push it to GitHub
git push --set-upstream origin backport-5677-to-4.5.0-7.10
# Go back to the original working tree
cd ../..
# Delete the working tree
git worktree remove .worktrees/backport-4.5.0-7.10

Then, create a pull request where the base branch is 4.5.0-7.10 and the compare/head branch is backport-5677-to-4.5.0-7.10.

@github-actions
Copy link
Contributor

The backport to 4.5.0-7.16 failed:

The process '/usr/bin/git' failed with exit code 1

To backport manually, run these commands in your terminal:

# Fetch latest updates from GitHub
git fetch
# Create a new working tree
git worktree add .worktrees/backport-4.5.0-7.16 4.5.0-7.16
# Navigate to the new working tree
cd .worktrees/backport-4.5.0-7.16
# Create a new branch
git switch --create backport-5677-to-4.5.0-7.16
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick -x --mainline 1 e6caddc1989bd5433d901c0f0b3bf5629ba316ff
# Push it to GitHub
git push --set-upstream origin backport-5677-to-4.5.0-7.16
# Go back to the original working tree
cd ../..
# Delete the working tree
git worktree remove .worktrees/backport-4.5.0-7.16

Then, create a pull request where the base branch is 4.5.0-7.16 and the compare/head branch is backport-5677-to-4.5.0-7.16.

Desvelao added a commit that referenced this pull request Jul 21, 2023
* feat: update release utilities to current process

- Add new bump script
- Port tag.py to NodeJS and allow receive parameters from stdin
- Add RELEASING.md file with information about the release process
  related to the usage of the included scripts
- Add release:bump and release:tag package scripts to run these process

* remove: remove scripts/tag.py and reference in the Makefile

* fix: fix help text in bump and tag scripts

* remove: remove stage and commit properties from the package.json

* remove: test related to stage property in the package.json

* fix: check if there are changes to commit in the tag script

- Code formatting
- Fix variable name

(cherry picked from commit e6caddc)
Desvelao added a commit that referenced this pull request Jul 21, 2023
* feat: update release utilities to current process

- Add new bump script
- Port tag.py to NodeJS and allow receive parameters from stdin
- Add RELEASING.md file with information about the release process
  related to the usage of the included scripts
- Add release:bump and release:tag package scripts to run these process

* remove: remove scripts/tag.py and reference in the Makefile

* fix: fix help text in bump and tag scripts

* remove: remove stage and commit properties from the package.json

* remove: test related to stage property in the package.json

* fix: check if there are changes to commit in the tag script

- Code formatting
- Fix variable name

(cherry picked from commit e6caddc)
Desvelao added a commit that referenced this pull request Jul 21, 2023
Update release utilities (#5677)

* feat: update release utilities to current process

- Add new bump script
- Port tag.py to NodeJS and allow receive parameters from stdin
- Add RELEASING.md file with information about the release process
  related to the usage of the included scripts
- Add release:bump and release:tag package scripts to run these process

* remove: remove scripts/tag.py and reference in the Makefile

* fix: fix help text in bump and tag scripts

* remove: remove stage and commit properties from the package.json

* remove: test related to stage property in the package.json

* fix: check if there are changes to commit in the tag script

- Code formatting
- Fix variable name

(cherry picked from commit e6caddc)
Desvelao added a commit that referenced this pull request Jul 21, 2023
Update release utilities (#5677)

* feat: update release utilities to current process

- Add new bump script
- Port tag.py to NodeJS and allow receive parameters from stdin
- Add RELEASING.md file with information about the release process
  related to the usage of the included scripts
- Add release:bump and release:tag package scripts to run these process

* remove: remove scripts/tag.py and reference in the Makefile

* fix: fix help text in bump and tag scripts

* remove: remove stage and commit properties from the package.json

* remove: test related to stage property in the package.json

* fix: check if there are changes to commit in the tag script

- Code formatting
- Fix variable name

(cherry picked from commit e6caddc)
Desvelao added a commit that referenced this pull request Jul 21, 2023
* Update test snapshots for 4.5 (#5601)

* Add missing supported versions to the Docker environments (#5584)

feat(environments): add latest versions to Docker environments

- Add Kibana versions: 7.17.7, 7.17.8, 7.17.9 and 7.17.10
- Add OpenSearch: 2.6.0
- Add OpenSearch Dashboards: 2.6.0
- Add Wazuh 4.4.1, 4.4.2, 4.4.3 and 4.4.4

* Update test snapshost

* Update API data to 4.5

* Update branch patterns for GH Actions

---------

Co-authored-by: Antonio <[email protected]>

* Fix API reference links in endpoints.json

* Merge 4.4 into 4.5.0 (#5669)

Merge v4.4.5-2.6.0 into 4.4 (#5665)

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

* Update changelog

* Update opensearch_dashboards.json

* Update package.json

* Update readme

* Update tag script

* Change tag.py version value

* Empty tag suffix

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

Add -rc1 tag suffix

* Fix incompatible version of triple-beam subdependency (#5652)

fix: add yarn.lock file and set version of triple-beam in yarn.lock

* Update unit-test.yml (#5655)

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

* Update revision of v4.4.5 in the Changelog

* Bump v4.4.5-2.6.0-rc2

---------

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

* Update release utilities (#5677)

* feat: update release utilities to current process

- Add new bump script
- Port tag.py to NodeJS and allow receive parameters from stdin
- Add RELEASING.md file with information about the release process
  related to the usage of the included scripts
- Add release:bump and release:tag package scripts to run these process

* remove: remove scripts/tag.py and reference in the Makefile

* fix: fix help text in bump and tag scripts

* remove: remove stage and commit properties from the package.json

* remove: test related to stage property in the package.json

* fix: check if there are changes to commit in the tag script

- Code formatting
- Fix variable name

---------

Co-authored-by: Álex Ruiz <[email protected]>
Co-authored-by: Ian Yenien Serrano <[email protected]>
Co-authored-by: Nicolas Agustin Guevara Pihen <[email protected]>
Co-authored-by: Federico Rodriguez <[email protected]>
Desvelao added a commit that referenced this pull request Jul 21, 2023
Merge 4.5.0 into 4.5.1 (#5719)

* Update test snapshots for 4.5 (#5601)

* Add missing supported versions to the Docker environments (#5584)

feat(environments): add latest versions to Docker environments

- Add Kibana versions: 7.17.7, 7.17.8, 7.17.9 and 7.17.10
- Add OpenSearch: 2.6.0
- Add OpenSearch Dashboards: 2.6.0
- Add Wazuh 4.4.1, 4.4.2, 4.4.3 and 4.4.4

* Update test snapshost

* Update API data to 4.5

* Update branch patterns for GH Actions

---------



* Fix API reference links in endpoints.json

* Merge 4.4 into 4.5.0 (#5669)

Merge v4.4.5-2.6.0 into 4.4 (#5665)

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

* Update changelog

* Update opensearch_dashboards.json

* Update package.json

* Update readme

* Update tag script

* Change tag.py version value

* Empty tag suffix

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

Add -rc1 tag suffix

* Fix incompatible version of triple-beam subdependency (#5652)

fix: add yarn.lock file and set version of triple-beam in yarn.lock

* Update unit-test.yml (#5655)

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

* Update revision of v4.4.5 in the Changelog

* Bump v4.4.5-2.6.0-rc2

---------






* Update release utilities (#5677)

* feat: update release utilities to current process

- Add new bump script
- Port tag.py to NodeJS and allow receive parameters from stdin
- Add RELEASING.md file with information about the release process
  related to the usage of the included scripts
- Add release:bump and release:tag package scripts to run these process

* remove: remove scripts/tag.py and reference in the Makefile

* fix: fix help text in bump and tag scripts

* remove: remove stage and commit properties from the package.json

* remove: test related to stage property in the package.json

* fix: check if there are changes to commit in the tag script

- Code formatting
- Fix variable name

---------

Co-authored-by: Álex Ruiz <[email protected]>
Co-authored-by: Ian Yenien Serrano <[email protected]>
Co-authored-by: Nicolas Agustin Guevara Pihen <[email protected]>
Co-authored-by: Federico Rodriguez <[email protected]>
Desvelao added a commit that referenced this pull request Jul 21, 2023
* [Backport 4.5.0-7.10] Update test snapshots for 4.5 (#5603)

Update test snapshots for 4.5 (#5601)

* Add missing supported versions to the Docker environments (#5584)

feat(environments): add latest versions to Docker environments

- Add Kibana versions: 7.17.7, 7.17.8, 7.17.9 and 7.17.10
- Add OpenSearch: 2.6.0
- Add OpenSearch Dashboards: 2.6.0
- Add Wazuh 4.4.1, 4.4.2, 4.4.3 and 4.4.4

* Update test snapshost

* Update API data to 4.5

* Update branch patterns for GH Actions

---------

Co-authored-by: Antonio <[email protected]>
(cherry picked from commit 1ae5f19)

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

* Fix API reference links in endpoints.json

* Merge 4.4 7.10 into 4.5.0 7.10 (#5693)

Merge v4.4.5-7.10.2 into 4.4-7.10 (#5667)

* [Backport 4.4.5-7.10] Bump Wazuh and platform versions for v4.4.5 (#5639) (#5642)

* 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)

* 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)

---------



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

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

Add -rc1 tag suffix

(cherry picked from commit c10eb4e)

* Fix incompatible version of triple-beam subdependency (#5651)

fix: add yarn.lock file and set version of triple-beam in yarn.lock

* [Backport 4.4.5-7.10] Update unit-test.yml (#5656)

Update unit-test.yml (#5655)

(cherry picked from commit 29ec6f9)



* [Backport 4.4.5-7.10] Add support for Wazuh 4.4.5-rc2 (#5660)

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

(cherry picked from commit 1103a0c)

* Update revision of v4.4.5 in the Changelog

---------



* Bump v4.4.5-7.10.2-rc2

---------

Co-authored-by: Ian Yenien Serrano <[email protected]>
Co-authored-by: Nicolas Agustin Guevara Pihen <[email protected]>
Co-authored-by: Álex Ruiz <[email protected]>
Co-authored-by: Antonio <[email protected]>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>

* [Backport 4.5.0-7.10] Update release utilities (#5715)

Update release utilities (#5677)

* feat: update release utilities to current process

- Add new bump script
- Port tag.py to NodeJS and allow receive parameters from stdin
- Add RELEASING.md file with information about the release process
  related to the usage of the included scripts
- Add release:bump and release:tag package scripts to run these process

* remove: remove scripts/tag.py and reference in the Makefile

* fix: fix help text in bump and tag scripts

* remove: remove stage and commit properties from the package.json

* remove: test related to stage property in the package.json

* fix: check if there are changes to commit in the tag script

- Code formatting
- Fix variable name

(cherry picked from commit e6caddc)

---------

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Álex Ruiz <[email protected]>
Co-authored-by: Maximiliano Ibarra <[email protected]>
Co-authored-by: Ian Yenien Serrano <[email protected]>
Co-authored-by: Nicolas Agustin Guevara Pihen <[email protected]>
Desvelao added a commit that referenced this pull request Jul 21, 2023
* [Backport 4.5.0-7.16] Update test snapshots for 4.5 (#5604)

Update test snapshots for 4.5 (#5601)

* Add missing supported versions to the Docker environments (#5584)

feat(environments): add latest versions to Docker environments

- Add Kibana versions: 7.17.7, 7.17.8, 7.17.9 and 7.17.10
- Add OpenSearch: 2.6.0
- Add OpenSearch Dashboards: 2.6.0
- Add Wazuh 4.4.1, 4.4.2, 4.4.3 and 4.4.4

* Update test snapshost

* Update API data to 4.5

* Update branch patterns for GH Actions

---------

Co-authored-by: Antonio <[email protected]>
(cherry picked from commit 1ae5f19)

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

* Fix API reference links in endpoints.json

* Merge 4.4-7.16 into 4.5.0-7.16 (#5695)

Merge v4.4.5-7.16.0 into 4.4-7.16 (#5668)

* [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

---------




* [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)



* 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)



* [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

---------



* Bump v4.4.5-7.16.0-rc2

---------

Co-authored-by: Ian Yenien Serrano <[email protected]>
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]>

* [Backport 4.5.0-7.16] Update release utilities (#5716)

Update release utilities (#5677)

* feat: update release utilities to current process

- Add new bump script
- Port tag.py to NodeJS and allow receive parameters from stdin
- Add RELEASING.md file with information about the release process
  related to the usage of the included scripts
- Add release:bump and release:tag package scripts to run these process

* remove: remove scripts/tag.py and reference in the Makefile

* fix: fix help text in bump and tag scripts

* remove: remove stage and commit properties from the package.json

* remove: test related to stage property in the package.json

* fix: check if there are changes to commit in the tag script

- Code formatting
- Fix variable name

(cherry picked from commit e6caddc)

---------

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Álex Ruiz <[email protected]>
Co-authored-by: Ian Yenien Serrano <[email protected]>
Co-authored-by: Nicolas Agustin Guevara Pihen <[email protected]>
Co-authored-by: Federico Rodriguez <[email protected]>
Desvelao added a commit that referenced this pull request Jul 21, 2023
Merge 4.5.0-7.10 into 4.5.1-7.10 (#5724)

* [Backport 4.5.0-7.10] Update test snapshots for 4.5 (#5603)

Update test snapshots for 4.5 (#5601)

* Add missing supported versions to the Docker environments (#5584)

feat(environments): add latest versions to Docker environments

- Add Kibana versions: 7.17.7, 7.17.8, 7.17.9 and 7.17.10
- Add OpenSearch: 2.6.0
- Add OpenSearch Dashboards: 2.6.0
- Add Wazuh 4.4.1, 4.4.2, 4.4.3 and 4.4.4

* Update test snapshost

* Update API data to 4.5

* Update branch patterns for GH Actions

---------


(cherry picked from commit 1ae5f19)



* Fix API reference links in endpoints.json

* Merge 4.4 7.10 into 4.5.0 7.10 (#5693)

Merge v4.4.5-7.10.2 into 4.4-7.10 (#5667)

* [Backport 4.4.5-7.10] Bump Wazuh and platform versions for v4.4.5 (#5639) (#5642)

* 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)

* 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)

---------



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

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

Add -rc1 tag suffix

(cherry picked from commit c10eb4e)

* Fix incompatible version of triple-beam subdependency (#5651)

fix: add yarn.lock file and set version of triple-beam in yarn.lock

* [Backport 4.4.5-7.10] Update unit-test.yml (#5656)

Update unit-test.yml (#5655)

(cherry picked from commit 29ec6f9)



* [Backport 4.4.5-7.10] Add support for Wazuh 4.4.5-rc2 (#5660)

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

(cherry picked from commit 1103a0c)

* Update revision of v4.4.5 in the Changelog

---------



* Bump v4.4.5-7.10.2-rc2

---------







* [Backport 4.5.0-7.10] Update release utilities (#5715)

Update release utilities (#5677)

* feat: update release utilities to current process

- Add new bump script
- Port tag.py to NodeJS and allow receive parameters from stdin
- Add RELEASING.md file with information about the release process
  related to the usage of the included scripts
- Add release:bump and release:tag package scripts to run these process

* remove: remove scripts/tag.py and reference in the Makefile

* fix: fix help text in bump and tag scripts

* remove: remove stage and commit properties from the package.json

* remove: test related to stage property in the package.json

* fix: check if there are changes to commit in the tag script

- Code formatting
- Fix variable name

(cherry picked from commit e6caddc)

---------

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Álex Ruiz <[email protected]>
Co-authored-by: Maximiliano Ibarra <[email protected]>
Co-authored-by: Ian Yenien Serrano <[email protected]>
Co-authored-by: Nicolas Agustin Guevara Pihen <[email protected]>
Desvelao added a commit that referenced this pull request Jul 21, 2023
Merge 4.5.0-7.16 into 4.5.1-7.16 (#5725)

* [Backport 4.5.0-7.16] Update test snapshots for 4.5 (#5604)

Update test snapshots for 4.5 (#5601)

* Add missing supported versions to the Docker environments (#5584)

feat(environments): add latest versions to Docker environments

- Add Kibana versions: 7.17.7, 7.17.8, 7.17.9 and 7.17.10
- Add OpenSearch: 2.6.0
- Add OpenSearch Dashboards: 2.6.0
- Add Wazuh 4.4.1, 4.4.2, 4.4.3 and 4.4.4

* Update test snapshost

* Update API data to 4.5

* Update branch patterns for GH Actions

---------


(cherry picked from commit 1ae5f19)



* Fix API reference links in endpoints.json

* Merge 4.4-7.16 into 4.5.0-7.16 (#5695)

Merge v4.4.5-7.16.0 into 4.4-7.16 (#5668)

* [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

---------




* [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)



* 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)



* [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

---------



* Bump v4.4.5-7.16.0-rc2

---------







* [Backport 4.5.0-7.16] Update release utilities (#5716)

Update release utilities (#5677)

* feat: update release utilities to current process

- Add new bump script
- Port tag.py to NodeJS and allow receive parameters from stdin
- Add RELEASING.md file with information about the release process
  related to the usage of the included scripts
- Add release:bump and release:tag package scripts to run these process

* remove: remove scripts/tag.py and reference in the Makefile

* fix: fix help text in bump and tag scripts

* remove: remove stage and commit properties from the package.json

* remove: test related to stage property in the package.json

* fix: check if there are changes to commit in the tag script

- Code formatting
- Fix variable name

(cherry picked from commit e6caddc)

---------

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Álex Ruiz <[email protected]>
Co-authored-by: Ian Yenien Serrano <[email protected]>
Co-authored-by: Nicolas Agustin Guevara Pihen <[email protected]>
Co-authored-by: Federico Rodriguez <[email protected]>
asteriscos added a commit that referenced this pull request Aug 11, 2023
* Update test snapshots for 4.5 (#5601)

* Add missing supported versions to the Docker environments (#5584)

feat(environments): add latest versions to Docker environments

- Add Kibana versions: 7.17.7, 7.17.8, 7.17.9 and 7.17.10
- Add OpenSearch: 2.6.0
- Add OpenSearch Dashboards: 2.6.0
- Add Wazuh 4.4.1, 4.4.2, 4.4.3 and 4.4.4

* Update test snapshost

* Update API data to 4.5

* Update branch patterns for GH Actions

---------

Co-authored-by: Antonio <[email protected]>

* Fix API reference links in endpoints.json

* Merge 4.4 into 4.5.0 (#5669)

Merge v4.4.5-2.6.0 into 4.4 (#5665)

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

* Update changelog

* Update opensearch_dashboards.json

* Update package.json

* Update readme

* Update tag script

* Change tag.py version value

* Empty tag suffix

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

Add -rc1 tag suffix

* Fix incompatible version of triple-beam subdependency (#5652)

fix: add yarn.lock file and set version of triple-beam in yarn.lock

* Update unit-test.yml (#5655)

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

* Update revision of v4.4.5 in the Changelog

* Bump v4.4.5-2.6.0-rc2

---------

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

* Update release utilities (#5677)

* feat: update release utilities to current process

- Add new bump script
- Port tag.py to NodeJS and allow receive parameters from stdin
- Add RELEASING.md file with information about the release process
  related to the usage of the included scripts
- Add release:bump and release:tag package scripts to run these process

* remove: remove scripts/tag.py and reference in the Makefile

* fix: fix help text in bump and tag scripts

* remove: remove stage and commit properties from the package.json

* remove: test related to stage property in the package.json

* fix: check if there are changes to commit in the tag script

- Code formatting
- Fix variable name

* Bump v4.5.0-2.6.0-alpha1

* Update README.md

---------

Co-authored-by: Álex Ruiz <[email protected]>
Co-authored-by: Antonio <[email protected]>
Co-authored-by: Nicolas Agustin Guevara Pihen <[email protected]>
Co-authored-by: Federico Rodriguez <[email protected]>
asteriscos added a commit that referenced this pull request Aug 11, 2023
* Merge 4.5.0 into 4.5.1 (#5719)

* Update test snapshots for 4.5 (#5601)

* Add missing supported versions to the Docker environments (#5584)

feat(environments): add latest versions to Docker environments

- Add Kibana versions: 7.17.7, 7.17.8, 7.17.9 and 7.17.10
- Add OpenSearch: 2.6.0
- Add OpenSearch Dashboards: 2.6.0
- Add Wazuh 4.4.1, 4.4.2, 4.4.3 and 4.4.4

* Update test snapshost

* Update API data to 4.5

* Update branch patterns for GH Actions

---------

Co-authored-by: Antonio <[email protected]>

* Fix API reference links in endpoints.json

* Merge 4.4 into 4.5.0 (#5669)

Merge v4.4.5-2.6.0 into 4.4 (#5665)

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

* Update changelog

* Update opensearch_dashboards.json

* Update package.json

* Update readme

* Update tag script

* Change tag.py version value

* Empty tag suffix

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

Add -rc1 tag suffix

* Fix incompatible version of triple-beam subdependency (#5652)

fix: add yarn.lock file and set version of triple-beam in yarn.lock

* Update unit-test.yml (#5655)

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

* Update revision of v4.4.5 in the Changelog

* Bump v4.4.5-2.6.0-rc2

---------

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

* Update release utilities (#5677)

* feat: update release utilities to current process

- Add new bump script
- Port tag.py to NodeJS and allow receive parameters from stdin
- Add RELEASING.md file with information about the release process
  related to the usage of the included scripts
- Add release:bump and release:tag package scripts to run these process

* remove: remove scripts/tag.py and reference in the Makefile

* fix: fix help text in bump and tag scripts

* remove: remove stage and commit properties from the package.json

* remove: test related to stage property in the package.json

* fix: check if there are changes to commit in the tag script

- Code formatting
- Fix variable name

---------

Co-authored-by: Álex Ruiz <[email protected]>
Co-authored-by: Ian Yenien Serrano <[email protected]>
Co-authored-by: Nicolas Agustin Guevara Pihen <[email protected]>
Co-authored-by: Federico Rodriguez <[email protected]>

* Fix API request to get the manager labels and broken documentation link (#5687)

* fix: broken documentation link

* changelog: add pull request entry

* fix: changed API endpoint to get the manager labels and managing the data to render

* changelog: add pull request entry

* changelog: fix entry

* changelog: fix entry

* Add response to imposter

---------

Co-authored-by: yenienserrano <[email protected]>

* Fix server side query in pdf report filter (#5714)

* Add server side query

* Fix reporting unit test

* Remove duplicated allowed agents filter and gdpr-pci-tsc filters

* Code cleaning

* Added Changelog

* Fix deep clone filters

* Fix server side requirement query

* Fix rootkit filter

* Update API data for 4.5.1 (#5758)

update: API data

* Fix outdated year in PDF report footer (#5766)

* Fix year in PDF footer

* Modify changelog

* Change tests to match the new value

* Change md5 in reporting test

* Change md5 in reporting test

* Revert accidental change

* Revert accidental change

* Fix md5 in test

* Change md5 in test

* Change md5 in test

* Merge 4.5 into 4.5.1 (#5773)

* Update test snapshots for 4.5 (#5601)

* Add missing supported versions to the Docker environments (#5584)

feat(environments): add latest versions to Docker environments

- Add Kibana versions: 7.17.7, 7.17.8, 7.17.9 and 7.17.10
- Add OpenSearch: 2.6.0
- Add OpenSearch Dashboards: 2.6.0
- Add Wazuh 4.4.1, 4.4.2, 4.4.3 and 4.4.4

* Update test snapshost

* Update API data to 4.5

* Update branch patterns for GH Actions

---------

Co-authored-by: Antonio <[email protected]>

* Fix API reference links in endpoints.json

* Merge 4.4 into 4.5.0 (#5669)

Merge v4.4.5-2.6.0 into 4.4 (#5665)

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

* Update changelog

* Update opensearch_dashboards.json

* Update package.json

* Update readme

* Update tag script

* Change tag.py version value

* Empty tag suffix

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

Add -rc1 tag suffix

* Fix incompatible version of triple-beam subdependency (#5652)

fix: add yarn.lock file and set version of triple-beam in yarn.lock

* Update unit-test.yml (#5655)

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

* Update revision of v4.4.5 in the Changelog

* Bump v4.4.5-2.6.0-rc2

---------

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

* Update release utilities (#5677)

* feat: update release utilities to current process

- Add new bump script
- Port tag.py to NodeJS and allow receive parameters from stdin
- Add RELEASING.md file with information about the release process
  related to the usage of the included scripts
- Add release:bump and release:tag package scripts to run these process

* remove: remove scripts/tag.py and reference in the Makefile

* fix: fix help text in bump and tag scripts

* remove: remove stage and commit properties from the package.json

* remove: test related to stage property in the package.json

* fix: check if there are changes to commit in the tag script

- Code formatting
- Fix variable name

* Bump v4.5.0-2.6.0-alpha1

* Update README.md

---------

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

---------

Co-authored-by: Antonio <[email protected]>
Co-authored-by: Álex Ruiz <[email protected]>
Co-authored-by: Nicolas Agustin Guevara Pihen <[email protected]>
Co-authored-by: Federico Rodriguez <[email protected]>
Desvelao added a commit that referenced this pull request Aug 11, 2023
* Change windows agent service name (#5538)

* Change windows agent service name to Wazuh

Change windows agent service name to Wazuh

* Add CHANGELOG

* Remove agent name in agent info ribbon (#5497)

* remove: agent name in agent info ribbon

* changelog: add pull request entry

---------

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

* Fix IPV6 visualizations (#5471)

* add ipv6 service

* add test for service

* Fix issue in agents-table

* fix issue in agents-info

* fix groups agents issue

* Fix width in groups agents

* use mapResponseItem

* Add copy button to groups

* Add copy button to info

* fix for node list

* Optimize code

* Fix styles

* Edit changelog

* Edit changelog

* Add imposter changes to test ipv6

* Replace onMouseDown with onClick

* Move copy buttons to the left

* fix: removed compressipv6 property of TableWzAPI

* feat: add tableLayout property to some tables and remove IPv6 address compression

add tableLayout=auto property to some tables:
- Agents/{agent_id}/Inventory data
- Management/Cluster/Nodes
- Agents
- Management/Configuration/Client
- Management/Global configuration/Remote
remove IPv6 address compression

* remove: remove unused service to IPv6 compression

* revert: revert changes in TableWzAPI component

* add: add mocked responses to some syscollector endpoints

* remove: unwanted table columns properties

* changelog: add pull request entry

* Fix imposter

---------

Co-authored-by: Antonio David Gutiérrez <[email protected]>
Co-authored-by: Álex Ruiz <[email protected]>
Co-authored-by: yenienserrano <[email protected]>
Co-authored-by: Antonio <[email protected]>

* Bump v4.4.4-2.6.0-rc2

* Add Apple Silicon architecture to the register Agent wizard (#5478)

* Add Apple Silicon architecture

* Add changelog

* Change macOS environment variables

* Revert "Change macOS environment variables"

This reverts commit 108e866.

* Change macOS architecture ids

* Add missing supported versions to the Docker environments (#5584)

feat(environments): add latest versions to Docker environments

- Add Kibana versions: 7.17.7, 7.17.8, 7.17.9 and 7.17.10
- Add OpenSearch: 2.6.0
- Add OpenSearch Dashboards: 2.6.0
- Add Wazuh 4.4.1, 4.4.2, 4.4.3 and 4.4.4

* Bump 4.5.1

* Change the method to make the redirect (#5539)

* Change the metod to make the redirect

* Remove unused code

* Add changelog

---------

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

* Fix agents active coverage stat as NaN (#5490)

* fix: agents active coverate stat as NaN

Ensure the values used to calculate have the expected types and
the total count is greater than 0.

* remove: unused openRegistrationDocs method

* changelog: add entry

* fix: check if agents active coverage is a NaN

* changelog: fix entry

---------

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

* [Backport 4.5.1] Update test snapshots for 4.5 (#5607)

* Update test snapshots for 4.5 (#5601)

* Add missing supported versions to the Docker environments (#5584)

feat(environments): add latest versions to Docker environments

- Add Kibana versions: 7.17.7, 7.17.8, 7.17.9 and 7.17.10
- Add OpenSearch: 2.6.0
- Add OpenSearch Dashboards: 2.6.0
- Add Wazuh 4.4.1, 4.4.2, 4.4.3 and 4.4.4

* Update test snapshost

* Update API data to 4.5

* Update branch patterns for GH Actions

---------

Co-authored-by: Antonio <[email protected]>
(cherry picked from commit 1ae5f19)

* Fix API reference links in endpoints.json

* Add kbn-dev 7.17.11 (#5628)

* Merge 4.5.0 into 4.5.1 (#5670)

* Update test snapshots for 4.5 (#5601)

* Add missing supported versions to the Docker environments (#5584)

feat(environments): add latest versions to Docker environments

- Add Kibana versions: 7.17.7, 7.17.8, 7.17.9 and 7.17.10
- Add OpenSearch: 2.6.0
- Add OpenSearch Dashboards: 2.6.0
- Add Wazuh 4.4.1, 4.4.2, 4.4.3 and 4.4.4

* Update test snapshost

* Update API data to 4.5

* Update branch patterns for GH Actions

---------

Co-authored-by: Antonio <[email protected]>

* Fix API reference links in endpoints.json

* Merge 4.4 into 4.5.0 (#5669)

Merge v4.4.5-2.6.0 into 4.4 (#5665)

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

* Update changelog

* Update opensearch_dashboards.json

* Update package.json

* Update readme

* Update tag script

* Change tag.py version value

* Empty tag suffix

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

Add -rc1 tag suffix

* Fix incompatible version of triple-beam subdependency (#5652)

fix: add yarn.lock file and set version of triple-beam in yarn.lock

* Update unit-test.yml (#5655)

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

* Update revision of v4.4.5 in the Changelog

* Bump v4.4.5-2.6.0-rc2

---------

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

---------

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

* Bump Wazuh version 4.5.2 (#5702)

Bump 4.5.2

* Merge 4.5.1 into 4.5.2 (#5720)

Merge 4.5.0 into 4.5.1 (#5719)

* Update test snapshots for 4.5 (#5601)

* Add missing supported versions to the Docker environments (#5584)

feat(environments): add latest versions to Docker environments

- Add Kibana versions: 7.17.7, 7.17.8, 7.17.9 and 7.17.10
- Add OpenSearch: 2.6.0
- Add OpenSearch Dashboards: 2.6.0
- Add Wazuh 4.4.1, 4.4.2, 4.4.3 and 4.4.4

* Update test snapshost

* Update API data to 4.5

* Update branch patterns for GH Actions

---------



* Fix API reference links in endpoints.json

* Merge 4.4 into 4.5.0 (#5669)

Merge v4.4.5-2.6.0 into 4.4 (#5665)

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

* Update changelog

* Update opensearch_dashboards.json

* Update package.json

* Update readme

* Update tag script

* Change tag.py version value

* Empty tag suffix

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

Add -rc1 tag suffix

* Fix incompatible version of triple-beam subdependency (#5652)

fix: add yarn.lock file and set version of triple-beam in yarn.lock

* Update unit-test.yml (#5655)

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

* Update revision of v4.4.5 in the Changelog

* Bump v4.4.5-2.6.0-rc2

---------






* Update release utilities (#5677)

* feat: update release utilities to current process

- Add new bump script
- Port tag.py to NodeJS and allow receive parameters from stdin
- Add RELEASING.md file with information about the release process
  related to the usage of the included scripts
- Add release:bump and release:tag package scripts to run these process

* remove: remove scripts/tag.py and reference in the Makefile

* fix: fix help text in bump and tag scripts

* remove: remove stage and commit properties from the package.json

* remove: test related to stage property in the package.json

* fix: check if there are changes to commit in the tag script

- Code formatting
- Fix variable name

---------

Co-authored-by: Álex Ruiz <[email protected]>
Co-authored-by: Ian Yenien Serrano <[email protected]>
Co-authored-by: Nicolas Agustin Guevara Pihen <[email protected]>
Co-authored-by: Federico Rodriguez <[email protected]>

* Merge 4.5.1 into 4.5.2 (#5774)

* Merge 4.5.0 into 4.5.1 (#5719)

* Update test snapshots for 4.5 (#5601)

* Add missing supported versions to the Docker environments (#5584)

feat(environments): add latest versions to Docker environments

- Add Kibana versions: 7.17.7, 7.17.8, 7.17.9 and 7.17.10
- Add OpenSearch: 2.6.0
- Add OpenSearch Dashboards: 2.6.0
- Add Wazuh 4.4.1, 4.4.2, 4.4.3 and 4.4.4

* Update test snapshost

* Update API data to 4.5

* Update branch patterns for GH Actions

---------

Co-authored-by: Antonio <[email protected]>

* Fix API reference links in endpoints.json

* Merge 4.4 into 4.5.0 (#5669)

Merge v4.4.5-2.6.0 into 4.4 (#5665)

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

* Update changelog

* Update opensearch_dashboards.json

* Update package.json

* Update readme

* Update tag script

* Change tag.py version value

* Empty tag suffix

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

Add -rc1 tag suffix

* Fix incompatible version of triple-beam subdependency (#5652)

fix: add yarn.lock file and set version of triple-beam in yarn.lock

* Update unit-test.yml (#5655)

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

* Update revision of v4.4.5 in the Changelog

* Bump v4.4.5-2.6.0-rc2

---------

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

* Update release utilities (#5677)

* feat: update release utilities to current process

- Add new bump script
- Port tag.py to NodeJS and allow receive parameters from stdin
- Add RELEASING.md file with information about the release process
  related to the usage of the included scripts
- Add release:bump and release:tag package scripts to run these process

* remove: remove scripts/tag.py and reference in the Makefile

* fix: fix help text in bump and tag scripts

* remove: remove stage and commit properties from the package.json

* remove: test related to stage property in the package.json

* fix: check if there are changes to commit in the tag script

- Code formatting
- Fix variable name

---------

Co-authored-by: Álex Ruiz <[email protected]>
Co-authored-by: Ian Yenien Serrano <[email protected]>
Co-authored-by: Nicolas Agustin Guevara Pihen <[email protected]>
Co-authored-by: Federico Rodriguez <[email protected]>

* Fix API request to get the manager labels and broken documentation link (#5687)

* fix: broken documentation link

* changelog: add pull request entry

* fix: changed API endpoint to get the manager labels and managing the data to render

* changelog: add pull request entry

* changelog: fix entry

* changelog: fix entry

* Add response to imposter

---------

Co-authored-by: yenienserrano <[email protected]>

* Fix server side query in pdf report filter (#5714)

* Add server side query

* Fix reporting unit test

* Remove duplicated allowed agents filter and gdpr-pci-tsc filters

* Code cleaning

* Added Changelog

* Fix deep clone filters

* Fix server side requirement query

* Fix rootkit filter

* Update API data for 4.5.1 (#5758)

update: API data

* Fix outdated year in PDF report footer (#5766)

* Fix year in PDF footer

* Modify changelog

* Change tests to match the new value

* Change md5 in reporting test

* Change md5 in reporting test

* Revert accidental change

* Revert accidental change

* Fix md5 in test

* Change md5 in test

* Change md5 in test

* Merge 4.5 into 4.5.1 (#5773)

* Update test snapshots for 4.5 (#5601)

* Add missing supported versions to the Docker environments (#5584)

feat(environments): add latest versions to Docker environments

- Add Kibana versions: 7.17.7, 7.17.8, 7.17.9 and 7.17.10
- Add OpenSearch: 2.6.0
- Add OpenSearch Dashboards: 2.6.0
- Add Wazuh 4.4.1, 4.4.2, 4.4.3 and 4.4.4

* Update test snapshost

* Update API data to 4.5

* Update branch patterns for GH Actions

---------

Co-authored-by: Antonio <[email protected]>

* Fix API reference links in endpoints.json

* Merge 4.4 into 4.5.0 (#5669)

Merge v4.4.5-2.6.0 into 4.4 (#5665)

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

* Update changelog

* Update opensearch_dashboards.json

* Update package.json

* Update readme

* Update tag script

* Change tag.py version value

* Empty tag suffix

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

Add -rc1 tag suffix

* Fix incompatible version of triple-beam subdependency (#5652)

fix: add yarn.lock file and set version of triple-beam in yarn.lock

* Update unit-test.yml (#5655)

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

* Update revision of v4.4.5 in the Changelog

* Bump v4.4.5-2.6.0-rc2

---------

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

* Update release utilities (#5677)

* feat: update release utilities to current process

- Add new bump script
- Port tag.py to NodeJS and allow receive parameters from stdin
- Add RELEASING.md file with information about the release process
  related to the usage of the included scripts
- Add release:bump and release:tag package scripts to run these process

* remove: remove scripts/tag.py and reference in the Makefile

* fix: fix help text in bump and tag scripts

* remove: remove stage and commit properties from the package.json

* remove: test related to stage property in the package.json

* fix: check if there are changes to commit in the tag script

- Code formatting
- Fix variable name

* Bump v4.5.0-2.6.0-alpha1

* Update README.md

---------

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

---------

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

* Remove files

* Remove console.log

---------

Co-authored-by: Julio César Biset <[email protected]>
Co-authored-by: Antonio <[email protected]>
Co-authored-by: Álex Ruiz <[email protected]>
Co-authored-by: Nicolas Agustin Guevara Pihen <[email protected]>
Co-authored-by: Antonio David Gutiérrez <[email protected]>
Co-authored-by: Federico Rodriguez <[email protected]>
Desvelao added a commit that referenced this pull request Aug 11, 2023
* [Backport 4.5.0-7.10] Update test snapshots for 4.5 (#5603)

Update test snapshots for 4.5 (#5601)

* Add missing supported versions to the Docker environments (#5584)

feat(environments): add latest versions to Docker environments

- Add Kibana versions: 7.17.7, 7.17.8, 7.17.9 and 7.17.10
- Add OpenSearch: 2.6.0
- Add OpenSearch Dashboards: 2.6.0
- Add Wazuh 4.4.1, 4.4.2, 4.4.3 and 4.4.4

* Update test snapshost

* Update API data to 4.5

* Update branch patterns for GH Actions

---------

Co-authored-by: Antonio <[email protected]>
(cherry picked from commit 1ae5f19)

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

* Fix API reference links in endpoints.json

* Merge 4.4 7.10 into 4.5.0 7.10 (#5693)

Merge v4.4.5-7.10.2 into 4.4-7.10 (#5667)

* [Backport 4.4.5-7.10] Bump Wazuh and platform versions for v4.4.5 (#5639) (#5642)

* 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)

* 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)

---------



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

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

Add -rc1 tag suffix

(cherry picked from commit c10eb4e)

* Fix incompatible version of triple-beam subdependency (#5651)

fix: add yarn.lock file and set version of triple-beam in yarn.lock

* [Backport 4.4.5-7.10] Update unit-test.yml (#5656)

Update unit-test.yml (#5655)

(cherry picked from commit 29ec6f9)



* [Backport 4.4.5-7.10] Add support for Wazuh 4.4.5-rc2 (#5660)

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

(cherry picked from commit 1103a0c)

* Update revision of v4.4.5 in the Changelog

---------



* Bump v4.4.5-7.10.2-rc2

---------

Co-authored-by: Ian Yenien Serrano <[email protected]>
Co-authored-by: Nicolas Agustin Guevara Pihen <[email protected]>
Co-authored-by: Álex Ruiz <[email protected]>
Co-authored-by: Antonio <[email protected]>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>

* [Backport 4.5.0-7.10] Update release utilities (#5715)

Update release utilities (#5677)

* feat: update release utilities to current process

- Add new bump script
- Port tag.py to NodeJS and allow receive parameters from stdin
- Add RELEASING.md file with information about the release process
  related to the usage of the included scripts
- Add release:bump and release:tag package scripts to run these process

* remove: remove scripts/tag.py and reference in the Makefile

* fix: fix help text in bump and tag scripts

* remove: remove stage and commit properties from the package.json

* remove: test related to stage property in the package.json

* fix: check if there are changes to commit in the tag script

- Code formatting
- Fix variable name

(cherry picked from commit e6caddc)

* Bump v4.5.0-7.10.2-alpha1

* Update CHANGELOG.md

---------

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Álex Ruiz <[email protected]>
Co-authored-by: Maximiliano Ibarra <[email protected]>
Co-authored-by: Nicolas Agustin Guevara Pihen <[email protected]>
Co-authored-by: Antonio <[email protected]>
Co-authored-by: Federico Rodriguez <[email protected]>
Machi3mfl pushed a commit that referenced this pull request Aug 11, 2023
* [Backport 4.5.0-7.16] Update test snapshots for 4.5 (#5604)

Update test snapshots for 4.5 (#5601)

* Add missing supported versions to the Docker environments (#5584)

feat(environments): add latest versions to Docker environments

- Add Kibana versions: 7.17.7, 7.17.8, 7.17.9 and 7.17.10
- Add OpenSearch: 2.6.0
- Add OpenSearch Dashboards: 2.6.0
- Add Wazuh 4.4.1, 4.4.2, 4.4.3 and 4.4.4

* Update test snapshost

* Update API data to 4.5

* Update branch patterns for GH Actions

---------

Co-authored-by: Antonio <[email protected]>
(cherry picked from commit 1ae5f19)

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

* Fix API reference links in endpoints.json

* Merge 4.4-7.16 into 4.5.0-7.16 (#5695)

Merge v4.4.5-7.16.0 into 4.4-7.16 (#5668)

* [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

---------




* [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)



* 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)



* [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

---------



* Bump v4.4.5-7.16.0-rc2

---------

Co-authored-by: Ian Yenien Serrano <[email protected]>
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]>

* [Backport 4.5.0-7.16] Update release utilities (#5716)

Update release utilities (#5677)

* feat: update release utilities to current process

- Add new bump script
- Port tag.py to NodeJS and allow receive parameters from stdin
- Add RELEASING.md file with information about the release process
  related to the usage of the included scripts
- Add release:bump and release:tag package scripts to run these process

* remove: remove scripts/tag.py and reference in the Makefile

* fix: fix help text in bump and tag scripts

* remove: remove stage and commit properties from the package.json

* remove: test related to stage property in the package.json

* fix: check if there are changes to commit in the tag script

- Code formatting
- Fix variable name

(cherry picked from commit e6caddc)

* Bump v4.5.0-7.16.0-alpha1

---------

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]>
Co-authored-by: Nicolas Agustin Guevara Pihen <[email protected]>
Co-authored-by: Federico Rodriguez <[email protected]>
Machi3mfl pushed a commit that referenced this pull request Aug 11, 2023
* Merge 4.5.0-7.16 into 4.5.1-7.16 (#5725)

* [Backport 4.5.0-7.16] Update test snapshots for 4.5 (#5604)

Update test snapshots for 4.5 (#5601)

* Add missing supported versions to the Docker environments (#5584)

feat(environments): add latest versions to Docker environments

- Add Kibana versions: 7.17.7, 7.17.8, 7.17.9 and 7.17.10
- Add OpenSearch: 2.6.0
- Add OpenSearch Dashboards: 2.6.0
- Add Wazuh 4.4.1, 4.4.2, 4.4.3 and 4.4.4

* Update test snapshost

* Update API data to 4.5

* Update branch patterns for GH Actions

---------

Co-authored-by: Antonio <[email protected]>
(cherry picked from commit 1ae5f19)

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

* Fix API reference links in endpoints.json

* Merge 4.4-7.16 into 4.5.0-7.16 (#5695)

Merge v4.4.5-7.16.0 into 4.4-7.16 (#5668)

* [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

---------




* [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)



* 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)



* [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

---------



* Bump v4.4.5-7.16.0-rc2

---------

Co-authored-by: Ian Yenien Serrano <[email protected]>
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]>

* [Backport 4.5.0-7.16] Update release utilities (#5716)

Update release utilities (#5677)

* feat: update release utilities to current process

- Add new bump script
- Port tag.py to NodeJS and allow receive parameters from stdin
- Add RELEASING.md file with information about the release process
  related to the usage of the included scripts
- Add release:bump and release:tag package scripts to run these process

* remove: remove scripts/tag.py and reference in the Makefile

* fix: fix help text in bump and tag scripts

* remove: remove stage and commit properties from the package.json

* remove: test related to stage property in the package.json

* fix: check if there are changes to commit in the tag script

- Code formatting
- Fix variable name

(cherry picked from commit e6caddc)

---------

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Álex Ruiz <[email protected]>
Co-authored-by: Ian Yenien Serrano <[email protected]>
Co-authored-by: Nicolas Agustin Guevara Pihen <[email protected]>
Co-authored-by: Federico Rodriguez <[email protected]>

* [Backport 4.5.1-7.16] Fix API request to get the manager labels and broken documentation link (#5731)

Fix API request to get the manager labels and broken documentation link (#5687)

* fix: broken documentation link

* changelog: add pull request entry

* fix: changed API endpoint to get the manager labels and managing the data to render

* changelog: add pull request entry

* changelog: fix entry

* changelog: fix entry

* Add response to imposter

---------

Co-authored-by: yenienserrano <[email protected]>
(cherry picked from commit 6a18172)

* [Backport 4.5.1-7.16] Fix server side query in pdf report filter (#5733)

* Backport 5714 to 7.16

* Added Changelog

* Add comments

* Fix deep clone filters

* Fix server side requirement query

* Fix rootkit filter

* [Backport 4.5.1-7.16] Update API data for 4.5.1 (#5760)

Update API data for 4.5.1 (#5758)

update: API data
(cherry picked from commit db9a2c7)

Co-authored-by: Antonio <[email protected]>

* [Backport 4.5.1-7.16] Fix outdated year in PDF report footer (#5767)

Fix outdated year in PDF report footer (#5766)

* Fix year in PDF footer

* Modify changelog

* Change tests to match the new value

* Change md5 in reporting test

* Change md5 in reporting test

* Revert accidental change

* Revert accidental change

* Fix md5 in test

* Change md5 in test

* Change md5 in test

(cherry picked from commit a997dcf)

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

* Merge 4.5-7.16 into 4.5.1-7.16 (#5777)

* [Backport 4.5.0-7.16] Update test snapshots for 4.5 (#5604)

Update test snapshots for 4.5 (#5601)

* Add missing supported versions to the Docker environments (#5584)

feat(environments): add latest versions to Docker environments

- Add Kibana versions: 7.17.7, 7.17.8, 7.17.9 and 7.17.10
- Add OpenSearch: 2.6.0
- Add OpenSearch Dashboards: 2.6.0
- Add Wazuh 4.4.1, 4.4.2, 4.4.3 and 4.4.4

* Update test snapshost

* Update API data to 4.5

* Update branch patterns for GH Actions

---------

Co-authored-by: Antonio <[email protected]>
(cherry picked from commit 1ae5f19)

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

* Fix API reference links in endpoints.json

* Merge 4.4-7.16 into 4.5.0-7.16 (#5695)

Merge v4.4.5-7.16.0 into 4.4-7.16 (#5668)

* [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

---------




* [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)



* 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)



* [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

---------



* Bump v4.4.5-7.16.0-rc2

---------

Co-authored-by: Ian Yenien Serrano <[email protected]>
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]>

* [Backport 4.5.0-7.16] Update release utilities (#5716)

Update release utilities (#5677)

* feat: update release utilities to current process

- Add new bump script
- Port tag.py to NodeJS and allow receive parameters from stdin
- Add RELEASING.md file with information about the release process
  related to the usage of the included scripts
- Add release:bump and release:tag package scripts to run these process

* remove: remove scripts/tag.py and reference in the Makefile

* fix: fix help text in bump and tag scripts

* remove: remove stage and commit properties from the package.json

* remove: test related to stage property in the package.json

* fix: check if there are changes to commit in the tag script

- Code formatting
- Fix variable name

(cherry picked from commit e6caddc)

* Bump v4.5.0-7.16.0-alpha1

---------

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]>
Co-authored-by: Nicolas Agustin Guevara Pihen <[email protected]>
Co-authored-by: Federico Rodriguez <[email protected]>

---------

Co-authored-by: Antonio <[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: Nicolas Agustin Guevara Pihen <[email protected]>
Co-authored-by: Federico Rodriguez <[email protected]>
Machi3mfl added a commit that referenced this pull request Aug 11, 2023
* Merge 4.5.0-7.10 into 4.5.1-7.10 (#5724)

* [Backport 4.5.0-7.10] Update test snapshots for 4.5 (#5603)

Update test snapshots for 4.5 (#5601)

* Add missing supported versions to the Docker environments (#5584)

feat(environments): add latest versions to Docker environments

- Add Kibana versions: 7.17.7, 7.17.8, 7.17.9 and 7.17.10
- Add OpenSearch: 2.6.0
- Add OpenSearch Dashboards: 2.6.0
- Add Wazuh 4.4.1, 4.4.2, 4.4.3 and 4.4.4

* Update test snapshost

* Update API data to 4.5

* Update branch patterns for GH Actions

---------

Co-authored-by: Antonio <[email protected]>
(cherry picked from commit 1ae5f19)

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

* Fix API reference links in endpoints.json

* Merge 4.4 7.10 into 4.5.0 7.10 (#5693)

Merge v4.4.5-7.10.2 into 4.4-7.10 (#5667)

* [Backport 4.4.5-7.10] Bump Wazuh and platform versions for v4.4.5 (#5639) (#5642)

* 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)

* 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)

---------



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

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

Add -rc1 tag suffix

(cherry picked from commit c10eb4e)

* Fix incompatible version of triple-beam subdependency (#5651)

fix: add yarn.lock file and set version of triple-beam in yarn.lock

* [Backport 4.4.5-7.10] Update unit-test.yml (#5656)

Update unit-test.yml (#5655)

(cherry picked from commit 29ec6f9)



* [Backport 4.4.5-7.10] Add support for Wazuh 4.4.5-rc2 (#5660)

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

(cherry picked from commit 1103a0c)

* Update revision of v4.4.5 in the Changelog

---------



* Bump v4.4.5-7.10.2-rc2

---------

Co-authored-by: Ian Yenien Serrano <[email protected]>
Co-authored-by: Nicolas Agustin Guevara Pihen <[email protected]>
Co-authored-by: Álex Ruiz <[email protected]>
Co-authored-by: Antonio <[email protected]>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>

* [Backport 4.5.0-7.10] Update release utilities (#5715)

Update release utilities (#5677)

* feat: update release utilities to current process

- Add new bump script
- Port tag.py to NodeJS and allow receive parameters from stdin
- Add RELEASING.md file with information about the release process
  related to the usage of the included scripts
- Add release:bump and release:tag package scripts to run these process

* remove: remove scripts/tag.py and reference in the Makefile

* fix: fix help text in bump and tag scripts

* remove: remove stage and commit properties from the package.json

* remove: test related to stage property in the package.json

* fix: check if there are changes to commit in the tag script

- Code formatting
- Fix variable name

(cherry picked from commit e6caddc)

---------

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Álex Ruiz <[email protected]>
Co-authored-by: Maximiliano Ibarra <[email protected]>
Co-authored-by: Ian Yenien Serrano <[email protected]>
Co-authored-by: Nicolas Agustin Guevara Pihen <[email protected]>

* [Backport 4.5.1-7.10] Fix API request to get the manager labels and broken documentation link (#5730)

Fix API request to get the manager labels and broken documentation link (#5687)

* fix: broken documentation link

* changelog: add pull request entry

* fix: changed API endpoint to get the manager labels and managing the data to render

* changelog: add pull request entry

* changelog: fix entry

* changelog: fix entry

* Add response to imposter

---------

Co-authored-by: yenienserrano <[email protected]>
(cherry picked from commit 6a18172)

* [Backport 4.5.1-7.10] Fix server side query in pdf report filter (#5732)

* Backport 5417

* Add comments

* Add changelog

* Fix deep clone filters

* Fix server side requirement query

* Fix rootkit filter

* [Backport 4.5.1-7.10] Update API data for 4.5.1 (#5759)

Update API data for 4.5.1 (#5758)

update: API data
(cherry picked from commit db9a2c7)

Co-authored-by: Antonio <[email protected]>

* [Backport 4.6.0-7.10] Fix outdated year in PDF report footer (#5768)

Fix outdated year in PDF report footer (#5766)

* Fix year in PDF footer

* Modify changelog

* Change tests to match the new value

* Change md5 in reporting test

* Change md5 in reporting test

* Revert accidental change

* Revert accidental change

* Fix md5 in test

* Change md5 in test

* Change md5 in test

(cherry picked from commit a997dcf)

* Merge 4.5-7.10 into 4.5.1-7.10 (#5776)

* [Backport 4.5.0-7.10] Update test snapshots for 4.5 (#5603)

Update test snapshots for 4.5 (#5601)

* Add missing supported versions to the Docker environments (#5584)

feat(environments): add latest versions to Docker environments

- Add Kibana versions: 7.17.7, 7.17.8, 7.17.9 and 7.17.10
- Add OpenSearch: 2.6.0
- Add OpenSearch Dashboards: 2.6.0
- Add Wazuh 4.4.1, 4.4.2, 4.4.3 and 4.4.4

* Update test snapshost

* Update API data to 4.5

* Update branch patterns for GH Actions

---------

Co-authored-by: Antonio <[email protected]>
(cherry picked from commit 1ae5f19)

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

* Fix API reference links in endpoints.json

* Merge 4.4 7.10 into 4.5.0 7.10 (#5693)

Merge v4.4.5-7.10.2 into 4.4-7.10 (#5667)

* [Backport 4.4.5-7.10] Bump Wazuh and platform versions for v4.4.5 (#5639) (#5642)

* 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)

* 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)

---------



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

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

Add -rc1 tag suffix

(cherry picked from commit c10eb4e)

* Fix incompatible version of triple-beam subdependency (#5651)

fix: add yarn.lock file and set version of triple-beam in yarn.lock

* [Backport 4.4.5-7.10] Update unit-test.yml (#5656)

Update unit-test.yml (#5655)

(cherry picked from commit 29ec6f9)



* [Backport 4.4.5-7.10] Add support for Wazuh 4.4.5-rc2 (#5660)

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

(cherry picked from commit 1103a0c)

* Update revision of v4.4.5 in the Changelog

---------



* Bump v4.4.5-7.10.2-rc2

---------

Co-authored-by: Ian Yenien Serrano <[email protected]>
Co-authored-by: Nicolas Agustin Guevara Pihen <[email protected]>
Co-authored-by: Álex Ruiz <[email protected]>
Co-authored-by: Antonio <[email protected]>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>

* [Backport 4.5.0-7.10] Update release utilities (#5715)

Update release utilities (#5677)

* feat: update release utilities to current process

- Add new bump script
- Port tag.py to NodeJS and allow receive parameters from stdin
- Add RELEASING.md file with information about the release process
  related to the usage of the included scripts
- Add release:bump and release:tag package scripts to run these process

* remove: remove scripts/tag.py and reference in the Makefile

* fix: fix help text in bump and tag scripts

* remove: remove stage and commit properties from the package.json

* remove: test related to stage property in the package.json

* fix: check if there are changes to commit in the tag script

- Code formatting
- Fix variable name

(cherry picked from commit e6caddc)

* Bump v4.5.0-7.10.2-alpha1

* Update CHANGELOG.md

---------

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Álex Ruiz <[email protected]>
Co-authored-by: Maximiliano Ibarra <[email protected]>
Co-authored-by: Nicolas Agustin Guevara Pihen <[email protected]>
Co-authored-by: Antonio <[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: Maximiliano Ibarra <[email protected]>
Co-authored-by: Ian Yenien Serrano <[email protected]>
Co-authored-by: Nicolas Agustin Guevara Pihen <[email protected]>
Co-authored-by: Federico Rodriguez <[email protected]>
Desvelao added a commit that referenced this pull request Aug 11, 2023
* Merge 4.5.1 into 4.6.0 (#5671)

* Change windows agent service name (#5538)

* Change windows agent service name to Wazuh

Change windows agent service name to Wazuh

* Add CHANGELOG

* Remove agent name in agent info ribbon (#5497)

* remove: agent name in agent info ribbon

* changelog: add pull request entry

---------

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

* Fix IPV6 visualizations (#5471)

* add ipv6 service

* add test for service

* Fix issue in agents-table

* fix issue in agents-info

* fix groups agents issue

* Fix width in groups agents

* use mapResponseItem

* Add copy button to groups

* Add copy button to info

* fix for node list

* Optimize code

* Fix styles

* Edit changelog

* Edit changelog

* Add imposter changes to test ipv6

* Replace onMouseDown with onClick

* Move copy buttons to the left

* fix: removed compressipv6 property of TableWzAPI

* feat: add tableLayout property to some tables and remove IPv6 address compression

add tableLayout=auto property to some tables:
- Agents/{agent_id}/Inventory data
- Management/Cluster/Nodes
- Agents
- Management/Configuration/Client
- Management/Global configuration/Remote
remove IPv6 address compression

* remove: remove unused service to IPv6 compression

* revert: revert changes in TableWzAPI component

* add: add mocked responses to some syscollector endpoints

* remove: unwanted table columns properties

* changelog: add pull request entry

* Fix imposter

---------

Co-authored-by: Antonio David Gutiérrez <[email protected]>
Co-authored-by: Álex Ruiz <[email protected]>
Co-authored-by: yenienserrano <[email protected]>
Co-authored-by: Antonio <[email protected]>

* Bump v4.4.4-2.6.0-rc2

* Add Apple Silicon architecture to the register Agent wizard (#5478)

* Add Apple Silicon architecture

* Add changelog

* Change macOS environment variables

* Revert "Change macOS environment variables"

This reverts commit 108e866.

* Change macOS architecture ids

* Add missing supported versions to the Docker environments (#5584)

feat(environments): add latest versions to Docker environments

- Add Kibana versions: 7.17.7, 7.17.8, 7.17.9 and 7.17.10
- Add OpenSearch: 2.6.0
- Add OpenSearch Dashboards: 2.6.0
- Add Wazuh 4.4.1, 4.4.2, 4.4.3 and 4.4.4

* Bump 4.5.1

* Change the method to make the redirect (#5539)

* Change the metod to make the redirect

* Remove unused code

* Add changelog

---------

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

* Fix agents active coverage stat as NaN (#5490)

* fix: agents active coverate stat as NaN

Ensure the values used to calculate have the expected types and
the total count is greater than 0.

* remove: unused openRegistrationDocs method

* changelog: add entry

* fix: check if agents active coverage is a NaN

* changelog: fix entry

---------

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

* [Backport 4.5.1] Update test snapshots for 4.5 (#5607)

* Update test snapshots for 4.5 (#5601)

* Add missing supported versions to the Docker environments (#5584)

feat(environments): add latest versions to Docker environments

- Add Kibana versions: 7.17.7, 7.17.8, 7.17.9 and 7.17.10
- Add OpenSearch: 2.6.0
- Add OpenSearch Dashboards: 2.6.0
- Add Wazuh 4.4.1, 4.4.2, 4.4.3 and 4.4.4

* Update test snapshost

* Update API data to 4.5

* Update branch patterns for GH Actions

---------

Co-authored-by: Antonio <[email protected]>
(cherry picked from commit 1ae5f19)

* Fix API reference links in endpoints.json

* Add kbn-dev 7.17.11 (#5628)

* Merge 4.5.0 into 4.5.1 (#5670)

* Update test snapshots for 4.5 (#5601)

* Add missing supported versions to the Docker environments (#5584)

feat(environments): add latest versions to Docker environments

- Add Kibana versions: 7.17.7, 7.17.8, 7.17.9 and 7.17.10
- Add OpenSearch: 2.6.0
- Add OpenSearch Dashboards: 2.6.0
- Add Wazuh 4.4.1, 4.4.2, 4.4.3 and 4.4.4

* Update test snapshost

* Update API data to 4.5

* Update branch patterns for GH Actions

---------

Co-authored-by: Antonio <[email protected]>

* Fix API reference links in endpoints.json

* Merge 4.4 into 4.5.0 (#5669)

Merge v4.4.5-2.6.0 into 4.4 (#5665)

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

* Update changelog

* Update opensearch_dashboards.json

* Update package.json

* Update readme

* Update tag script

* Change tag.py version value

* Empty tag suffix

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

Add -rc1 tag suffix

* Fix incompatible version of triple-beam subdependency (#5652)

fix: add yarn.lock file and set version of triple-beam in yarn.lock

* Update unit-test.yml (#5655)

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

* Update revision of v4.4.5 in the Changelog

* Bump v4.4.5-2.6.0-rc2

---------

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

---------

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

---------

Co-authored-by: Julio César Biset <[email protected]>
Co-authored-by: Antonio <[email protected]>
Co-authored-by: Álex Ruiz <[email protected]>
Co-authored-by: Nicolas Agustin Guevara Pihen <[email protected]>
Co-authored-by: Antonio David Gutiérrez <[email protected]>
Co-authored-by: Federico Rodriguez <[email protected]>

* Remove unused embedded jquery-ui (#5592)

* fix: remove unused embedded jquery-ui dependency

* changelog: add pull request entry

---------

Co-authored-by: Federico Rodriguez <[email protected]>

* Fixes redirection problem to inventory data, stats and configuration in an agent (#5685)

Fix redirect to inventory data, stats and configuration

* Fix conflicts in branch synchronization (#5708)

* fix: fix conflicts

* changelog: remove entry

* Fix 4.6.0 changelog merge errors (#5692)

* Update changelog

* Update CHANGELOG.md

* Merge 4.5.2 into 4.6.0 (#5721)

* Upgrade environments to 4.6 and 4.7 (#5741)

* Add wzd-dev.dockerfile

* Update osd dev.sh

* Redesign deploy new agent page (#5457)

* parent component

* Added a title to the container and updated filenames

* Update register-agent.scss

* [Redesign add agent] Register agent reuse common/form component (Settings > Configuration) (#5446)

* Add useForm hook types

* Add custom field use in useForm hook

* Add some code redeability fixes

* Refactored useForm types and unit tests

* Move types to types file

* Remove react use inside hook test file

* Fix review requested changes

* [Redesign add agent] Add register agent command generator (#5469)

* Create reusable card for operating systems (#5462)

* Add useForm hook types

* Add custom field use in useForm hook

* Add some code redeability fixes

* Refactored useForm types and unit tests

* Move types to types file

* reuse of common form on the card

* Card with logic

* CheckboxGroup component logic update

* CheckboxGroup component logic update

* Adding card icons

* update checkbox logic, styles, and card styles

* clean code

* clean code

* gitignore Mac files

* updating checkbox logic, styles, and card styles

* Update os-card.scss

* macos card update

* undoing merging as it was causing checkboxes not to work

* test

* file ds_store

* file ds_store

* file ds_store

* remove files DS_store

* remove files DS_store

---------

Co-authored-by: Maximiliano Ibarra <[email protected]>
Co-authored-by: Maximiliano Ibarra <[email protected]>

* 5518 inputs logic server address name password and group (#5554)

* Add useForm hook types

* Add custom field use in useForm hook

* Add some code redeability fixes

* Refactored useForm types and unit tests

* Move types to types file

* reuse of common form on the card

* Card with logic

* CheckboxGroup component logic update

* CheckboxGroup component logic update

* Adding card icons

* update checkbox logic, styles, and card styles

* clean code

* clean code

* gitignore Mac files

* updating checkbox logic, styles, and card styles

* step component

* Passing interfaces to a separate file, updating styles, and component logic

* Update interfaces and clean up code

* update of folder structure and step logic

* tcp, udp, protocols, password, groups, logics

* input logic server address name password groups and styles

* group input logic

* oscards input logic

* oscards input logic

* styles

* regex

* styles and settings

* styles

* various adjustments

* cleaning up code and changing some styles

* cleaning up code

* cleaning code

* update password

* gitignore

* gitignore

* correcting validation text in input agent name

* correcting validation text in input agent name

* corrección de validación de input de nombre del agente

* cleaning code

* cleaning code

* regex that differentiates between FQDN and IP

* Use of PLUGIN_VERSION_SHORT

* Use of PLUGIN_VERSION_SHORT

* link

* Revert "Merge branch '4205-redesign-add-agent-page' into 5518-inputs-logic-server-address-name-password-and-group"

This reverts commit a4c6fb5, reversing
changes made to 5a0d2cb.

* link and revert

* characteres valid

* correction of styles when bringing changes from parent branch

* change tooltip to popover

* moving validations to a separate file with their tests

* corrections and cleaning of comments

* camel case

* change in function

* type

* remove type

* fullWidth

* type

* change

* conditional

* change label a to Euilink

* change label a to Euilink

* conditional

* delete usePrevious

* delete usePrevious

* deleted files ds store

* test correction and placeholder

* show architecture instead of id

* removing console css warnings

* fixed regex fqdn

* fixed regex fqdn

* data

* changelog

* changelog

---------

Co-authored-by: Maximiliano Ibarra <[email protected]>
Co-authored-by: Maximiliano Ibarra <[email protected]>

* [Redesign add agent] Integration commands generator with UI (#5593)

* Add useForm hook types

* Add custom field use in useForm hook

* Add some code redeability fixes

* Refactored useForm types and unit tests

* Move types to types file

* reuse of common form on the card

* Card with logic

* CheckboxGroup component logic update

* CheckboxGroup component logic update

* Adding card icons

* update checkbox logic, styles, and card styles

* clean code

* clean code

* gitignore Mac files

* updating checkbox logic, styles, and card styles

* step component

* Passing interfaces to a separate file, updating styles, and component logic

* Update interfaces and clean up code

* update of folder structure and step logic

* tcp, udp, protocols, password, groups, logics

* input logic server address name password groups and styles

* group input logic

* oscards input logic

* oscards input logic

* styles

* regex

* styles and settings

* styles

* various adjustments

* cleaning up code and changing some styles

* cleaning up code

* cleaning code

* update password

* gitignore

* gitignore

* correcting validation text in input agent name

* correcting validation text in input agent name

* corrección de validación de input de nombre del agente

* cleaning code

* cleaning code

* regex that differentiates between FQDN and IP

* Use of PLUGIN_VERSION_SHORT

* Use of PLUGIN_VERSION_SHORT

* link

* Revert "Merge branch '4205-redesign-add-agent-page' into 5518-inputs-logic-server-address-name-password-and-group"

This reverts commit a4c6fb5, reversing
changes made to 5a0d2cb.

* link and revert

* characteres valid

* correction of styles when bringing changes from parent branch

* change tooltip to popover

* moving validations to a separate file with their tests

* corrections and cleaning of comments

* camel case

* change in function

* type

* remove type

* fullWidth

* type

* change

* conditional

* change label a to Euilink

* change label a to Euilink

* conditional

* delete usePrevious

* delete usePrevious

* deleted files ds store

* test correction and placeholder

* show architecture instead of id

* Add register agent form values parser

* Remove extension on operating system type

* Add command sections with form values

* Create new components for steps inputs

* Fix some types

* Renamed some options

* Move commands config inside core folder

* Fix server address error message display

* Create methods to get form steps status

* Allow select more than group

* Hide agent group param when is empty

* Fix steps form statuses

* Remove break lines in commands

* Add white space in error messages

* Fix steps form status

* Added new command component white custom copy and language

* Fixed step form status

---------

Co-authored-by: chantal.kelm <[email protected]>
Co-authored-by: Chantal Belén kelm <[email protected]>

* [Redesign add agent] Dark mode (#5620)

* remove custom color styles to make the elastic dark mode work by default on the agent registration page

* add development for images to have dark mode in the section deploy a new agent

* changelog about dark mode

* Cleaning console.log from assets file

* Adding suggested style modifications in the agent registration section

* add a style hint so that text cannot be selected on cards

* add suggested changes to the styles in the register an agent section

* correction added to the word wizard

* added coding enhancements in the agent registration section

* adding an enhancement to eliminate the console error

* adding an enhancement to eliminate the console error

* [Redesign add agent] Add and validate register agent commands (#5622)

* Add show/hide password in command component

* Add protocol and password types

* Add more step status methods

* Add os commands service

* Resolve strings replacements in command component

* Change macos packages name by arch

* Add \n to the macos params

* Fixed parsed macos params inside echo

* Add -e in mac os install command

* Remove sudo from macos install command with echo

* Add sudo to linux before optional params

* Fix PR review comments

* Fixed imports in tests

* Fix components unit tests

* Fix unit test checkbox group component

* Fix os card unit test with mock uiSettings

* modify the fqdn regex because it interferes with an ipv4 instance

* [Redesign add page] Add form status callout message (#5634)

* Add form status manager and unit tests

* Add empty and invalid fields messages

* Hide commands code block when exists warning messages

* Fix fields names in warning messages

* Updated CHANGELOG

* Step 2: the design triggers warnings (#5649)

* changing design to remove console warnings

* update changelog

* Changes in the display of pop-up windows in the agents log section

* semicolon is added

* update changelog

* update changelog

* Add requested fixs on texts

* Add new rpm and deb install commands

* modify fqdn regex

* Fix server address validation unit test

* Add type in command output types

---------

Co-authored-by: Maximiliano Ibarra <[email protected]>
Co-authored-by: Maximiliano Ibarra <[email protected]>

* Add new search bar with WQL (#5363)

* feat: add a search bar component

Features:
- Supports multiple query languages
- Decouple the business logic of query languages of the search bar
  component
- Ability of query language to interact with the search bar

Query language implementations
- AQL: custom implementation of the Wazuh Query Language. Include
  suggestions.
- UIQL: simple implementation (as another example)

* feat(search-bar): change the AQL implemenation to use the regular expression used in the Wazuh manager API

- Change the implementation of AQL query language to use the regular
  expression decomposition defined in the Wazuh manager API
- Adapt the tests for the tokenizer and getting the suggestions
- Enchance documentation of search bar
- Add documentation of AQL query language
- Add more fields and values for the use example in Agents section
- Add description to the query language select input

* fix(search-bar): fixes a problem hidding the suggestion popover when using the Search suggestion in AQL

- Fixes a problem hidding the suggestion popover when using the Search
  suggestion in AQL
- Fixes a problem of input text with undefined value
- Minor fixes
  - Remove `syntax` property of SearchBar component
  - Add disableFocusTrap property to the custom EuiSuggestInput component to be
    forwarded to the EuiInputPopover
  - Replace the inputRef by a reference instead of a state and pass as
    a parameter in the query language run function
  - Move the rebuiding of input text when using some suggestion that changes
    the input to be done when a related suggestion was clicked instead
    of any suggestion (exclude Search).

* feat(search-bar): add the ability to update the input of example
implemenation

- Add the ability to update the input of the search bar in the example
  implementation
- Enhance the component documentation

* feat(search-bar): add initial suggestions to AQL

- (AQL) Add the fields and an open operator group when there is no input text

* feat(search-bar): add target and rel attributes to the documentation
link of query language displayed in the popover

* feat(search-bar): enhancements in AQL and search bar documentation

- AQL enhancements:
  - documentation:
    - Enhance some descriptions
    - Enhance input processing
    - Remove intermetiate interface of EuiSuggestItem
  - Remove the intermediate interface of EuiSuggestItem. Now it is
    managed in the internal of query language instead of be built by the
    suggestion handler
  - Display suggestions when the input text is empty
  - Add the unifiedQuery field to the query language output
  - Adapt tests

- Search Bar component:
  - Enhance documentation

* feat(search-bar): Add HAQL

- Remove UIQL
- Add HAQL query language that is a high-level implementation of AQL
  - Add the query language interface
  - Add tests for tokenizer, get suggestions and
    transformSpecificQLToUnifiedQL method
  - Add documentation about the language
    - Syntax
    - Options
    - Workflow

* feat(search-bar): add test to HAQL and AQL query languages

- Add tests to HAQL and AQL query languages
- Fix suggestions for HAQL when typing as first element a value entity.
  Now there are no suggestions because the field and operator_compare
  are missing.
- Enhance documentation of HAQL and AQL
- Removed unnecesary returns of suggestion handler in the example
  implementation of search bar on Agents section

* feat(search-bar): Rename HAQL query language to WQL

- Rename query language HAQL to WQL
- Update tests
- Remove AQL usage from the implementation in the agents section

* feat(search-bar): Add more use cases to the tests of WQL query language

- Add more use cases to the test of WQL query language
- Replace some literals by constants in the WQL query language
  implementation

* feat(search-bar): enhance the documenation of query languages

* feat(search-bar): Add a popover title to replicate similar UI to the platform search bar

* feat(search-bar): wrap the user input with group operators when there is an implicit query

* feat(search-bar): add implicit query mode to WQL

- WQL
  - add implicit query mode to WQL
  - enhance query language documentation
  - renamed transformUnifiedQuery to transformUQLToQL
  - now wraps the user input if this is defined and there a implicit
    query string
  - fix a problem with the value suggestions if there is a previous
    conjunction
    - add tests cases
  - update tests
- AQL
  - enhance query language documentation
  - renamed transformUnifiedQuery to transformUQLToQL
  - add warning about the query language implementation is not updated
    to the last changes in the search bar component
  - update tests

- Search Bar
  - renamed transformUnifiedQuery to transformUQLToQL

* feat(search-bar): set the width of the syntax options popover

* feat(search-bar): unify suggestion descriptions in WQL

- Set a width for the syntax options popover
- Unify the description in the suggestions of WQL example implementation
- Update tests
- Fix minor bugs in the WQL example implementation in Agents

* feat(search-bar): add enhancements to WQL

- WQL
  - Enhance documentation
  - Add partial and "expanded" input validation
  - Add tests

* feat(search-bar): rename previousField and previousOperatorCompare in WQL

* fix(tests): update snapshot

* fix(search-bar): fix documentation link for WQL

* fix(search-bar): remove example usage of SearchBar component in Agents

* fix(search-bar): fix an error using the value suggestions in WQL

Fix an error when the last token in the input was a value and used
a value suggestion whose label contains whitespaces, the value was
not wrapped with quotes.

* feat(search-bar): add search function suggestion when the input is empty

* fix(search-bar): ensure the query language output changed to trigger the onChange handler

* feat(search-bar): allow the API query output can be redone when the search term fields changed

- Search bar:
  - Add a dependency to run the query language output
  - Adapt search bar documentation to the changes
- WQL
  - Create a new parameter called `options`
  - Moved the `implicitFilter` and `searchTerm` settings to `options`
  - Update tests
  - Update documentation

* feat(search-bar): enhance the validation of value token in WQL

* feat(search-bar): enhance search bar and WQL

Search bar:
  - Add the possibility to render buttons to the right of the input
  - Minor changes
WQL:
  - Add options.filterButtons to render filter buttons and component
    rendering
  - Extract the quoted value for the quoted token values
  - Add the `validate` parameter to validate the tokens (only available for
    `value` token)
  - Enhance language description
  - Add test related to value token validation
  - Update language documentation with this changes

* feat(search-bar): enhace search bar and WQL

Search bar:
- rename method from `transformUQLtoQL` to `transformInput`
- add a options paramenter to `transformInput` to manage when there is
  an implicit filter, that this methods can remove the filter from the
  query
- update documentation
WQL:
- rename method from `transformUQLtoQL` to `transformInput`
- add a options paramenter to `transformInput` to manage when there is
  an implicit filter, that this methods can remove the filter from the
  query
- add tests

* fix: enhance search bar and WQL types

* fix: remove exact validation for the token value due to performance problems

* fix: fix token value validation

* fix: update the link to the documentation of WQL

* fix(search-bar): use value of value token as the value used to get the value suggestions in the search bar instead of raw token that could include " character

* fix(search-bar): fix a problem extracting value for value tokens wrapped by double quotation marks that contains the new line character and remove separation of invalid characters in the value token

- Fix tests

* fix(search-bar): add validation for value token in WQL

* fix(search-bar): value token in message related to this is invalid

---------

Co-authored-by: Federico Rodriguez <[email protected]>

* [Redesign add agent]  Fix custom Eui styles in register agent wizard (#5769)

Add wrapper to custom eui styles

* Merge 4.5.2 into 4.6.0 (#5775)

* Change windows agent service name (#5538)

* Change windows agent service name to Wazuh

Change windows agent service name to Wazuh

* Add CHANGELOG

* Remove agent name in agent info ribbon (#5497)

* remove: agent name in agent info ribbon

* changelog: add pull request entry

---------

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

* Fix IPV6 visualizations (#5471)

* add ipv6 service

* add test for service

* Fix issue in agents-table

* fix issue in agents-info

* fix groups agents issue

* Fix width in groups agents

* use mapResponseItem

* Add copy button to groups

* Add copy button to info

* fix for node list

* Optimize code

* Fix styles

* Edit changelog

* Edit changelog

* Add imposter changes to test ipv6

* Replace onMouseDown with onClick

* Move copy buttons to the left

* fix: removed compressipv6 property of TableWzAPI

* feat: add tableLayout property to some tables and remove IPv6 address compression

add tableLayout=auto property to some tables:
- Agents/{agent_id}/Inventory data
- Management/Cluster/Nodes
- Agents
- Management/Configuration/Client
- Management/Global configuration/Remote
remove IPv6 address compression

* remove: remove unused service to IPv6 compression

* revert: revert changes in TableWzAPI component

* add: add mocked responses to some syscollector endpoints

* remove: unwanted table columns properties

* changelog: add pull request entry

* Fix imposter

---------

Co-authored-by: Antonio David Gutiérrez <[email protected]>
Co-authored-by: Álex Ruiz <[email protected]>
Co-authored-by: yenienserrano <[email protected]>
Co-authored-by: Antonio <[email protected]>

* Bump v4.4.4-2.6.0-rc2

* Add Apple Silicon architecture to the register Agent wizard (#5478)

* Add Apple Silicon architecture

* Add changelog

* Change macOS environment variables

* Revert "Change macOS environment variables"

This reverts commit 108e866.

* Change macOS architecture ids

* Add missing supported versions to the Docker environments (#5584)

feat(environments): add latest versions to Docker environments

- Add Kibana versions: 7.17.7, 7.17.8, 7.17.9 and 7.17.10
- Add OpenSearch: 2.6.0
- Add OpenSearch Dashboards: 2.6.0
- Add Wazuh 4.4.1, 4.4.2, 4.4.3 and 4.4.4

* Bump 4.5.1

* Change the method to make the redirect (#5539)

* Change the metod to make the redirect

* Remove unused code

* Add changelog

---------

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

* Fix agents active coverage stat as NaN (#5490)

* fix: agents active coverate stat as NaN

Ensure the values used to calculate have the expected types and
the total count is greater than 0.

* remove: unused openRegistrationDocs method

* changelog: add entry

* fix: check if agents active coverage is a NaN

* changelog: fix entry

---------

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

* [Backport 4.5.1] Update test snapshots for 4.5 (#5607)

* Update test snapshots for 4.5 (#5601)

* Add missing supported versions to the Docker environments (#5584)

feat(environments): add latest versions to Docker environments

- Add Kibana versions: 7.17.7, 7.17.8, 7.17.9 and 7.17.10
- Add OpenSearch: 2.6.0
- Add OpenSearch Dashboards: 2.6.0
- Add Wazuh 4.4.1, 4.4.2, 4.4.3 and 4.4.4

* Update test snapshost

* Update API data to 4.5

* Update branch patterns for GH Actions

---------

Co-authored-by: Antonio <[email protected]>
(cherry picked from commit 1ae5f19)

* Fix API reference links in endpoints.json

* Add kbn-dev 7.17.11 (#5628)

* Merge 4.5.0 into 4.5.1 (#5670)

* Update test snapshots for 4.5 (#5601)

* Add missing supported versions to the Docker environments (#5584)

feat(environments): add latest versions to Docker environments

- Add Kibana versions: 7.17.7, 7.17.8, 7.17.9 and 7.17.10
- Add OpenSearch: 2.6.0
- Add OpenSearch Dashboards: 2.6.0
- Add Wazuh 4.4.1, 4.4.2, 4.4.3 and 4.4.4

* Update test snapshost

* Update API data to 4.5

* Update branch patterns for GH Actions

---------

Co-authored-by: Antonio <[email protected]>

* Fix API reference links in endpoints.json

* Merge 4.4 into 4.5.0 (#5669)

Merge v4.4.5-2.6.0 into 4.4 (#5665)

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

* Update changelog

* Update opensearch_dashboards.json

* Update package.json

* Update readme

* Update tag script

* Change tag.py version value

* Empty tag suffix

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

Add -rc1 tag suffix

* Fix incompatible version of triple-beam subdependency (#5652)

fix: add yarn.lock file and set version of triple-beam in yarn.lock

* Update unit-test.yml (#5655)

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

* Update revision of v4.4.5 in the Changelog

* Bump v4.4.5-2.6.0-rc2

---------

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

---------

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

* Bump Wazuh version 4.5.2 (#5702)

Bump 4.5.2

* Merge 4.5.1 into 4.5.2 (#5720)

Merge 4.5.0 into 4.5.1 (#5719)

* Update test snapshots for 4.5 (#5601)

* Add missing supported versions to the Docker environments (#5584)

feat(environments): add latest versions to Docker environments

- Add Kibana versions: 7.17.7, 7.17.8, 7.17.9 and 7.17.10
- Add OpenSearch: 2.6.0
- Add OpenSearch Dashboards: 2.6.0
- Add Wazuh 4.4.1, 4.4.2, 4.4.3 and 4.4.4

* Update test snapshost

* Update API data to 4.5

* Update branch patterns for GH Actions

---------



* Fix API reference links in endpoints.json

* Merge 4.4 into 4.5.0 (#5669)

Merge v4.4.5-2.6.0 into 4.4 (#5665)

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

* Update changelog

* Update opensearch_dashboards.json

* Update package.json

* Update readme

* Update tag script

* Change tag.py version value

* Empty tag suffix

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

Add -rc1 tag suffix

* Fix incompatible version of triple-beam subdependency (#5652)

fix: add yarn.lock file and set version of triple-beam in yarn.lock

* Update unit-test.yml (#5655)

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

* Update revision of v4.4.5 in the Changelog

* Bump v4.4.5-2.6.0-rc2

---------






* Update release utilities (#5677)

* feat: update release utilities to current process

- Add new bump script
- Port tag.py to NodeJS and allow receive parameters from stdin
- Add RELEASING.md file with information about the release process
  related to the usage of the included scripts
- Add release:bump and release:tag package scripts to run these process

* remove: remove scripts/tag.py and reference in the Makefile

* fix: fix help text in bump and tag scripts

* remove: remove stage and commit properties from the package.json

* remove: test related to stage property in the package.json

* fix: check if there are changes to commit in the tag script

- Code formatting
- Fix variable name

---------

Co-authored-by: Álex Ruiz <[email protected]>
Co-authored-by: Ian Yenien Serrano <[email protected]>
Co-authored-by: Nicolas Agustin Guevara Pihen <[email protected]>
Co-authored-by: Federico Rodriguez <[email protected]>

* Merge 4.5.1 into 4.5.2 (#5774)

* Merge 4.5.0 into 4.5.1 (#5719)

* Update test snapshots for 4.5 (#5601)

* Add missing supported versions to the Docker environments (#5584)

feat(environments): add latest versions to Docker environments

- Add Kibana versions: 7.17.7, 7.17.8, 7.17.9 and 7.17.10
- Add OpenSearch: 2.6.0
- Add OpenSearch Dashboards: 2.6.0
- Add Wazuh 4.4.1, 4.4.2, 4.4.3 and 4.4.4

* Update test snapshost

* Update API data to 4.5

* Update branch patterns for GH Actions

---------

Co-authored-by: Antonio <[email protected]>

* Fix API reference links in endpoints.json

* Merge 4.4 into 4.5.0 (#5669)

Merge v4.4.5-2.6.0 into 4.4 (#5665)

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

* Update changelog

* Update opensearch_dashboards.json

* Update package.json

* Update readme

* Update tag script

* Change tag.py version value

* Empty tag suffix

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

Add -rc1 tag suffix

* Fix incompatible version of triple-beam subdependency (#5652)

fix: add yarn.lock file and set version of triple-beam in yarn.lock

* Update unit-test.yml (#5655)

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

* Update revision of v4.4.5 in the Changelog

* Bump v4.4.5-2.6.0-rc2

---------

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

* Update release utilities (#5677)

* feat: update release utilities to current process

- Add new bump script
- Port tag.py to NodeJS and allow receive parameters from stdin
- Add RELEASING.md file with information about the release process
  related to the usage of the included scripts
- Add release:bump and release:tag package scripts to run these process

* remove: remove scripts/tag.py and reference in the Makefile

* fix: fix help text in bump and tag scripts

* remove: remove stage and commit properties from the package.json

* remove: test related to stage property in the package.json

* fix: check if there are changes to commit in the tag script

- Code formatting
- Fix variable name

---------

Co-authored-by: Álex Ruiz <[email protected]>
Co-authored-by: Ian Yenien Serrano <[email protected]>
Co-authored-by: Nicolas Agustin Guevara Pihen <[email protected]>
Co-authored-by: Federico Rodriguez <[email protected]>

* Fix API request to get the manager labels and broken documentation link (#5687)

* fix: broken documentation link

* changelog: add pull request entry

* fix: changed API endpoint to get the manager labels and managing the data to render

* changelog: add pull request entry

* changelog: fix entry

* changelog: fix entry

* Add response to imposter

---------

Co-authored-by: yenienserrano <[email protected]>

* Fix server side query in pdf report filter (#5714)

* Add server side query

* Fix reporting unit test

* Remove duplicated allowed agents filter and gdpr-pci-tsc filters

* Code cleaning

* Added Changelog

* Fix deep clone filters

* Fix server side requirement query

* Fix rootkit filter

* Update API data for 4.5.1 (#5758)

update: API data

* Fix outdated year in PDF report footer (#5766)

* Fix year in PDF footer

* Modify changelog

* Change tests to match the new value

* Change md5 in reporting test

* Change md5 in reporting test

* Revert accidental change

* Revert accidental change

* Fix md5 in test

* Change md5 in test

* Change md5 in test

* Merge 4.5 into 4.5.1 (#5773)

* Update test snapshots for 4.5 (#5601)

* Add missing supported versions to the Docker environments (#5584)

feat(environments): add latest versions to Docker environments

- Add Kibana versions: 7.17.7, 7.17.8, 7.17.9 and 7.17.10
- Add OpenSearch: 2.6.0
- Add OpenSearch Dashboards: 2.6.0
- Add Wazuh 4.4.1, 4.4.2, 4.4.3 and 4.4.4

* Update test snapshost

* Update API data to 4.5

* Update branch patterns for GH Actions

---------

Co-authored-by: Antonio <[email protected]>

* Fix API reference links in endpoints.json

* Merge 4.4 into 4.5.0 (#5669)

Merge v4.4.5-2.6.0 into 4.4 (#5665)

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

* Update changelog

* Update opensearch_dashboards.json

* Update package.json

* Update readme

* Update tag script

* Change tag.py version value

* Empty tag suffix

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

Add -rc1 tag suffix

* Fix incompatible version of triple-beam subdependency (#5652)

fix: add yarn.lock file and set version of triple-beam in yarn.lock

* Update unit-test.yml (#5655)

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

* Update revision of v4.4.5 in the Changelog

* Bump v4.4.5-2.6.0-rc2

---------

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

* Update release utilities (#5677)

* feat: update release utilities to current process

- Add new bump script
- Port tag.py to NodeJS and allow receive parameters from stdin
- Add RELEASING.md file with information about the release process
  related to the usage of the included scripts
- Add release:bump and release:tag package scripts to run these process

* remove: remove scripts/tag.py and reference in the Makefile

* fix: fix help text in bump and tag scripts

* remove: remove stage and commit properties from the package.json

* remove: test related to stage property in the package.json

* fix: check if there are changes to commit in the tag script

- Code formatting
- Fix variable name

* Bump v4.5.0-2.6.0-alpha1

* Update README.md

---------

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

---------

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

* Remove files

* Remove console.log

---------

Co-authored-by: Julio César Biset <[email protected]>
Co-authored-by: Antonio <[email protected]>
Co-authored-by: Álex Ruiz <[email protected]>
Co-authored-by: Nicolas Agustin Guevara Pihen <[email protected]>
Co-authored-by: Antonio David Gutiérrez <[email protected]>
Co-authored-by: Federico Rodriguez <[email protected]>

* Update api_info imposter

---------

Co-authored-by: Julio César Biset <[email protected]>
Co-authored-by: Antonio <[email protected]>
Co-authored-by: Álex Ruiz <[email protected]>
Co-authored-by: Nicolas Agustin Guevara Pihen <[email protected]>
Co-authored-by: Antonio David Gutiérrez <[email protected]>
Co-authored-by: Federico Rodriguez <[email protected]>
Co-authored-by: Chantal Belén kelm <[email protected]>
Co-authored-by: Maximiliano Ibarra <[email protected]>
Co-authored-by: Maximiliano Ibarra <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Update the release utilities to the current processes
3 participants