Skip to content

Commit 2659478

Browse files
Release 8.16.0
1 parent d2bb988 commit 2659478

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

Changelog.rst

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

6+
8.16.0 (2024-11-13)
7+
-------------------
8+
9+
* Support pipe syntax to declare optional document fields (`#1937 <https://github.com/elastic/elasticsearch-dsl-py/pull/1937>`_)
10+
* Autogenerate query classes with docstrings and type hints (`#1890 <https://github.com/elastic/elasticsearch-dsl-py/pull/1890>`_)
11+
* Autogenerate aggregation classes with docstrings and type hints (`#1918 <https://github.com/elastic/elasticsearch-dsl-py/pull/1918>`_)
12+
* Autogenerate Elasticsearch response classes with docstrings and type hints (`#1929 <https://github.com/elastic/elasticsearch-dsl-py/pull/1929>`_ `#1932 <https://github.com/elastic/elasticsearch-dsl-py/pull/1932>`_)
13+
* Ignore document attributes typed with ``ClassVar`` (`#1936 <https://github.com/elastic/elasticsearch-dsl-py/pull/1936>`_)
14+
* Support Python 3.13 (`#1938 <https://github.com/elastic/elasticsearch-dsl-py/pull/1938>`_)
15+
16+
617
8.15.4 (2024-10-07)
718
-------------------
819

elasticsearch_dsl/__init__.py

Lines changed: 1 addition & 1 deletion
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, 4)
98+
VERSION = (8, 16, 0)
9999
__version__ = VERSION
100100
__versionstr__ = ".".join(map(str, VERSION))
101101
__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, 15, 4)
22+
VERSION = (8, 16, 0)
2323
__version__ = VERSION
2424
__versionstr__ = ".".join(map(str, VERSION))
2525

0 commit comments

Comments
 (0)