-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
Removing Incorrect heading of breaking changes in 2.1.0 release notes #3817
Removing Incorrect heading of breaking changes in 2.1.0 release notes #3817
Conversation
…as reverted Signed-off-by: Rishikesh1159 <[email protected]>
@@ -67,7 +63,6 @@ | |||
* Removing unused method from TransportSearchAction (#3437) ([#3445](https://github.com/opensearch-project/opensearch/pull/3445)) | |||
* Fix Lucene-snapshots repo for jdk 17. (#3396) ([#3404](https://github.com/opensearch-project/opensearch/pull/3404)) | |||
* Temporary adding Apache Lucene repositories for snapshots (#3042) ([#3047](https://github.com/opensearch-project/opensearch/pull/3047)) | |||
* [Remove] MainResponse version override cluster setting (#3031) ([#3032](https://github.com/opensearch-project/opensearch/pull/3032)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Comparing to previous minor relesae (2.0) this change was missing and added back in patch 2.0.1. So, if we are basing changes on 2.0, we should include it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#3530 is missing here then that reverts this removal.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
### Breaking Changes in 2.1.0 | ||
|
||
#### Remove Mapping types | ||
### Remove Mapping types |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should not be a category but rather under some category. More details: https://github.com/opensearch-project/opensearch-plugins/blob/main/RELEASE_NOTES.md#categories
same applies to all below major headings (upgrades, deprecations)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Got it. Let me change their categories
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If this is not a breaking change can we please put it to either bug fixes or enhancements?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes that makes sense
Gradle Check (Jenkins) Run Completed with:
|
Codecov Report
@@ Coverage Diff @@
## main #3817 +/- ##
=======================================
Coverage ? 70.55%
Complexity ? 56669
=======================================
Files ? 4557
Lines ? 272681
Branches ? 40038
=======================================
Hits ? 192393
Misses ? 64004
Partials ? 16284 Continue to review full report at Codecov.
|
Signed-off-by: Rishikesh1159 <[email protected]>
Signed-off-by: Rishikesh1159 <[email protected]>
Gradle Check (Jenkins) Run Completed with:
|
Gradle Check (Jenkins) Run Completed with:
|
Gradle Check (Jenkins) Run Completed with:
|
Gradle Check (Jenkins) Run Completed with:
|
Gradle Check (Jenkins) Run Completed with:
|
The backport to
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-2.1 2.1
# Navigate to the new working tree
cd .worktrees/backport-2.1
# Create a new branch
git switch --create backport/backport-3817-to-2.1
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick -x --mainline 1 23004bdbb0e874e1679f30b89146797caa6ba47a
# Push it to GitHub
git push --set-upstream origin backport/backport-3817-to-2.1
# Go back to the original working tree
cd ../..
# Delete the working tree
git worktree remove .worktrees/backport-2.1 Then, create a pull request where the |
…#3817) * Removing Incorrect heading of release notes. Removing unnecessary categories and move commits to other categories Signed-off-by: Rishikesh1159 <[email protected]> (cherry picked from commit 23004bd)
…#3817) (#3833) * Removing Incorrect heading of release notes. Removing unnecessary categories and move commits to other categories Signed-off-by: Rishikesh1159 <[email protected]> (cherry picked from commit 23004bd) Co-authored-by: Rishikesh Pasham <[email protected]>
Signed-off-by: Rishikesh1159 [email protected]
Description
This PR removes incorrect heading of breaking change in 3773, we incorrectly put one of the heading as Breaking changes. Breaking changes should be released only in major versions. This PR also removes one PR from 2.1.0 release notes which was reverted.
[Describe what this change achieves]
Issues Resolved
#3773
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.