You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-4Lines changed: 6 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -49,7 +49,7 @@ In the `pom.xml` for your project add the following repository definition and de
49
49
50
50
```xml
51
51
<project>
52
-
52
+
53
53
<repositories>
54
54
<repository>
55
55
<id>Elastic-Snapshots</id>
@@ -59,7 +59,7 @@ In the `pom.xml` for your project add the following repository definition and de
59
59
</snapshots>
60
60
</repository>
61
61
</repositories>
62
-
62
+
63
63
<dependencies>
64
64
<dependency>
65
65
<groupId>co.elastic.clients</groupId>
@@ -72,7 +72,7 @@ In the `pom.xml` for your project add the following repository definition and de
72
72
<version>2.12.3</version>
73
73
</dependency>
74
74
</dependencies>
75
-
75
+
76
76
</project>
77
77
```
78
78
@@ -107,10 +107,12 @@ if (search.hits().hits().isEmpty()) {
107
107
108
108
The `main` branch targets the next major release (8.0) and the `7.x` branch targets the next minor release. Support is still incomplete as the API code is generated from the [Elasticsearch Specification](https://github.com/elastic/elasticsearch-specification) that is also still a work in progress.
109
109
110
+
The Elasticsearch Java client is forward compatible; meaning that the client supports communicating with greater minor versions of Elasticsearch. Elastic language clients are also backwards compatible with lesser supported minor Elasticsearch versions.
111
+
110
112
## Current status
111
113
112
114
While not complete, this library is already fairly usable. What's missing falls in two main categories, related to the [Elasticsearch specification](https://github.com/elastic/elasticsearch-specification):
113
-
* incomplete support for some data types used in specification (e.g. unions). Until they have been implemented in the code generator, they are represented as raw `JsonValue` objects.
115
+
* incomplete support for some data types used in specification (e.g. unions). Until they have been implemented in the code generator, they are represented as raw `JsonValue` objects.
114
116
* incomplete APIs: as the API specification is still incomplete, so are their implementations in this library since their code is entirely generated from the spec.
0 commit comments