File tree 3 files changed +14
-2
lines changed
3 files changed +14
-2
lines changed Original file line number Diff line number Diff line change 3
3
Changelog
4
4
=========
5
5
6
+ 8.16.0 (2024-11-13)
7
+ -------------------
8
+
9
+ * Autogenerate parts of the library using documentation and types from the Elasticsearch specification
10
+ * query classes (`#1890 <https://github.com/elastic/elasticsearch-dsl-py/pull/1890 >`_)
11
+ * aggregation classes (`#1918 <https://github.com/elastic/elasticsearch-dsl-py/pull/1918 >`_)
12
+ * response classes (`#1929 <https://github.com/elastic/elasticsearch-dsl-py/pull/1929 >`_ `#1932 <https://github.com/elastic/elasticsearch-dsl-py/pull/1932 >`_)
13
+ * Support pipe syntax to declare optional document fields (`#1937 <https://github.com/elastic/elasticsearch-dsl-py/pull/1937 >`_)
14
+ * Ignore document attributes typed with ``ClassVar `` (`#1936 <https://github.com/elastic/elasticsearch-dsl-py/pull/1936 >`_)
15
+ * Support Python 3.13 (`#1938 <https://github.com/elastic/elasticsearch-dsl-py/pull/1938 >`_)
16
+
17
+
6
18
8.15.4 (2024-10-07)
7
19
-------------------
8
20
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 , 4 )
98
+ VERSION = (8 , 16 , 0 )
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 , 4 )
22
+ VERSION = (8 , 16 , 0 )
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