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

[RELEASE] Release version 2.17.0 #4908

Closed
60 of 62 tasks
github-actions bot opened this issue Aug 3, 2024 · 33 comments
Closed
60 of 62 tasks

[RELEASE] Release version 2.17.0 #4908

github-actions bot opened this issue Aug 3, 2024 · 33 comments
Assignees

Comments

@github-actions
Copy link
Contributor

github-actions bot commented Aug 3, 2024

Release OpenSearch and OpenSearch Dashboards 2.17.0

I noticed that a manifest was automatically created in manifests/2.17.0. Please follow the following checklist to make a release.

How to use this issue

This Release Issue

This issue captures the state of the OpenSearch release, its assignee (Release Manager) is responsible for driving the release. Please contact them or @mention them on this issue for help. There are linked issues on components of the release where individual components can be tracked. For more information check the the Release Process OpenSearch Guide.

Please refer to the following link for the release version dates: Release Schedule and Maintenance Policy.

Entrance Criteria

Criteria Status Description  Comments
Each component release issue has an assigned owner 🟢
Documentation draft PRs are up and in tech review for all component changes 🟢
Sanity testing is done for all components 🟢
Code coverage has not decreased (all new code has tests)
Release notes are ready and available for all components 🟢
Roadmap is up-to-date (information is available to create release highlights) 🟢
Release ticket is cut, and there's a forum post announcing the start of the window 🟢
Any necessary security reviews are complete 🟢

OpenSearch 2.17.0 exit criteria status:

Criteria Status Description  Comments
Performance tests are run, results are posted to the release ticket and there no unexpected regressions 🟢
No unpatched vulnerabilities of medium or higher severity that have been publicly known for more than 60 days 🟢
Documentation has been fully reviewed and signed off by the documentation community. 🟢
All integration tests are passing 🟢
Release blog is ready 🟢

OpenSearch-Dashboards 2.17.0 exit criteria status:

Criteria Status Description  Comments
Documentation has been fully reviewed and signed off by the documentation community 🟢
No unpatched vulnerabilities of medium or higher severity that have been publicly known for more than 60 days 🟢
All integration tests are passing 🟢
Release blog is ready 🟢

Preparation

Campaigns

Release Branch and Version Increment - Ends Sept 03, 2024

Feature Freeze - Ends Sept 03, 2024

  • OpenSearch / OpenSearch-Dashboards core and components teams finalize their features.

Code Complete - Ends Sept 04, 2024 Sept 05, 2024

Release Candidate Creation and Testing - Starts Sept 04, 2024 at 4PM PDT

Performance testing validation - Ends Sept 11, 2024

  • Post the benchmark-tests
  • Longevity tests do not show any issues.

Pre Release - _Ends _Sept 16, 2024

Release - Ends Sept 17, 2024

Release Checklist.


Release Checklist

Pre-Release activities

  • Promote Repos.
      • OS
      • OSD
  • Promote Artifacts.
      • Windows
      • Linux Debian
      • Linux RPM
      • Linux TAR
  • Consolidated Release Notes.

Release activities

  • Docker Promotion.
  • Release Validation part 1.
      • OpenSearch and OpenSearch Dashboard Validation.
      • Validate the native plugin installation.
  • Merge consolidated release notes PR.
  • Website and Documentation Changes.
      • Merge staging website PR.
      • Promote the website changes to prod.
      • Add website alert.
  • Release Validation part 2.
      • Validate the artifact download URL's and signatures.
  • Release Validation part 3.
      • Trigger the validation build (Search for Completed validation for <> in the logs).
  • Maven Promotion.
  • Publish blog posts.
  • Advertise on Social Media.
  • Post on public slack and Github Release issue.


Post Release

Components

Replace with links to all component tracking issues.

Component Issues tagged with 2.17.0
opensearch-project/OpenSearch#15095
opensearch-project/common-utils#707
opensearch-project/job-scheduler#662
opensearch-project/security#4619
opensearch-project/k-NN#1928
opensearch-project/geospatial#672
opensearch-project/cross-cluster-replication#1426
opensearch-project/ml-commons#2802
opensearch-project/neural-search#858
opensearch-project/notifications#940
opensearch-project/observability#1857
opensearch-project/reporting#1026
opensearch-project/sql#2895
opensearch-project/asynchronous-search#603
opensearch-project/anomaly-detection#1273
opensearch-project/alerting#1636
opensearch-project/security-analytics#1216
opensearch-project/index-management#1224
opensearch-project/performance-analyzer#705
opensearch-project/performance-analyzer-rca#573
opensearch-project/custom-codecs#181
opensearch-project/flow-framework#820
opensearch-project/skills#382

