Skip to content

Commit 427619a

Browse files
authored
Merge pull request #27 from elastic/set-beta-stability-in-docs
Promote client stability in docs
2 parents ca74d3e + f7ffd4a commit 427619a

File tree

3 files changed

+25
-25
lines changed

3 files changed

+25
-25
lines changed

docs/connecting.asciidoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[[connecting]]
22
== Connecting
33

4-
experimental[]
4+
beta[]
55

6-
The code snippet below shows how to initialize a low level REST client and the
6+
The code snippet below shows how to initialize a low level REST client and the
77
Jackson object mapper to configure an ElasticsearchClient:
88

99

@@ -19,7 +19,7 @@ Transport transport = new RestClientTransport(restClient, new JacksonJsonpMapper
1919
ElasticsearchClient client = new ElasticsearchClient(transport);
2020
--------------------------------------------------
2121

22-
Authentication is managed by the
22+
Authentication is managed by the
2323
https://www.elastic.co/guide/en/elasticsearch/client/java-rest/current/java-rest-low.html[low-level Rest Client].
24-
For further details on configuring authentication, refer to the
24+
For further details on configuring authentication, refer to the
2525
https://www.elastic.co/guide/en/elasticsearch/client/java-rest/current/_basic_authentication.html[documentation].

docs/installation.asciidoc

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
[[installation]]
22
== Installation
33

4-
experimental[]
4+
beta[]
55

66
This page guides you through the installation process of the client.
77

88
Requirements:
99

10-
* Java 8 or later. The library provides high-level type-safe classes
11-
and methods for all {es} APIs. It sits on top of the
12-
https://www.elastic.co/guide/en/elasticsearch/client/java-rest/current/java-rest-low.html[Low Level Rest Client]
10+
* Java 8 or later. The library provides high-level type-safe classes
11+
and methods for all {es} APIs. It sits on top of the
12+
https://www.elastic.co/guide/en/elasticsearch/client/java-rest/current/java-rest-low.html[Low Level Rest Client]
1313
that manages all http communications.
14-
15-
* The JSON implementation used by the Java client is pluggable and you must add
16-
a JSON object mapping library as a dependency to your project. It has support
17-
for https://github.com/FasterXML/jackson[Jackson] or a
18-
http://json-b.net/[JSON-B] library like
14+
15+
* The JSON implementation used by the Java client is pluggable and you must add
16+
a JSON object mapping library as a dependency to your project. It has support
17+
for https://github.com/FasterXML/jackson[Jackson] or a
18+
http://json-b.net/[JSON-B] library like
1919
https://github.com/eclipse-ee4j/yasson[Eclipse Yasson].
2020

2121

@@ -39,7 +39,7 @@ dependencies {
3939
[[maven]]
4040
=== Installation in a Maven project by using Jackson
4141

42-
In the `pom.xml` of your project, add the following repository definition and
42+
In the `pom.xml` of your project, add the following repository definition and
4343
dependencies:
4444

4545
["source","xml",subs="attributes"]
@@ -66,11 +66,11 @@ dependencies:
6666
[[compatibility]]
6767
=== Compatibility
6868

69-
The `main` branch targets the next major release (8.0), the `7.x` branch targets
70-
the next minor release. Support is still incomplete as the API code is generated
69+
The `main` branch targets the next major release (8.0), the `7.x` branch targets
70+
the next minor release. Support is still incomplete as the API code is generated
7171
from the {es} Specification that is also still a work in progress.
7272

73-
The {es} Java client is forward compatible; meaning that the client supports
74-
communicating with greater or equal minor versions of {es}. {es} language
75-
clients are only backwards compatible with default distributions and without
76-
guarantees made.
73+
The {es} Java client is forward compatible; meaning that the client supports
74+
communicating with greater or equal minor versions of {es}. {es} language
75+
clients are only backwards compatible with default distributions and without
76+
guarantees made.

docs/introduction.asciidoc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[[introduction]]
22
== Introduction
33

4-
experimental[]
4+
beta[]
55

6-
This is the official Java API client for {es}. The client provides strongly
7-
typed requests and responses for all {es} APIs. It delegates protocol handling
8-
to an http client such as the
9-
https://www.elastic.co/guide/en/elasticsearch/client/java-rest/master/java-rest-low.html[{es} Low Level REST client]
6+
This is the official Java API client for {es}. The client provides strongly
7+
typed requests and responses for all {es} APIs. It delegates protocol handling
8+
to an http client such as the
9+
https://www.elastic.co/guide/en/elasticsearch/client/java-rest/master/java-rest-low.html[{es} Low Level REST client]
1010
that takes care of all transport-level concerns.

0 commit comments

Comments
 (0)