Skip to content

Commit d48b7f8

Browse files
Release 8.14.0 (#1841)
1 parent 1b66f2c commit d48b7f8

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

Changelog.rst

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,20 @@
33
Changelog
44
=========
55

6+
8.14.0 (2024-06-10)
7+
-------------------
8+
9+
* Added ``text_expansion`` query clause (`#1837 <https://github.com/elastic/elasticsearch-dsl-py/pull/1837>`_)
10+
* Added ``Response.search_after()`` and ``Search.search_after()`` methods for efficient iteration (`#1829 <https://github.com/elastic/elasticsearch-dsl-py/pull/1829>`_)
11+
* Added point in time support and the ``iterate()`` method in the ``Search`` class (`#1833 <https://github.com/elastic/elasticsearch-dsl-py/pull/1833>`_)
12+
* Added support for slicing multiple times in ``Search`` class (`#1771 <https://github.com/elastic/elasticsearch-dsl-py/pull/1771>`_)
13+
Added support for regular expressions in ``Completion.suggest()`` (`#1836 <https://github.com/elastic/elasticsearch-dsl-py/pull/1836>`_)
14+
* Fixed ``suggest()`` method of the ``Completion`` class to format requests correctly. (`#1836 <https://github.com/elastic/elasticsearch-dsl-py/pull/1836>`_)
15+
* Fixed ``Document.update()`` to accept fields set to ``None`` or empty (`#1820 <https://github.com/elastic/elasticsearch-dsl-py/pull/1820>`_)
16+
* Started work on type hints (Thanks Caio Fontes for leading this effort!)
17+
* Added Type hints to ``function.py`` (`#1827 <https://github.com/elastic/elasticsearch-dsl-py/pull/1827>`_)
18+
* Added Type hints to ``query.py`` (`#1821 <https://github.com/elastic/elasticsearch-dsl-py/pull/1821>`_)
19+
620
8.13.1 (2024-04-30)
721
-------------------
822

elasticsearch_dsl/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@
9393
from .utils import AttrDict, AttrList, DslBase
9494
from .wrappers import Range
9595

96-
VERSION = (8, 13, 1)
96+
VERSION = (8, 14, 0)
9797
__version__ = VERSION
9898
__versionstr__ = ".".join(map(str, VERSION))
9999
__all__ = [

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
from setuptools import find_packages, setup
2121

22-
VERSION = (8, 13, 1)
22+
VERSION = (8, 14, 0)
2323
__version__ = VERSION
2424
__versionstr__ = ".".join(map(str, VERSION))
2525

0 commit comments

Comments
 (0)