-
Notifications
You must be signed in to change notification settings - Fork 141
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 to Gradle 8.4 #2433
Update to Gradle 8.4 #2433
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #2433 +/- ##
=========================================
Coverage 95.39% 95.39%
Complexity 4990 4990
=========================================
Files 478 478
Lines 13910 13910
Branches 932 932
=========================================
Hits 13270 13270
Misses 618 618
Partials 22 22
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
34c65da
to
8aac713
Compare
8661a5d
to
02b26dd
Compare
Signed-off-by: Andriy Redko <andriy.redko@aiven.io>
Folks, anything holding off the merge here? Thank you. |
I see another PR #2470. Are we targeting 8.4 or 8.5? |
I mean this change is sitting 2 months in review, we could move to 8.5 after (but should be nobrainer) |
@dai-chen would you be able to re trigger CI checks? |
somehow I couldn't trigger CI again. I just created a draft PR by cherry-picking the commit. We can follow the latest CI results here: #2472 . Once that is succesfull will close the draft and merge this PR. |
same here. cannot rerun the failed CI... |
Thanks @dai-chen The maintainers should be able to rerun the jobs , I am wondering why it is not the case for this repository ... |
There are build failures here: #2472 |
Sadly, the plugin has issues with stability of checks, there is not a single pull request that has checks passed [1], the same applies to main branch [2] commits :( [1] https://github.com/opensearch-project/sql/pulls |
Pretty much all the bugs seems to be unrelated to this PR. Thanks @reta . I think this upgrade is not required for 2.x |
The backport to
To backport manually, run these commands in your terminal: # Navigate to the root of your repository
cd $(git rev-parse --show-toplevel)
# Fetch latest updates from GitHub
git fetch
# Create a new working tree
git worktree add ../.worktrees/sql/backport-2.x 2.x
# Navigate to the new working tree
pushd ../.worktrees/sql/backport-2.x
# Create a new branch
git switch --create backport/backport-2433-to-2.x
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick -x --mainline 1 6f30aeab18a010da159bfe4e3a389885aea6447b
# Push it to GitHub
git push --set-upstream origin backport/backport-2433-to-2.x
# Go back to the original working tree
popd
# Delete the working tree
git worktree remove ../.worktrees/sql/backport-2.x Then, create a pull request where the |
Signed-off-by: Andriy Redko <andriy.redko@aiven.io> (cherry picked from commit 6f30aea)
Signed-off-by: Andriy Redko <andriy.redko@aiven.io> (cherry picked from commit 6f30aea) Signed-off-by: Andriy Redko <andriy.redko@aiven.io>
Signed-off-by: Andriy Redko <andriy.redko@aiven.io> (cherry picked from commit 6f30aea) Signed-off-by: Andriy Redko <andriy.redko@aiven.io>
Description
Update to Gradle 8.4
Issues Resolved
Part of opensearch-project/OpenSearch#10334
Check List
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
For more information on following Developer Certificate of Origin and signing off your commits, please check here.