OpenSearch Dashboards

Component Issues tagged with 2.17.0
opensearch-project/OpenSearch-Dashboards#7617
opensearch-project/opensearch-dashboards-functional-test#1499
opensearch-project/dashboards-observability#2042
opensearch-project/dashboards-reporting#399
opensearch-project/dashboards-visualizations#384
opensearch-project/dashboards-query-workbench#372
opensearch-project/dashboards-maps#648
opensearch-project/anomaly-detection-dashboards-plugin#827
opensearch-project/ml-commons-dashboards#350
opensearch-project/index-management-dashboards-plugin#1104
opensearch-project/dashboards-notifications#232
opensearch-project/alerting-dashboards-plugin#1042
opensearch-project/security-analytics-dashboards-plugin#1106
opensearch-project/security-dashboards-plugin#2077
opensearch-project/dashboards-search-relevance#422
opensearch-project/dashboards-assistant#251
Legend

Symbol Meaning
🟢 On track with overall release
🟡 Missed last milestone
🔴 Missed multiple milestones

@github-actions github-actions bot added release untriaged Issues that have not yet been triaged v2.17.0 labels Aug 3, 2024
This was referenced Aug 3, 2024
@gaiksaya
Copy link
Member

gaiksaya commented Sep 11, 2024

RC 4 did not meet exit criteria. See RC 5 details

RC4 details

## RC 4 OpenSearch 10288 / OpenSearch Dashboards 7935 is ready for your test.

OpenSearch - Build 10288
OpenSearch Dashboards - Build 7935

  • Use the following Docker-Compose to setup a cluster

    docker-compose.yml

      
    version: '3'
    services:
      opensearch-node1:
        image: opensearchstaging/opensearch:2.17.0.10288
        container_name: opensearch-node1
        environment:
          - cluster.name=opensearch-cluster
          - node.name=opensearch-node1
          - discovery.seed_hosts=opensearch-node1,opensearch-node2
          - cluster.initial_cluster_manager_nodes=opensearch-node1,opensearch-node2
          - bootstrap.memory_lock=true # along with the memlock settings below, disables swapping
          - OPENSEARCH_INITIAL_ADMIN_PASSWORD=myStrongPassword123!
        ulimits:
          memlock:
            soft: -1
            hard: -1
          nofile:
            soft: 65536 # maximum number of open files for the OpenSearch user, set to at least 65536 on modern systems
            hard: 65536
        volumes:
          - opensearch-data1:/usr/share/opensearch/data
        ports:
          - 9200:9200
          - 9600:9600 # required for Performance Analyzer
        networks:
          - opensearch-net
      opensearch-node2:
        image: opensearchstaging/opensearch:2.17.0.10288
        container_name: opensearch-node2
        environment:
          - cluster.name=opensearch-cluster
          - node.name=opensearch-node2
          - discovery.seed_hosts=opensearch-node1,opensearch-node2
          - cluster.initial_cluster_manager_nodes=opensearch-node1,opensearch-node2
          - bootstrap.memory_lock=true
          - OPENSEARCH_INITIAL_ADMIN_PASSWORD=myStrongPassword123!
        ulimits:
          memlock:
            soft: -1
            hard: -1
          nofile:
            soft: 65536
            hard: 65536
        volumes:
          - opensearch-data2:/usr/share/opensearch/data
        networks:
          - opensearch-net
      opensearch-dashboards:
        image: opensearchstaging/opensearch-dashboards:2.17.0.7935
        container_name: opensearch-dashboards
        ports:
          - 5601:5601
        expose:
          - "5601"
        environment:
          OPENSEARCH_HOSTS: '["https://opensearch-node1:9200","https://opensearch-node2:9200"]'
        networks:
          - opensearch-net
    volumes:
      opensearch-data1:
      opensearch-data2:
    

    networks:
    opensearch-net:

    • Download the above docker-compose.yml on your machine.
    • Get latest image versions docker-compose pull.
    • Start the cluster docker-compose up.
  • OpenSearch docker 2.17.0.10288

    • Start without security
      • Docker command docker pull opensearchstaging/opensearch:2.17.0.10288 && docker run -it -p 9200:9200 -e "discovery.type=single-node" -e "DISABLE_SECURITY_PLUGIN=true" opensearchstaging/opensearch:2.17.0.10288
      • Connect command curl http://localhost:9200/
    • Start with security
      • Docker command
      docker pull opensearchstaging/opensearch:2.17.0.10288 && docker run -it -p 9200:9200 -e "discovery.type=single-node" -e "OPENSEARCH_INITIAL_ADMIN_PASSWORD=myStrongPassword123!" opensearchstaging/opensearch:2.17.0.10288
      
      • Connect command curl --insecure 'https://admin:myStrongPassword123!@localhost:9200/'
  • OpenSearch-Dashboards docker 2.17.0.7935

    • Start without security
      • Docker command docker pull opensearchstaging/opensearch-dashboards:2.17.0.7935 && docker run -it --network="host" -e "DISABLE_SECURITY_DASHBOARDS_PLUGIN=true" opensearchstaging/opensearch-dashboards:2.17.0.7935
      • URL http://localhost:5601/
    • Start with security
      • Docker command docker pull opensearchstaging/opensearch-dashboards:2.17.0.7935 && docker run -it --network="host" opensearchstaging/opensearch-dashboards:2.17.0.7935
      • URL http://localhost:5601/
  • Use TARs to deploy OpenSearch Manually

