From d4342aab59f119706f44ef88d0a8a5638331daa4 Mon Sep 17 00:00:00 2001 From: aetter Date: Thu, 30 Sep 2021 13:43:24 -0700 Subject: [PATCH 1/3] Initial 1.1.0 updates --- README.md | 8 ++++---- _config.yml | 6 +++--- _opensearch/install/plugins.md | 18 ++++++++++++++++++ _opensearch/install/tar.md | 5 +++-- 4 files changed, 28 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 093941af..a9bd14e2 100644 --- a/README.md +++ b/README.md @@ -196,17 +196,17 @@ If you're making major changes to the documentation and need to see the rendered ## New releases 1. Branch. -1. Change the `opensearch_version` and `opensearch_major_minor_version` variables in `_config.yml`. +1. Change the `opensearch_version`, `opensearch_major_minor_version`, and `lucene_version` variables in `_config.yml`. 1. Start up a new cluster using the updated Docker Compose file in `docs/install/docker.md`. 1. Update the version table in `version-history.md`. - Use `curl -XGET https://localhost:9200 -u admin:admin -k` to verify the OpenSearch version. + Use `curl -XGET https://localhost:9200 -u admin:admin -k` to verify the OpenSearch and Lucene versions. -1. Update the plugin compatibility table in `docs/install/plugin.md`. +1. Update the plugin compatibility table in `_opensearch/install/plugin.md`. Use `curl -XGET https://localhost:9200/_cat/plugins -u admin:admin -k` to get the correct version strings. -1. Update the plugin compatibility table in `docs/opensearch-dashboards/plugins.md`. +1. Update the plugin compatibility table in `_dashboards/install/plugins.md`. Use `docker ps` to find the ID for the OpenSearch Dashboards node. Then use `docker exec -it /bin/bash` to get shell access. Finally, run `./bin/opensearch-dashboards-plugin list` to get the plugins and version strings. diff --git a/_config.yml b/_config.yml index ae992e6d..e22718a4 100644 --- a/_config.yml +++ b/_config.yml @@ -5,9 +5,9 @@ baseurl: "/docs" # the subpath of your site, e.g. /blog url: "https://opensearch.org" # the base hostname & protocol for your site, e.g. http://example.com permalink: /:path/ -opensearch_version: 1.0.1 -opensearch_major_minor_version: 1.0 -lucene_version: 8_8_2 +opensearch_version: 1.1.0 +opensearch_major_minor_version: 1.1 +lucene_version: 8_9_0 # Build settings markdown: kramdown diff --git a/_opensearch/install/plugins.md b/_opensearch/install/plugins.md index 40fdefc7..bd0d2d01 100644 --- a/_opensearch/install/plugins.md +++ b/_opensearch/install/plugins.md @@ -29,6 +29,24 @@ If you don't want to use the all-in-one OpenSearch installation options, you can + + 1.1.0 + +
opensearch-alerting                  1.1.0.0
+opensearch-anomaly-detection         1.1.0.0
+opensearch-asynchronous-search       1.1.0.0
+opensearch-cross-cluster-replication 1.1.0.0
+opensearch-index-management          1.1.0.0
+opensearch-job-scheduler             1.1.0.0
+opensearch-knn                       1.1.0.0
+opensearch-notebooks                 1.1.0.0
+opensearch-performance-analyzer      1.1.0.0
+opensearch-reports-scheduler         1.1.0.0
+opensearch-security                  1.1.0.0
+opensearch-sql                       1.1.0.0
+
+ + 1.0.1 diff --git a/_opensearch/install/tar.md b/_opensearch/install/tar.md index af45a3af..70151f5f 100644 --- a/_opensearch/install/tar.md +++ b/_opensearch/install/tar.md @@ -18,9 +18,10 @@ The tarball supports most Linux distributions, including CentOS 7, Amazon Linux ```bash # x64 tar -zxf opensearch-{{site.opensearch_version}}-linux-x64.tar.gz - cd opensearch-{{site.opensearch_version}}{% comment %}# ARM64 + cd opensearch-{{site.opensearch_version}} + # ARM64 tar -zxf opensearch-{{site.opensearch_version}}-linux-arm64.tar.gz - cd opensearch-{{site.opensearch_version}}{% endcomment %} + cd opensearch-{{site.opensearch_version}} ``` 1. Run OpenSearch: From 25c4b70046dcd5016454678e3757390f3229e4d5 Mon Sep 17 00:00:00 2001 From: aetter Date: Thu, 30 Sep 2021 19:58:37 -0700 Subject: [PATCH 2/3] Adds plugin list and ARM tarball --- _dashboards/install/plugins.md | 15 +++++++++++++++ _dashboards/install/tar.md | 7 +++---- 2 files changed, 18 insertions(+), 4 deletions(-) diff --git a/_dashboards/install/plugins.md b/_dashboards/install/plugins.md index 06b3c4c9..e0fc9d29 100644 --- a/_dashboards/install/plugins.md +++ b/_dashboards/install/plugins.md @@ -28,6 +28,21 @@ If you don't want to use the all-in-one installation options, you can install th + + 1.1.0 + +
alertingDashboards          1.1.0.0
+anomalyDetectionDashboards  1.1.0.0
+ganttChartDashboards        1.1.0.0
+indexManagementDashboards   1.1.0.0
+notebooksDashboards         1.1.0.0
+queryWorkbenchDashboards    1.1.0.0
+reportsDashboards           1.1.0.0
+securityDashboards          1.1.0.0
+traceAnalyticsDashboards    1.1.0.0
+
+ + 1.0.1 diff --git a/_dashboards/install/tar.md b/_dashboards/install/tar.md index 1c7e6933..026f23f7 100644 --- a/_dashboards/install/tar.md +++ b/_dashboards/install/tar.md @@ -14,9 +14,10 @@ nav_order: 30 ```bash # x64 tar -zxf opensearch-dashboards-{{site.opensearch_version}}-linux-x64.tar.gz - cd opensearch-dashboards{% comment %}# ARM64 + cd opensearch-dashboards + # ARM64 tar -zxf opensearch-dashboards-{{site.opensearch_version}}-linux-arm64.tar.gz - cd opensearch-dashboards{% endcomment %} + cd opensearch-dashboards ``` 1. If desired, modify `config/opensearch_dashboards.yml`. @@ -26,5 +27,3 @@ nav_order: 30 ```bash ./bin/opensearch-dashboards ``` - -1. See the [OpenSearch Dashboards documentation]({{site.url}}{{site.baseurl}}/dashboards/index/). From c91b99037b5876b0c7bbddeafc9c4e7f0ec9d211 Mon Sep 17 00:00:00 2001 From: aetter Date: Tue, 5 Oct 2021 09:49:15 -0700 Subject: [PATCH 3/3] Add release highlights. --- version-history.md | 1 + 1 file changed, 1 insertion(+) diff --git a/version-history.md b/version-history.md index bb67d8b9..f5d8f3de 100644 --- a/version-history.md +++ b/version-history.md @@ -9,6 +9,7 @@ permalink: /version-history/ OpenSearch version | Release highlights | Release date :--- | :--- | :--- | :--- +[1.1.0](https://github.com/opensearch-project/opensearch-build/tree/main/release-notes/opensearch-release-notes-1.1.0.md) | Adds cross-cluster replication, security for Index Management, ARM support, bucket-level alerting, a CLI to help with upgrading from Elasticsearch OSS to OpenSearch, and enhancements to high cardinality data in the anomaly detection plugin. | 5 October 2021 [1.0.1](https://github.com/opensearch-project/opensearch-build/tree/main/release-notes/opensearch-release-notes-1.0.1.md) | Bug fixes. | 1 September 2021 [1.0.0](https://github.com/opensearch-project/opensearch-build/tree/main/release-notes/opensearch-release-notes-1.0.0.md) | General availability release. Adds compatibility setting for clients that require a version check before connecting. | 12 July 2021 [1.0.0-rc1](https://github.com/opensearch-project/opensearch-build/tree/main/release-notes/opensearch-release-notes-1.0.0-rc1.md) | First release candidate. | 7 June 2021