File tree 3 files changed +12
-2
lines changed
3 files changed +12
-2
lines changed Original file line number Diff line number Diff line change 3
3
Changelog
4
4
=========
5
5
6
+ 8.15.0 (2024-08-09)
7
+ -------------------
8
+
9
+ * Added the option to use Python types to declare document fields (`#1845 <https://github.com/elastic/elasticsearch-dsl-py/pull/1845 >`_)
10
+ * Added type annotations (`#1533 <https://github.com/elastic/elasticsearch-dsl-py/pull/1533 >`_)
11
+ * Added support for bulk document operations with ``Document.bulk() `` (`#1864 <https://github.com/elastic/elasticsearch-dsl-py/pull/1864 >`_)
12
+ * Added the ``ConstantKeyword `` field to the top-level package (`#1843 <https://github.com/elastic/elasticsearch-dsl-py/pull/1843 >`_)
13
+ * Added ``async_connections `` to the top-level package (`#1865 <https://github.com/elastic/elasticsearch-dsl-py/pull/1865 >`_)
14
+ * Added index creation to the aggregations example (`#1862 <https://github.com/elastic/elasticsearch-dsl-py/pull/1862 >`_)
15
+
6
16
8.14.0 (2024-06-10)
7
17
-------------------
8
18
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 , 14 , 0 )
98
+ VERSION = (8 , 15 , 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 , 14 , 0 )
22
+ VERSION = (8 , 15 , 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