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
+10-1Lines changed: 10 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -72,7 +72,16 @@ Please see their respective READMEs for information and documentation.
72
72
73
73
We follow Ruby’s own maintenance policy and officially support all currently maintained versions per [Ruby Maintenance Branches](https://www.ruby-lang.org/en/downloads/branches/).
74
74
75
-
Language clients are forward compatible; meaning that clients support communicating with greater or equal minor versions of Elasticsearch. Elasticsearch language clients are only backwards compatible with default distributions and without guarantees made.
75
+
Language clients are forward compatible; meaning that clients support communicating with greater or equal minor versions of Elasticsearch without breaking.
76
+
It does not mean that the client automatically supports new features of newer Elasticsearch versions; it is only possible after a release of a new client version.
77
+
For example, a 8.12 client version won't automatically support the new features of the 8.13 version of Elasticsearch, the 8.13 client version is required for that.
78
+
Elasticsearch language clients are only backwards compatible with default distributions and without guarantees made.
79
+
80
+
| Gem Version || Elasticsearch Version | Supported |
Copy file name to clipboardExpand all lines: docs/installation.asciidoc
+21-3Lines changed: 21 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -38,6 +38,24 @@ gem 'elasticsearch', '~> 7.0'
38
38
[discrete]
39
39
=== {es} and Ruby Version Compatibility
40
40
41
-
The {es} client is compatible with currently maintained Ruby versions. We follow Ruby’s own maintenance policy and officially support all currently maintained versions per https://www.ruby-lang.org/en/downloads/branches/[Ruby Maintenance Branches].
42
-
43
-
Language clients are forward compatible; meaning that clients support communicating with greater or equal minor versions of {es}. Elasticsearch language clients are only backwards compatible with default distributions and without guarantees made.
41
+
The {es} client is compatible with currently maintained Ruby versions. We follow
42
+
Ruby’s own maintenance policy and officially support all currently maintained
0 commit comments