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
Given a constant major version of the client, each related minor version is compatible with its equivalent- and all later Elasticsearch minor versions of the **same or next higher** major version.
23
+
24
+
For example:
25
+
26
+
| Client Version | Compatible with Elasticsearch `7.x`| Compatible with Elasticsearch `8.x`| Compatible with Elasticsearch `9.x`|
27
+
| ---: | :-- | :-- | :-- |
28
+
| 8.x | ❌ no | ✅ yes | ✅ yes |
29
+
| 7.x | ✅ yes | ✅ yes | ❌ no |
30
+
31
+
Language clients are also **backward compatible** across minor versions within the **same** major version (without strong guarantees), but **never** backward compatible with earlier Elasticsearch major versions.
32
+
33
+
> [!NOTE]
34
+
> Compatibility does not imply feature parity. For example, an `8.12` client is compatible with `8.13`, but does not support any of the new features introduced in Elasticsearch `8.13`.
0 commit comments