Check how to install opensearch and dashboards on different platforms

Integration Test Results

Thank you

@jainankitk
Copy link

I think our best bet for the future is to cut the release branch on core as the "freeze" trigger. Maybe core should freeze a couple of days before plugins?

@msfroh - I was discussing something very similar with @andrross offline. IMO, RC1 generation flow should cut the release branch for core and plugins, automatically serving as the "freeze" trigger. After that we can bump the versions for 2.x and main branches to avoid breaking build before the code freeze. But yeah, let us discuss further during the retrospective!

@rishabh6788
Copy link
Collaborator

rishabh6788 commented Sep 12, 2024

Performance Results for 2.17

No significant performance callouts for 2.17 release compared to 2.16.
No notable regression or improvement detected in 2.17 compared to 2.16.

HTTP_LOGS

http_logs_x64_compar_2024-09-12T00_44_54

NYC_TAXIS

nyc_taxis_x64_compar_2024-09-12T00_44_44

@gaiksaya
Copy link
Member

gaiksaya commented Sep 12, 2024

RC5 did not meet the bar for release candidate. See RC6 details below

RC 5 details

RC 5 OpenSearch 10289 / OpenSearch Dashboards 7936 is ready for your test.

OpenSearch - Build 10289
OpenSearch Dashboards - Build 7936

  • Use the following Docker-Compose to setup a cluster

    docker-compose.yml

      
    version: '3'
    services:
      opensearch-node1:
        image: opensearchstaging/opensearch:2.17.0.10289
        container_name: opensearch-node1
        environment:
          - cluster.name=opensearch-cluster
          - node.name=opensearch-node1
          - discovery.seed_hosts=opensearch-node1,opensearch-node2
          - cluster.initial_cluster_manager_nodes=opensearch-node1,opensearch-node2
          - bootstrap.memory_lock=true # along with the memlock settings below, disables swapping
          - OPENSEARCH_INITIAL_ADMIN_PASSWORD=myStrongPassword123!
        ulimits:
          memlock:
            soft: -1
            hard: -1
          nofile:
            soft: 65536 # maximum number of open files for the OpenSearch user, set to at least 65536 on modern systems
            hard: 65536
        volumes:
          - opensearch-data1:/usr/share/opensearch/data
        ports:
          - 9200:9200
          - 9600:9600 # required for Performance Analyzer
        networks:
          - opensearch-net
      opensearch-node2:
        image: opensearchstaging/opensearch:2.17.0.10289
        container_name: opensearch-node2
        environment:
          - cluster.name=opensearch-cluster
          - node.name=opensearch-node2
          - discovery.seed_hosts=opensearch-node1,opensearch-node2
          - cluster.initial_cluster_manager_nodes=opensearch-node1,opensearch-node2
          - bootstrap.memory_lock=true
          - OPENSEARCH_INITIAL_ADMIN_PASSWORD=myStrongPassword123!
        ulimits:
          memlock:
            soft: -1
            hard: -1
          nofile:
            soft: 65536
            hard: 65536
        volumes:
          - opensearch-data2:/usr/share/opensearch/data
        networks:
          - opensearch-net
      opensearch-dashboards:
        image: opensearchstaging/opensearch-dashboards:2.17.0.7936
        container_name: opensearch-dashboards
        ports:
          - 5601:5601
        expose:
          - "5601"
        environment:
          OPENSEARCH_HOSTS: '["https://opensearch-node1:9200","https://opensearch-node2:9200"]'
        networks:
          - opensearch-net
    volumes:
      opensearch-data1:
      opensearch-data2:
    

    networks:
    opensearch-net:

    • Download the above docker-compose.yml on your machine.
    • Get latest image versions docker-compose pull.
    • Start the cluster docker-compose up.
  • OpenSearch docker 2.17.0.10289

    • Start without security
      • Docker command docker pull opensearchstaging/opensearch:2.17.0.10289 && docker run -it -p 9200:9200 -e "discovery.type=single-node" -e "DISABLE_SECURITY_PLUGIN=true" opensearchstaging/opensearch:2.17.0.10289
      • Connect command curl http://localhost:9200/
    • Start with security
      • Docker command
      docker pull opensearchstaging/opensearch:2.17.0.10289 && docker run -it -p 9200:9200 -e "discovery.type=single-node" -e "OPENSEARCH_INITIAL_ADMIN_PASSWORD=myStrongPassword123!" opensearchstaging/opensearch:2.17.0.10289
      
      • Connect command curl --insecure 'https://admin:myStrongPassword123!@localhost:9200/'
  • OpenSearch-Dashboards docker 2.17.0.7936

    • Start without security
      • Docker command docker pull opensearchstaging/opensearch-dashboards:2.17.0.7936 && docker run -it --network="host" -e "DISABLE_SECURITY_DASHBOARDS_PLUGIN=true" opensearchstaging/opensearch-dashboards:2.17.0.7936
      • URL http://localhost:5601/
    • Start with security
      • Docker command docker pull opensearchstaging/opensearch-dashboards:2.17.0.7936 && docker run -it --network="host" opensearchstaging/opensearch-dashboards:2.17.0.7936
      • URL http://localhost:5601/
  • Use TARs to deploy OpenSearch Manually

