From fcb432c51f9503e09fdb4e01a461bbe1d7e6b77a Mon Sep 17 00:00:00 2001 From: Andriy Redko Date: Tue, 21 May 2024 14:09:03 -0400 Subject: [PATCH] Fix minor issues in README.md files (#278) Signed-off-by: Andriy Redko --- README.md | 3 ++- spring-data-opensearch-examples/spring-boot-gradle/README.md | 2 +- .../spring-boot-java-client-gradle/README.md | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 2af8112..2759ecb 100644 --- a/README.md +++ b/README.md @@ -24,6 +24,7 @@ The Spring Data OpenSearch follows the release model of the Spring Data Elastics | Spring Data Release Train | Spring Data OpenSearch | Spring Data Elasticsearch | OpenSearch Server | OpenSearch Client | Spring Framework | Spring Boot | |---------------------------|------------------------|---------------------------|-------------------|-------------------|------------------|-------------| +| 2023.1 (Vaughan) | 1.4.x | 5.2.x | 1.x / 2.x | 2.10.x and above | 6.1.x | 3.2.x | | 2023.1 (Vaughan) | 1.3.x | 5.2.x | 1.x / 2.x | 2.7.x and above | 6.1.x | 3.2.x | | 2023.0 (Ullman) | 1.2.x | 5.1.x | 1.x / 2.x | 2.7.x and above | 6.0.x | 3.1.x | | 2022.0 (Turing) | 1.1.x | 5.0.x | 1.x / 2.x | 2.7.x and above | 6.0.x | 3.0.x | @@ -34,7 +35,7 @@ The Spring Data OpenSearch follows the release model of the Spring Data Elastics ### OpenSearch 2.x / 1.x client libraries -At the moment, Spring Data OpenSearch provides the possibility to use either `RestHighLevelCLient` or [OpenSearchClient](https://github.com/opensearch-project/opensearch-java) to connect to OpenSearch clusters. +Spring Data OpenSearch provides the possibility to use either `RestHighLevelCLient` or [OpenSearchClient](https://github.com/opensearch-project/opensearch-java) to connect to OpenSearch clusters. #### Using `RestHighLevelCLient` (default) diff --git a/spring-data-opensearch-examples/spring-boot-gradle/README.md b/spring-data-opensearch-examples/spring-boot-gradle/README.md index e1983c3..c242dcc 100644 --- a/spring-data-opensearch-examples/spring-boot-gradle/README.md +++ b/spring-data-opensearch-examples/spring-boot-gradle/README.md @@ -6,7 +6,7 @@ This sample project demonstrates the usage of the [Spring Data OpenSearch](https 1. The easiest way to get [OpenSearch](https://opensearch.org) service up and running is by using [Docker](https://www.docker.com/): ```shell -docker run -p 9200:9200 -e "discovery.type=single-node" opensearchproject/opensearch:2.11.1 +docker run -p 9200:9200 -e "discovery.type=single-node" -e OPENSEARCH_INITIAL_ADMIN_PASSWORD= opensearchproject/opensearch:2.14.0 ``` 2. Build and run the project using [Gradle](https://gradle.org/): diff --git a/spring-data-opensearch-examples/spring-boot-java-client-gradle/README.md b/spring-data-opensearch-examples/spring-boot-java-client-gradle/README.md index 4f5416f..3466381 100644 --- a/spring-data-opensearch-examples/spring-boot-java-client-gradle/README.md +++ b/spring-data-opensearch-examples/spring-boot-java-client-gradle/README.md @@ -6,7 +6,7 @@ This sample project demonstrates the usage of the [Spring Data OpenSearch](https 1. The easiest way to get [OpenSearch](https://opensearch.org) service up and running is by using [Docker](https://www.docker.com/): ```shell -docker run -p 9200:9200 -e "discovery.type=single-node" opensearchproject/opensearch:2.11.1 +docker run -p 9200:9200 -e "discovery.type=single-node" -e OPENSEARCH_INITIAL_ADMIN_PASSWORD= opensearchproject/opensearch:2.14.0 ``` 2. Build and run the project using [Gradle](https://gradle.org/):