From b3b2b353a9f77a35b75153432779c9462c6ee583 Mon Sep 17 00:00:00 2001 From: Miguel Grinberg Date: Wed, 11 Sep 2024 20:25:16 +0100 Subject: [PATCH 1/2] Release 8.15.3 --- Changelog.rst | 6 ++++++ elasticsearch_dsl/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/Changelog.rst b/Changelog.rst index 200907c9..a319bc2e 100644 --- a/Changelog.rst +++ b/Changelog.rst @@ -3,6 +3,12 @@ Changelog ========= +8.15.3 (2024-09-12) +------------------- + +* Fixed regression introduced in ``Terms`` query class (`#1907 `_) +* Removed unnecessary ``filter`` argument in ``AggBase.__getitem__`` (`#1903 `_) + 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)) From 83a3f3f8c506bf1a2cd435d03e3430aa8e0d7936 Mon Sep 17 00:00:00 2001 From: Miguel Grinberg Date: Fri, 13 Sep 2024 12:40:50 +0100 Subject: [PATCH 2/2] updated change log with one more fix --- Changelog.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/Changelog.rst b/Changelog.rst index a319bc2e..53976437 100644 --- a/Changelog.rst +++ b/Changelog.rst @@ -8,6 +8,7 @@ Changelog * 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) -------------------