Check how to install opensearch and dashboards on different platforms

Integration Test Results

Thank you

@gaiksaya
Copy link
Member

RC 6 OpenSearch 10292 / OpenSearch Dashboards 7942 is ready for your test.

OpenSearch - Build 10292
OpenSearch Dashboards - Build 7942

  • Use the following Docker-Compose to setup a cluster

    docker-compose.yml

      
    version: '3'
    services:
      opensearch-node1:
        image: opensearchstaging/opensearch:2.17.0.10292
        container_name: opensearch-node1
        environment:
          - cluster.name=opensearch-cluster
          - node.name=opensearch-node1
          - discovery.seed_hosts=opensearch-node1,opensearch-node2
          - cluster.initial_cluster_manager_nodes=opensearch-node1,opensearch-node2
          - bootstrap.memory_lock=true # along with the memlock settings below, disables swapping
          - OPENSEARCH_INITIAL_ADMIN_PASSWORD=myStrongPassword123!
        ulimits:
          memlock:
            soft: -1
            hard: -1
          nofile:
            soft: 65536 # maximum number of open files for the OpenSearch user, set to at least 65536 on modern systems
            hard: 65536
        volumes:
          - opensearch-data1:/usr/share/opensearch/data
        ports:
          - 9200:9200
          - 9600:9600 # required for Performance Analyzer
        networks:
          - opensearch-net
      opensearch-node2:
        image: opensearchstaging/opensearch:2.17.0.10292
        container_name: opensearch-node2
        environment:
          - cluster.name=opensearch-cluster
          - node.name=opensearch-node2
          - discovery.seed_hosts=opensearch-node1,opensearch-node2
          - cluster.initial_cluster_manager_nodes=opensearch-node1,opensearch-node2
          - bootstrap.memory_lock=true
          - OPENSEARCH_INITIAL_ADMIN_PASSWORD=myStrongPassword123!
        ulimits:
          memlock:
            soft: -1
            hard: -1
          nofile:
            soft: 65536
            hard: 65536
        volumes:
          - opensearch-data2:/usr/share/opensearch/data
        networks:
          - opensearch-net
      opensearch-dashboards:
        image: opensearchstaging/opensearch-dashboards:2.17.0.7942
        container_name: opensearch-dashboards
        ports:
          - 5601:5601
        expose:
          - "5601"
        environment:
          OPENSEARCH_HOSTS: '["https://opensearch-node1:9200","https://opensearch-node2:9200"]'
        networks:
          - opensearch-net
    volumes:
      opensearch-data1:
      opensearch-data2:
    

    networks:
    opensearch-net:

    • Download the above docker-compose.yml on your machine.
    • Get latest image versions docker-compose pull.
    • Start the cluster docker-compose up.
  • OpenSearch docker 2.17.0.10292

    • Start without security
      • Docker command docker pull opensearchstaging/opensearch:2.17.0.10292 && docker run -it -p 9200:9200 -e "discovery.type=single-node" -e "DISABLE_SECURITY_PLUGIN=true" opensearchstaging/opensearch:2.17.0.10292
      • Connect command curl http://localhost:9200/
    • Start with security
      • Docker command
      docker pull opensearchstaging/opensearch:2.17.0.10292 && docker run -it -p 9200:9200 -e "discovery.type=single-node" -e "OPENSEARCH_INITIAL_ADMIN_PASSWORD=myStrongPassword123!" opensearchstaging/opensearch:2.17.0.10292
      
      • Connect command curl --insecure 'https://admin:myStrongPassword123!@localhost:9200/'
  • OpenSearch-Dashboards docker 2.17.0.7942

    • Start without security
      • Docker command docker pull opensearchstaging/opensearch-dashboards:2.17.0.7942 && docker run -it --network="host" -e "DISABLE_SECURITY_DASHBOARDS_PLUGIN=true" opensearchstaging/opensearch-dashboards:2.17.0.7942
      • URL http://localhost:5601/
    • Start with security
      • Docker command docker pull opensearchstaging/opensearch-dashboards:2.17.0.7942 && docker run -it --network="host" opensearchstaging/opensearch-dashboards:2.17.0.7942
      • URL http://localhost:5601/
  • Use TARs to deploy OpenSearch Manually

