Skip to content

Commit e6caa0a

Browse files
authored
Release 8.14.0
1 parent 0ecc91b commit e6caa0a

17 files changed

+85
-16
lines changed

docs/examples/00fea15cbca83be9d5f1a024ff2ec708.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// inference/put-inference.asciidoc:452
1+
// inference/put-inference.asciidoc:674
22

33
[source, python]
44
----

docs/examples/10c3fe2265bb34964bd1005f9da66773.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// inference/put-inference.asciidoc:559
1+
// inference/put-inference.asciidoc:802
22

33
[source, python]
44
----

docs/examples/1dadb7efe27b6c0c231eb6535e413bd9.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// inference/put-inference.asciidoc:671
1+
// inference/put-inference.asciidoc:539
22

33
[source, python]
44
----

docs/examples/4e3414fc712b16311f9e433dd366f49d.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// inference/delete-inference.asciidoc:55
1+
// inference/delete-inference.asciidoc:70
22

33
[source, python]
44
----

docs/examples/59d736a4d064ed2013c7ead8e32e0998.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// inference/put-inference.asciidoc:600
1+
// inference/put-inference.asciidoc:863
22

33
[source, python]
44
----

docs/examples/6ddd4e657efbf45def430a6419825796.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// inference/put-inference.asciidoc:689
1+
// inference/put-inference.asciidoc:557
22

33
[source, python]
44
----

docs/examples/77b90f6787195767b6da60d8532714b4.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// inference/put-inference.asciidoc:623
1+
// inference/put-inference.asciidoc:584
22

33
[source, python]
44
----

docs/examples/8619bd17bbfe33490b1f277007f654db.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// inference/put-inference.asciidoc:424
1+
// inference/put-inference.asciidoc:647
22

33
[source, python]
44
----
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
// inference/put-inference.asciidoc:825
2+
3+
[source, python]
4+
----
5+
resp = client.inference.put_model(
6+
task_type="text_embedding",
7+
inference_id="mistral-embeddings-test",
8+
body={
9+
"service": "mistral",
10+
"service_settings": {
11+
"api_key": "<api_key>",
12+
"model": "mistral-embed",
13+
},
14+
},
15+
)
16+
print(resp)
17+
----

docs/examples/9a203aae3e1412d919546276fb52a5ca.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// inference/put-inference.asciidoc:406
1+
// inference/put-inference.asciidoc:629
22

33
[source, python]
44
----

docs/examples/9f16fca9813304e398ee052aa857dbcd.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// inference/put-inference.asciidoc:584
1+
// inference/put-inference.asciidoc:847
22

33
[source, python]
44
----

docs/examples/cedb56a71cc743d80263ce352bb21720.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// inference/put-inference.asciidoc:477
1+
// inference/put-inference.asciidoc:699
22

33
[source, python]
44
----
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
// inference/put-inference.asciidoc:738
2+
3+
[source, python]
4+
----
5+
resp = client.inference.put_model(
6+
task_type="completion",
7+
inference_id="google_ai_studio_completion",
8+
body={
9+
"service": "googleaistudio",
10+
"service_settings": {
11+
"api_key": "<api_key>",
12+
"model_id": "<model_id>",
13+
},
14+
},
15+
)
16+
print(resp)
17+
----

docs/examples/eee6110831c08b9c1b3f56b24656e95b.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// inference/put-inference.asciidoc:516
1+
// inference/put-inference.asciidoc:759
22

33
[source, python]
44
----

docs/examples/f57ce7de0946e9416ddb9150e95f4b74.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// inference/put-inference.asciidoc:641
1+
// inference/put-inference.asciidoc:602
22

33
[source, python]
44
----

docs/guide/release-notes.asciidoc

Lines changed: 37 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
[[release-notes]]
22
== Release notes
33

4+
* <<rn-8-14-0>>
5+
* <<rn-8-13-2>>
6+
* <<rn-8-13-1>>
47
* <<rn-8-13-0>>
58
* <<rn-8-12-1>>
69
* <<rn-8-12-0>>
@@ -36,13 +39,45 @@
3639
* <<rn-8-1-0>>
3740
* <<rn-8-0-0>>
3841

42+
[discrete]
43+
[[rn-8-14-0]]
44+
=== 8.14.0 (2024-06-06)
45+
46+
- Fixed `node_pool_class` override (#2581, contributed by Tallak Hellebust)
47+
- Added `retriever` to the Search API
48+
- Added `deprecated` and removed `allow_auto_create` from the Create or update component template API
49+
- Added `allow_auto_create`, `cause`, `deprecated`, `ignore_missing_component_templates` and `master_timeout` to the Create or update index template API
50+
- Added `cause`, removed `flat_settings` and `timeout` from the Create or update index template legacy API
51+
- Removed various unsupported parameters from the Simulate index API
52+
- Added various supported paramters to the Simulate index template API
53+
- Added the `completion` and `rerank` task types to the Inference APIs
54+
- Added the `query` and `timeout` parameters to the Perform inference API
55+
- Added `typed_keys` to the Search Application Search API
56+
- Added `with_profile_uid` to the Get API key information and Query API key information APIs
57+
58+
59+
[discrete]
60+
[[rn-8-13-2]]
61+
=== 8.13.2 (2024-05-24)
62+
63+
- Added the `ml.update_trained_model_deployment` API
64+
- Marked Requests 2.32.2 as incompatible with the Elasticsearch client
65+
66+
[discrete]
67+
[[rn-8-13-1]]
68+
=== 8.13.1 (2024-05-03)
69+
70+
- Added `force_synthetic_source` to the Get API
71+
- Added `wait_for_completion` to the Create trained model API
72+
- Added `typed_keys` to the Query API key information API
73+
3974
[discrete]
4075
[[rn-8-13-0]]
4176
=== 8.13.0 (2024-03-22)
4277

4378
- Added native OpenTelemetry support
44-
- Added optional ``orjson`` (a fast, correct JSON library) serialization support
45-
- Added the `text_strcuture.test_grok_pattern` API
79+
- Added optional `orjson` (a fast, correct JSON library) serialization support
80+
- Added the `text_structure.test_grok_pattern` API
4681
- Added the `indices.resolve_cluster` API
4782
- Renamed the `model_id` parameter to `inference_id` in the `inference` APIs
4883
- Changed all `synonyms` APIs from **experimental** to **stable**.

elasticsearch/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@
1515
# specific language governing permissions and limitations
1616
# under the License.
1717

18-
__versionstr__ = "8.13.0"
18+
__versionstr__ = "8.14.0"

0 commit comments

Comments
 (0)