Skip to content

Commit fcb432c

Browse files
authored
Fix minor issues in README.md files (#278)
Signed-off-by: Andriy Redko <[email protected]>
1 parent 3eea4a9 commit fcb432c

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ The Spring Data OpenSearch follows the release model of the Spring Data Elastics
2424

2525
| Spring Data Release Train | Spring Data OpenSearch | Spring Data Elasticsearch | OpenSearch Server | OpenSearch Client | Spring Framework | Spring Boot |
2626
|---------------------------|------------------------|---------------------------|-------------------|-------------------|------------------|-------------|
27+
| 2023.1 (Vaughan) | 1.4.x | 5.2.x | 1.x / 2.x | 2.10.x and above | 6.1.x | 3.2.x |
2728
| 2023.1 (Vaughan) | 1.3.x | 5.2.x | 1.x / 2.x | 2.7.x and above | 6.1.x | 3.2.x |
2829
| 2023.0 (Ullman) | 1.2.x | 5.1.x | 1.x / 2.x | 2.7.x and above | 6.0.x | 3.1.x |
2930
| 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
3435
### OpenSearch 2.x / 1.x client libraries
3536

3637

37-
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.
38+
Spring Data OpenSearch provides the possibility to use either `RestHighLevelCLient` or [OpenSearchClient](https://github.com/opensearch-project/opensearch-java) to connect to OpenSearch clusters.
3839

3940
#### Using `RestHighLevelCLient` (default)
4041

spring-data-opensearch-examples/spring-boot-gradle/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This sample project demonstrates the usage of the [Spring Data OpenSearch](https
66
1. The easiest way to get [OpenSearch](https://opensearch.org) service up and running is by using [Docker](https://www.docker.com/):
77

88
```shell
9-
docker run -p 9200:9200 -e "discovery.type=single-node" opensearchproject/opensearch:2.11.1
9+
docker run -p 9200:9200 -e "discovery.type=single-node" -e OPENSEARCH_INITIAL_ADMIN_PASSWORD=<strong-password> opensearchproject/opensearch:2.14.0
1010
```
1111

1212
2. Build and run the project using [Gradle](https://gradle.org/):

spring-data-opensearch-examples/spring-boot-java-client-gradle/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This sample project demonstrates the usage of the [Spring Data OpenSearch](https
66
1. The easiest way to get [OpenSearch](https://opensearch.org) service up and running is by using [Docker](https://www.docker.com/):
77

88
```shell
9-
docker run -p 9200:9200 -e "discovery.type=single-node" opensearchproject/opensearch:2.11.1
9+
docker run -p 9200:9200 -e "discovery.type=single-node" -e OPENSEARCH_INITIAL_ADMIN_PASSWORD=<strong-password> opensearchproject/opensearch:2.14.0
1010
```
1111

1212
2. Build and run the project using [Gradle](https://gradle.org/):

0 commit comments

Comments
 (0)