Skip to content

Commit d5c5d42

Browse files
Release 8.15.2 (#1899)
1 parent e706a01 commit d5c5d42

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

Diff for: Changelog.rst

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
Changelog
44
=========
55

6+
8.15.2 (2024-09-04)
7+
-------------------
8+
9+
* Added support for any iterables to The ``Terms`` query (`#1887 <https://github.com/elastic/elasticsearch-dsl-py/pull/1887>`_)
10+
* Added back support for tuples and other iterables to ``Search.source()`` method (`#1895 <https://github.com/elastic/elasticsearch-dsl-py/pull/1895>`_)
11+
* Added recursive option to ``AttrDict.to_dict()`` (`#1892 <https://github.com/elastic/elasticsearch-dsl-py/pull/1892>`_)
12+
* Removed unused analyzer from search as you type example (`#1883 <https://github.com/elastic/elasticsearch-dsl-py/pull/1883>`_)
13+
614
8.15.1 (2024-08-19)
715
-------------------
816

Diff for: elasticsearch_dsl/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@
9595
from .utils import AttrDict, AttrList, DslBase
9696
from .wrappers import Range
9797

98-
VERSION = (8, 15, 1)
98+
VERSION = (8, 15, 2)
9999
__version__ = VERSION
100100
__versionstr__ = ".".join(map(str, VERSION))
101101
__all__ = [

Diff for: setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
from setuptools import find_packages, setup
2121

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

0 commit comments

Comments
 (0)