From e231d2150a4525f3ee642d4db443a4270a351789 Mon Sep 17 00:00:00 2001 From: Quentin Pradet Date: Wed, 11 Dec 2024 17:16:48 +0400 Subject: [PATCH] Release 0.7.0 --- docs/guide/release-notes.asciidoc | 13 +++++++++++++ elasticsearch_serverless/_version.py | 2 +- pyproject.toml | 2 +- 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/docs/guide/release-notes.asciidoc b/docs/guide/release-notes.asciidoc index a736d75..930577f 100644 --- a/docs/guide/release-notes.asciidoc +++ b/docs/guide/release-notes.asciidoc @@ -1,6 +1,19 @@ [[release-notes]] == Release notes +=== 0.7.0.20231031 (2024-12-11) + +- Fix import when trace is missing from opentelemetry (https://github.com/elastic/elasticsearch-serverless-python/pull/99[#99]) +- Update APIs: + * Mark all Inference APIs as stable. + * Add `remote_cluster` to Create or update roles API. + * Add `allow_partial_search_results` to the Open Point in Time API + * Add `keep_alive` to the Get async search status API + * Add `master_timeout` to the Alias exists and Get alias APIs. + * Remove `local` from various cat APIs + * Remove `min_compatible_shard_node`, `keep_alive`, `pre_filter_shard_size` and `scroll` from the Submit async search API. + + === 0.6.0.20231031 (2024-11-08) - Support Python 3.13 (https://github.com/elastic/elasticsearch-serverless-python/pull/88[#88]) diff --git a/elasticsearch_serverless/_version.py b/elasticsearch_serverless/_version.py index 8470114..5cd89c6 100644 --- a/elasticsearch_serverless/_version.py +++ b/elasticsearch_serverless/_version.py @@ -15,4 +15,4 @@ # specific language governing permissions and limitations # under the License. -__versionstr__ = "0.6.0.20231031" +__versionstr__ = "0.7.0.20231031" diff --git a/pyproject.toml b/pyproject.toml index 5f65ef9..fcb886c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "elasticsearch-serverless" -version = "0.6.0.20231031" +version = "0.7.0.20231031" description = "Python client for Elasticsearch Serverless" readme = "README.rst" license = "Apache-2.0"