Check how to install opensearch and dashboards on different platforms

Integration Test Results

Thank you

@gaiksaya
Copy link
Member

Updating the status of 2.17.0 as per today Go/No-Go call:
The decision for this call was a NO-GO based on below status:

  • Integration tests are failing for IndexManagementDashboards and OpenSearch-Dashboards core. The tests are flaky and need to be re-run. We did try running them twice yesterday however, they are still failing. We will continue to run them again and see if they go through. Flaky tests have been a hurdle for a long time and block the release process. Component owners please take action to fix in if possible, in this release or else next. We will be creating issues with respective component owners. You can check the metrics here.
  • We have 10 documentation PRs up are different stages of review. However, the status is RED as they still need to be reviewed and not ready to merge yet.
  • We do not have release blog ready yet. @getsaurabh02 will be coordinating to get that in.
  • Regarding CVEs, we discovered a high CVE in docker scan which missed the recent release candidate for OpenSearch-Dashboards. We will generating a new RC today only for OpenSearch-Dashboards to get it in.
    We have our next Go/No-Go call scheduled for Monday at 9AM PST.

@gaiksaya
Copy link
Member

gaiksaya commented Sep 13, 2024

RC 7

We have next RC which only contains OpenSearch Dashboards: https://build.ci.opensearch.org/blue/organizations/jenkins/distribution-build-opensearch[…]il/distribution-build-opensearch-dashboards/7944/pipeline

We are still seeing the CVE in the scan. Working with the core team to see if is actually an issue or false positive.

@gaiksaya
Copy link
Member

RC 8

