File tree 3 files changed +9
-2
lines changed
3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 3
3
Changelog
4
4
=========
5
5
6
+ 8.15.3 (2024-09-12)
7
+ -------------------
8
+
9
+ * Fixed regression introduced in ``Terms `` query class (`#1907 <https://github.com/elastic/elasticsearch-dsl-py/pull/1907 >`_)
10
+ * Removed unnecessary ``filter `` argument in ``AggBase.__getitem__ `` (`#1903 <https://github.com/elastic/elasticsearch-dsl-py/pull/1903 >`_)
11
+ * Fixed deserialization of ``datetime.date `` fields (`#1914 <https://github.com/elastic/elasticsearch-dsl-py/pull/1914 >`_)
12
+
6
13
8.15.2 (2024-09-04)
7
14
-------------------
8
15
Original file line number Diff line number Diff line change 95
95
from .utils import AttrDict , AttrList , DslBase
96
96
from .wrappers import Range
97
97
98
- VERSION = (8 , 15 , 2 )
98
+ VERSION = (8 , 15 , 3 )
99
99
__version__ = VERSION
100
100
__versionstr__ = "." .join (map (str , VERSION ))
101
101
__all__ = [
Original file line number Diff line number Diff line change 19
19
20
20
from setuptools import find_packages , setup
21
21
22
- VERSION = (8 , 15 , 2 )
22
+ VERSION = (8 , 15 , 3 )
23
23
__version__ = VERSION
24
24
__versionstr__ = "." .join (map (str , VERSION ))
25
25
You can’t perform that action at this time.
0 commit comments