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

Compatibility with OpenSearch 2.18.0 #12

Closed
1 task done
AlexRuiz7 opened this issue Nov 12, 2024 · 1 comment · Fixed by #13
Closed
1 task done

Compatibility with OpenSearch 2.18.0 #12

AlexRuiz7 opened this issue Nov 12, 2024 · 1 comment · Fixed by #13
Assignees
Labels
level/task Task issue request/operational Operational requests type/maintenance Maintenance issue

Comments

@AlexRuiz7
Copy link
Member

AlexRuiz7 commented Nov 12, 2024

Description

We need to ensure the compatibility with the next version of OpenSearch v2.18.0.
This update is still being discussed, but we need to be aware of potential issues.

For that, we need to:

  • Migrate our changes on top of OpenSearch's reporting plugin v2.18.0.0 tag. Follow the Maintainers Guide.

Issues

  • List here the detected issues
@AlexRuiz7 AlexRuiz7 added level/task Task issue request/operational Operational requests type/maintenance Maintenance issue labels Nov 12, 2024
@AlexRuiz7 AlexRuiz7 self-assigned this Nov 12, 2024
@wazuhci wazuhci moved this to Backlog in Release 5.0.0 Nov 12, 2024
@AlexRuiz7 AlexRuiz7 linked a pull request Nov 15, 2024 that will close this issue
6 tasks
@AlexRuiz7
Copy link
Member Author

#!/bin/bash

# master~HEAD points to b41f2b0607b9d26fb732030d656e505d1e991e1f

export base="2.17.1.0"
export os_tag="2.18.0.0"
export from_branch="master"
export to_branch="${from_branch}-${os_tag}"
export pr_branch="migrate-${from_branch}-to-${os_tag}"

# Download latest changes from remotes
git fetch --all --tags

# Create temporal branches off the OpenSearch’s tag
git branch $to_branch refs/tags/$os_tag
git branch $pr_branch refs/tags/$os_tag

# Push the new branches to origin
git push -u origin $to_branch
git push -u origin $pr_branch

# ======= #

# Move to the working branch
git checkout $pr_branch

# Migrate the commits
git cherry-pick refs/tags/$base..$from_branch

@wazuhci wazuhci moved this from Backlog to Pending review in Release 5.0.0 Nov 15, 2024
@wazuhci wazuhci moved this from Pending review to Done in Release 5.0.0 Nov 21, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
level/task Task issue request/operational Operational requests type/maintenance Maintenance issue
Projects
Status: Done
Development

Successfully merging a pull request may close this issue.

1 participant