Skip to content

Commit bef0c24

Browse files
authored
Release 0.3.0.20231031
1 parent 600785f commit bef0c24

File tree

4 files changed

+24
-2
lines changed

4 files changed

+24
-2
lines changed

docs/guide/release-notes.asciidoc

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

4+
=== 0.3.0.20231031
5+
6+
* Removed support for Python 3.7 and 3.8
7+
* Added support for Python 3.12
8+
* Added OpenTelemetry support
9+
* Added Query Rules API
10+
* Moved Query Ruleset API to Query Rules API (`client.query_ruleset.put()` becomes `client.query_rules.put_ruleset()`, and the same applies to `get`, `list` and `delete`)
11+
* Added ES|QL API
12+
* Updated docstrings for many APIs
13+
* Added the Update trained model deployment API
14+
* Added `retriever` to the Search API
15+
* Added `dry_run` and `force` to the Delete inference API
16+
* Added `typed_keys` to the Search Application Search API
17+
* Removed `cause` from the Create or update component template API
18+
* Allowed setting multiple model ids, tags and job ids using Python lists in multiple ML APIs
19+
* Fix the put component template, put template and put index template APIs
20+
* Remove mentions of model in the Inference API
21+
* Include missing cluster and index privileges
22+
23+
424
=== 0.2.0.20231031
525

626
* Allowed unrestricted ``body`` parameter (https://github.com/elastic/elasticsearch-serverless-python/pull/34[#34], see https://github.com/elastic/elasticsearch-py/pull/2383[elasticsearch-py#2383])

elasticsearch_serverless/_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__ = "0.2.0.20231031"
18+
__versionstr__ = "0.3.0.20231031"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "elasticsearch-serverless"
7-
version = "0.2.0.20231031"
7+
version = "0.3.0.20231031"
88
description = "Python client for Elasticsearch Serverless"
99
readme = "README.rst"
1010
license = "Apache-2.0"

test_elasticsearch_serverless/utils.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,8 @@ def is_xpack_template(name):
133133
return True
134134
elif name.startswith("elastic-connectors-"):
135135
return True
136+
elif name.startswith("entities_v1_"):
137+
return True
136138
if name in {
137139
"apm-10d@lifecycle",
138140
"apm-180d@lifecycle",

0 commit comments

Comments
 (0)