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

Add release notes for v2.6.0 #6443

Merged
merged 2 commits into from
Feb 22, 2023
Merged

Conversation

kartg
Copy link
Member

@kartg kartg commented Feb 22, 2023

Description

This change adds release notes for the v2.6.0 release and cleans up the CHANGELOG to only capture unreleased changes. The change also includes minor language updates.

Issues Resolved

relates #6360

Check List

  • New functionality includes testing.
    • All tests pass
  • New functionality has been documented.
    • New functionality has javadoc added
  • Commits are signed per the DCO using --signoff
  • Commit changes are listed out in CHANGELOG.md file (See: Changelog)

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.

This change also includes cleanup of the CHANGELOG file to only capture unreleased changes.

Signed-off-by: Kartik Ganesh <gkart@amazon.com>
Signed-off-by: Kartik Ganesh <gkart@amazon.com>
@kartg kartg force-pushed the 2.6-release-notes branch from fe32a77 to 406e307 Compare February 22, 2023 19:06
@github-actions
Copy link
Contributor

Gradle Check (Jenkins) Run Completed with:

  • RESULT: UNSTABLE ❕
  • TEST FAILURES:
      1 org.opensearch.cluster.routing.allocation.decider.DiskThresholdDeciderIT.testIndexCreateBlockIsRemovedWhenAnyNodesNotExceedHighWatermarkWithAutoReleaseEnabled

@github-actions
Copy link
Contributor

Gradle Check (Jenkins) Run Completed with:

@kartg
Copy link
Member Author

kartg commented Feb 22, 2023

REPRODUCE WITH: ./gradlew ':server:internalClusterTest' --tests "org.opensearch.cluster.shards.ClusterShardLimitIT.testCreateIndexWithMaxClusterShardSetting" -Dtests.seed=AE874172A4ACFE71 -Dtests.security.manager=true -Dtests.jvm.argline="-XX:TieredStopAtLevel=1 -XX:ReservedCodeCacheSize=64m" -Dtests.locale=it-CH -Dtests.timezone=Asia/Famagusta -Druntime.java=19

org.opensearch.cluster.shards.ClusterShardLimitIT > testCreateIndexWithMaxClusterShardSetting FAILED
    java.lang.AssertionError: MaxShardPerCluster 2 should be greater than or equal to MaxShardPerNode 1000
        at __randomizedtesting.SeedInfo.seed([AE874172A4ACFE71:E461B0CC09F238C9]:0)
        at org.junit.Assert.fail(Assert.java:89)
        at org.opensearch.cluster.shards.ClusterShardLimitIT.setMaxShardLimit(ClusterShardLimitIT.java:750)
        at org.opensearch.cluster.shards.ClusterShardLimitIT.testCreateIndexWithMaxClusterShardSetting(ClusterShardLimitIT.java:259)

Flaky test failure - #6287

Will refire

@github-actions
Copy link
Contributor

Gradle Check (Jenkins) Run Completed with:

  • RESULT: UNSTABLE ❕
  • TEST FAILURES:
      1 org.opensearch.search.SearchWeightedRoutingIT.testSearchAggregationWithNetworkDisruption_FailOpenEnabled

@kartg kartg merged commit 01466a6 into opensearch-project:main Feb 22, 2023
@codecov-commenter
Copy link

Codecov Report

Merging #6443 (406e307) into main (8865d58) will decrease coverage by 0.09%.
The diff coverage is n/a.

📣 This organization is not using Codecov’s GitHub App Integration. We recommend you install it so Codecov can continue to function properly for your repositories. Learn more

@@             Coverage Diff              @@
##               main    #6443      +/-   ##
============================================
- Coverage     70.69%   70.60%   -0.09%     
+ Complexity    59016    58963      -53     
============================================
  Files          4800     4800              
  Lines        282712   282712              
  Branches      40763    40763              
============================================
- Hits         199855   199602     -253     
- Misses        66473    66687     +214     
- Partials      16384    16423      +39     
Impacted Files Coverage Δ
.../java/org/opensearch/node/NodeClosedException.java 50.00% <0.00%> (-50.00%) ⬇️
...ava/org/opensearch/action/NoSuchNodeException.java 0.00% <0.00%> (-50.00%) ⬇️
...a/org/opensearch/tasks/TaskCancelledException.java 50.00% <0.00%> (-50.00%) ⬇️
.../index/shard/IndexShardNotRecoveringException.java 50.00% <0.00%> (-50.00%) ⬇️
.../java/org/opensearch/search/dfs/AggregatedDfs.java 54.83% <0.00%> (-41.94%) ⬇️
...cluster/coordination/PublishClusterStateStats.java 33.33% <0.00%> (-37.51%) ⬇️
...arch/search/aggregations/pipeline/SimpleModel.java 38.46% <0.00%> (-30.77%) ⬇️
...tions/InternalSingleBucketAggregationTestCase.java 59.74% <0.00%> (-28.58%) ⬇️
...opensearch/index/reindex/BulkByScrollResponse.java 48.38% <0.00%> (-28.23%) ⬇️
...rc/main/java/org/opensearch/ingest/IngestInfo.java 51.72% <0.00%> (-27.59%) ⬇️
... and 480 more

Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here.

