From 8e8294b61d484adc722cf4f81d77b131d16fa33a Mon Sep 17 00:00:00 2001 From: Miguel Grinberg Date: Fri, 13 Sep 2024 12:58:16 +0100 Subject: [PATCH] Bring 8.15.3 release to main --- Changelog.rst | 7 +++++++ elasticsearch_dsl/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/Changelog.rst b/Changelog.rst index 200907c9..53976437 100644 --- a/Changelog.rst +++ b/Changelog.rst @@ -3,6 +3,13 @@ Changelog ========= +8.15.3 (2024-09-12) +------------------- + +* Fixed regression introduced in ``Terms`` query class (`#1907 `_) +* Removed unnecessary ``filter`` argument in ``AggBase.__getitem__`` (`#1903 `_) +* Fixed deserialization of ``datetime.date`` fields (`#1914 `_) + 8.15.2 (2024-09-04) ------------------- diff --git a/elasticsearch_dsl/__init__.py b/elasticsearch_dsl/__init__.py index e87b4d93..a703eac8 100644 --- a/elasticsearch_dsl/__init__.py +++ b/elasticsearch_dsl/__init__.py @@ -95,7 +95,7 @@ from .utils import AttrDict, AttrList, DslBase from .wrappers import Range -VERSION = (8, 15, 2) +VERSION = (8, 15, 3) __version__ = VERSION __versionstr__ = ".".join(map(str, VERSION)) __all__ = [ diff --git a/setup.py b/setup.py index 98260e0e..7f1a1f60 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ from setuptools import find_packages, setup -VERSION = (8, 15, 2) +VERSION = (8, 15, 3) __version__ = VERSION __versionstr__ = ".".join(map(str, VERSION))