From de2fbd4620a6d8b809de261186db5c99f608704f Mon Sep 17 00:00:00 2001 From: Quentin Pradet Date: Mon, 14 Oct 2024 17:06:17 +0400 Subject: [PATCH] Release 0.5.0 --- docs/guide/release-notes.asciidoc | 14 ++++++++++++++ elasticsearch_serverless/_version.py | 2 +- pyproject.toml | 2 +- 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/docs/guide/release-notes.asciidoc b/docs/guide/release-notes.asciidoc index 1c8410f..2d60ec6 100644 --- a/docs/guide/release-notes.asciidoc +++ b/docs/guide/release-notes.asciidoc @@ -1,6 +1,20 @@ [[release-notes]] == Release notes +=== 0.5.0.20231031 (2024-10-11) + +- Fix OTel context loss in bulk helpers (https://github.com/elastic/elasticsearch-serverless-python/pull/87[#87]) +- Add optional Arrow deserialization support (https://github.com/elastic/elasticsearch-serverless-python/pull/86[#86]) +- Add optional orjson support (https://github.com/elastic/elasticsearch-serverless-python/pull/85[#85]) +- Updated build-dists.py to work with pyproject.toml (https://github.com/elastic/elasticsearch-serverless-python/pull/83[#83]) +- Remove Get data stream stats API +- Add `include_named_queries_score` to Search and Multi Search API +- Add `q` to Update by Query API +- Add `index_filter` to Open point in time API +- Add `timeout`, `master_timeout` and `verbose` to various APIs +- Add `allow_no_indices` and `ignore_unavailable` to Resolve index API +- Add `deprecated` to Put pipeline API + === 0.4.0.20231031 (2024-08-09) - Added the Connector API (https://github.com/elastic/elasticsearch-serverless-python/pull/78[#78]) diff --git a/elasticsearch_serverless/_version.py b/elasticsearch_serverless/_version.py index 8cfdf36..cb532b5 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.4.0.20231031" +__versionstr__ = "0.5.0.20231031" diff --git a/pyproject.toml b/pyproject.toml index 27cf479..ac5a492 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "elasticsearch-serverless" -version = "0.4.0.20231031" +version = "0.5.0.20231031" description = "Python client for Elasticsearch Serverless" readme = "README.rst" license = "Apache-2.0"