2 components had to patch the software to resolve high CVEs.
We have generated new RC with those changes.
https://build.ci.opensearch.org/blue/organizations/jenkins/distribution-build-opensearch-dashboards/detail/distribution-build-opensearch-dashboards/7946/pipeline/1392/

We will continue to run tests and try to meet the exit criteria.
Thanks!

@gaiksaya
Copy link
Member

All integration tests are passing for all components. Below are the final release candidates for the release.

@gaiksaya
Copy link
Member

We unanimously received a GO for tomorrow’s 2.17.0 release in today's Go/No-Go call.
We still have documentation PRs in review. However, documentation team is confident to get in before tomorrow’s release.
Thanks!

@prudhvigodithi
Copy link
Collaborator

Native plugin validation

./bin/opensearch-plugin install repository-s3
-> Installing repository-s3
-> Downloading repository-s3 from opensearch
[=================================================] 100%?? 
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@     WARNING: plugin requires additional permissions     @
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
* java.io.FilePermission config#plus read
* java.lang.RuntimePermission accessDeclaredMembers
* java.lang.RuntimePermission getClassLoader
* java.lang.RuntimePermission setContextClassLoader
* java.lang.reflect.ReflectPermission suppressAccessChecks
* java.net.NetPermission setDefaultAuthenticator
* java.net.SocketPermission * connect,resolve
* java.util.PropertyPermission aws.configFile read,write
* java.util.PropertyPermission aws.sharedCredentialsFile read,write
* java.util.PropertyPermission opensearch.allow_insecure_settings read,write
* java.util.PropertyPermission opensearch.path.conf read,write
See http://docs.oracle.com/javase/8/docs/technotes/guides/security/permissions.html
for descriptions of what these permissions allow and the associated risks.

Continue with installation? [y/N]y
-> Installed repository-s3 with folder name repository-s3

curl http://localhost:9200/_cat/plugins -u 'admin:myStrongPassword123@456'



opensearch opensearch-alerting                  2.17.0.0
opensearch opensearch-anomaly-detection         2.17.0.0
opensearch opensearch-asynchronous-search       2.17.0.0
opensearch opensearch-cross-cluster-replication 2.17.0.0
opensearch opensearch-custom-codecs             2.17.0.0
opensearch opensearch-flow-framework            2.17.0.0
opensearch opensearch-geospatial                2.17.0.0
opensearch opensearch-index-management          2.17.0.0
opensearch opensearch-job-scheduler             2.17.0.0
opensearch opensearch-knn                       2.17.0.0
opensearch opensearch-ml                        2.17.0.0
opensearch opensearch-neural-search             2.17.0.0
opensearch opensearch-notifications             2.17.0.0
opensearch opensearch-notifications-core        2.17.0.0
opensearch opensearch-observability             2.17.0.0
opensearch opensearch-performance-analyzer      2.17.0.0
opensearch opensearch-reports-scheduler         2.17.0.0
opensearch opensearch-security                  2.17.0.0
opensearch opensearch-security-analytics        2.17.0.0
opensearch opensearch-skills                    2.17.0.0
opensearch opensearch-sql                       2.17.0.0
opensearch opensearch-system-templates          2.17.0.0
opensearch query-insights                       2.17.0.0
opensearch repository-s3                        2.17.0

@gaiksaya
Copy link
Member

GPG key validation looks good as well:

% gpg --verify opensearch-2.17.0-linux-x64.tar.gz.sig opensearch-2.17.0-linux-x64.tar.gz
gpg: Signature made Tue 17 Sep 2024 08:40:20 PM UTC using RSA key ID 542C03B4
gpg: Good signature from "OpenSearch project <opensearch@amazon.com>"
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: C5B7 4989 65EF D1C2 924B  A9D5 39D3 1987 9310 D3FC
     Subkey fingerprint: 2187 3199 B103 0FCD 49DA  83F8 C2EE 2AF6 542C 03B4

@gaiksaya
Copy link
Member

🎉 OpenSearch and OpenSearch-Dashboards 2.17.0 have been release to the public.
This release includes a host of new features, enhancements, and bug fixes. For detailed information, please check out the release notes and release blog.

For feedback and suggestions please see the retrospective issue: #4909

Closing this issue as post release activities are completed as well.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
Status: ✅ Done
Development

No branches or pull requests