Skip to content

Commit 8bfbdfb

Browse files
authored
Release 7.3.0
1 parent 651edf2 commit 8bfbdfb

File tree

3 files changed

+22
-2
lines changed

3 files changed

+22
-2
lines changed

Changelog.rst

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

6+
7.3.0 (2020-09-16)
7+
------------------
8+
9+
* Added ``Intervals``, ``MatchBoolPrefix``, ``Shape``, and ``Wrapper`` queries (`#1392`_, `#1418`_)
10+
* Added ``Boxplot``, ``RareTerms``, ``VariableWidthHistogram``, ``MedianAbsoluteDeviation``,
11+
``TTest``, ``CumulativeCardinality``, ``Inference``, ``MovingPercentiles``,
12+
and ``Normalize`` aggregations (`#1416`_, `#1418`_)
13+
* Added ``__all__`` and removed all star imports from ``elasticsearch_dsl`` namespace
14+
to avoid leaking unintended names (`#1390`_)
15+
* Fixed an issue where ``Object`` and ``Nested`` could mutate the inner
16+
``doc_class`` mapping (`#1255`_, contributed by `@l1nd3r0th`_)
17+
* Fixed a typo in query ``SpanContaining``, previously was ``SpanContainining`` (`#1418`_)
18+
19+
.. _@l1nd3r0th: https://github.com/l1nd3r0th
20+
.. _#1255: https://github.com/elastic/elasticsearch-dsl-py/pull/1255
21+
.. _#1390: https://github.com/elastic/elasticsearch-dsl-py/pull/1390
22+
.. _#1392: https://github.com/elastic/elasticsearch-dsl-py/pull/1392
23+
.. _#1416: https://github.com/elastic/elasticsearch-dsl-py/pull/1416
24+
.. _#1418: https://github.com/elastic/elasticsearch-dsl-py/pull/1418
25+
626
7.2.1 (2020-06-02)
727
------------------
828

elasticsearch_dsl/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
8383
from .wrappers import Range
8484
from .utils import AttrDict, AttrList, DslBase
8585

86-
VERSION = (7, 2, 1)
86+
VERSION = (7, 3, 0)
8787
__version__ = VERSION
8888
__versionstr__ = ".".join(map(str, VERSION))
8989
__all__ = [

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from os.path import join, dirname
2020
from setuptools import setup, find_packages
2121

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

0 commit comments

Comments
 (0)