@kartg kartg added the backport 2.x Backport to 2.x branch label Feb 22, 2023
@opensearch-trigger-bot
Copy link
Contributor

The backport to 2.x failed:

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

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.x 2.x
# Navigate to the new working tree
pushd ../.worktrees/backport-2.x
# Create a new branch
git switch --create backport/backport-6443-to-2.x
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick -x --mainline 1 01466a6a04e280267f013aeb14dff1f20dc7a77a
# Push it to GitHub
git push --set-upstream origin backport/backport-6443-to-2.x
# Go back to the original working tree
popd
# Delete the working tree
git worktree remove ../.worktrees/backport-2.x

Then, create a pull request where the base branch is 2.x and the compare/head branch is backport/backport-6443-to-2.x.

kartg added a commit to kartg/OpenSearch that referenced this pull request Feb 22, 2023
* Add release notes for v2.6.0

This change also includes cleanup of the CHANGELOG file to only capture unreleased changes.

Signed-off-by: Kartik Ganesh <gkart@amazon.com>

* Minor language updates in v2.6.0 release notes and Changelog

Signed-off-by: Kartik Ganesh <gkart@amazon.com>

---------

Signed-off-by: Kartik Ganesh <gkart@amazon.com>
(cherry picked from commit 01466a6)
kartg added a commit that referenced this pull request Feb 22, 2023
* Add release notes for v2.6.0

This change also includes cleanup of the CHANGELOG file to only capture unreleased changes.

Signed-off-by: Kartik Ganesh <gkart@amazon.com>

* Minor language updates in v2.6.0 release notes and Changelog

Signed-off-by: Kartik Ganesh <gkart@amazon.com>

---------

Signed-off-by: Kartik Ganesh <gkart@amazon.com>
(cherry picked from commit 01466a6)
kartg added a commit to kartg/OpenSearch that referenced this pull request Feb 22, 2023
…oject#6447)

* Add release notes for v2.6.0

This change also includes cleanup of the CHANGELOG file to only capture unreleased changes.

Signed-off-by: Kartik Ganesh <gkart@amazon.com>

* Minor language updates in v2.6.0 release notes and Changelog

Signed-off-by: Kartik Ganesh <gkart@amazon.com>

---------

Signed-off-by: Kartik Ganesh <gkart@amazon.com>
(cherry picked from commit 01466a6)
(cherry picked from commit 03a3129)
kartg added a commit to kartg/OpenSearch that referenced this pull request Feb 22, 2023
…oject#6447)

* Add release notes for v2.6.0

This change also includes cleanup of the CHANGELOG file to only capture unreleased changes.

Signed-off-by: Kartik Ganesh <gkart@amazon.com>

* Minor language updates in v2.6.0 release notes and Changelog

Signed-off-by: Kartik Ganesh <gkart@amazon.com>

---------

Signed-off-by: Kartik Ganesh <gkart@amazon.com>
(cherry picked from commit 01466a6)
(cherry picked from commit 03a3129)
kartg added a commit that referenced this pull request Feb 22, 2023
* Add release notes for v2.6.0 (#6443) (#6447)

* Add release notes for v2.6.0

This change also includes cleanup of the CHANGELOG file to only capture unreleased changes.

Signed-off-by: Kartik Ganesh <gkart@amazon.com>

* Minor language updates in v2.6.0 release notes and Changelog

Signed-off-by: Kartik Ganesh <gkart@amazon.com>

---------

Signed-off-by: Kartik Ganesh <gkart@amazon.com>
(cherry picked from commit 01466a6)
(cherry picked from commit 03a3129)

* Correct title in changelog from 2.x to 2.6

Signed-off-by: Kartik Ganesh <gkart@amazon.com>

---------

Signed-off-by: Kartik Ganesh <gkart@amazon.com>
Poojita-Raj added a commit to Poojita-Raj/OpenSearch that referenced this pull request Mar 7, 2023
Poojita-Raj added a commit to Poojita-Raj/OpenSearch that referenced this pull request Mar 8, 2023
@kartg kartg deleted the 2.6-release-notes branch June 20, 2023 19:59
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
backport 2.x Backport to 2.x branch
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants