Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions .doc/installation.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -48,3 +48,39 @@ END

go run main.go
------------------------------------


[discrete]
=== {es} Version Compatibility

The client major versions correspond to the {es} major versions: to connect to
{es} `7.x`, use a `7.x` version of the client, to connect to {es} `6.x`, use a
`6.x` version of the client, and so on.

[NOTE]
--
While the 5.x version of the client is available, it is no longer actively
maintained, neither the corresponding {es} version. For more information, refer
to https://www.elastic.co/support/eol[Elastic product end of life dates].
--

[%header,cols=2*]
|===
|{es} Version
|Client Version

|`master`
|`master`

|`7.x`
|`7.x`

|`6.x`
|`6.x`

|`5.x`
|`5.x`
|===

The `master` branch of the client is compatible with the `master` branch of
{es}.
13 changes: 5 additions & 8 deletions .doc/overview.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,13 @@ https://github.com/elastic/go-elasticsearch[GitHub]
and https://godoc.org/github.com/elastic/go-elasticsearch[GoDoc]. This
documentation provides only an overview of features.


[discrete]
=== {es} Version Compatibility

The client major versions correspond to the {es} major versions:
to connect to {es} `6.x`, use a `6.x` version of the client,
to connect to {es} `7.x`, use a `7.x` version of the client, and so on.
=== Features

The `master` branch of the client is compatible with the `master` branch of
{es}.
* One-to-one mapping with REST API.
* Generalized, pluggable architecture.
* Helpers for convenience.
* Rich set of examples.


[discrete]
Expand Down