Skip to content

Commit de791f6

Browse files
authored
Release 7.4.0
1 parent cc5b0d1 commit de791f6

File tree

3 files changed

+33
-2
lines changed

3 files changed

+33
-2
lines changed

Diff for: Changelog.rst

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

6+
7.4.0 (2021-07-15)
7+
------------------
8+
9+
* Added the ``ConstantKeyword``, ``RankFeatures`` field types (`#1456`_, `#1465`_)
10+
* Added the ``ScriptScore`` query type (`#1464`_)
11+
* Added ``UpdateByQueryResponse.success()`` method (`#1463`_)
12+
* Added ``return_doc_meta`` parameter to ``Document.save()`` and ``Document.update()`` for
13+
accessing the complete API response (`#1466`_)
14+
* Added support for ``calendar_interval`` and ``fixed_interval`` to ``DateHistogramFacet`` (`#1467`_)
15+
* Added ``Document.exists()`` method (`#1447`_, contributed by `@dem4ply`_)
16+
* Added support for the ``year`` interval to ``DateHistogramFacet`` (`#1502`_, contributed by `@nrsimha`_)
17+
* Fixed issue where ``to_dict()`` should be called recursively on ``Search.extras`` and ``**kwargs`` (`#1458`_)
18+
* Fixed inverse of an empty ``Bool`` query should be ``MatchNone`` (`#1459`_)
19+
* Fixed issue between ``retry_on_conflict`` and optimistic concurrency control within ``Document.update()`` (`#1461`_, contributed by `@armando1793`_)
20+
21+
.. _@dem4ply: https://github.com/dem4ply
22+
.. _@nrsimha: https://github.com/nrsimha
23+
.. _@armando1793: https://github.com/armando1793
24+
.. _#1447: https://github.com/elastic/elasticsearch-dsl-py/pull/1447
25+
.. _#1456: https://github.com/elastic/elasticsearch-dsl-py/pull/1456
26+
.. _#1458: https://github.com/elastic/elasticsearch-dsl-py/pull/1458
27+
.. _#1459: https://github.com/elastic/elasticsearch-dsl-py/pull/1459
28+
.. _#1461: https://github.com/elastic/elasticsearch-dsl-py/pull/1461
29+
.. _#1463: https://github.com/elastic/elasticsearch-dsl-py/pull/1463
30+
.. _#1464: https://github.com/elastic/elasticsearch-dsl-py/pull/1464
31+
.. _#1465: https://github.com/elastic/elasticsearch-dsl-py/pull/1465
32+
.. _#1466: https://github.com/elastic/elasticsearch-dsl-py/pull/1466
33+
.. _#1467: https://github.com/elastic/elasticsearch-dsl-py/pull/1467
34+
.. _#1502: https://github.com/elastic/elasticsearch-dsl-py/pull/1502
35+
36+
637
7.3.0 (2020-09-16)
738
------------------
839

Diff for: elasticsearch_dsl/__init__.py

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

87-
VERSION = (7, 3, 0)
87+
VERSION = (7, 4, 0)
8888
__version__ = VERSION
8989
__versionstr__ = ".".join(map(str, VERSION))
9090
__all__ = [

Diff for: setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
from setuptools import find_packages, setup
2222

23-
VERSION = (7, 3, 0)
23+
VERSION = (7, 4, 0)
2424
__version__ = VERSION
2525
__versionstr__ = ".".join(map(str, VERSION))
2626

0 commit comments

Comments
 (0)