Skip to content

Release 8.18.0 #1973

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 16, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions Changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
Changelog
=========

8.18.0 (2025-04-16)
-------------------

* This package has been added to the `Elasticsearch Python client <https://github.com/elastic/elasticsearch-py>`_. Development continues there. (`#1972 <https://github.com/elastic/elasticsearch-dsl-py/pull/1972>`_)

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can we add a link to the docs that explain how to use the new module?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Added

8.17.1 (2025-01-08)
-------------------

Expand Down
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

from setuptools import find_packages, setup

VERSION = (8, 17, 1)
VERSION = (8, 18, 0)
__version__ = VERSION
__versionstr__ = ".".join(map(str, VERSION))

Expand All @@ -30,8 +30,7 @@
install_requires = [
"python-dateutil",
"typing-extensions",
# "elasticsearch>=8.0.0,<9.0.0",
"elasticsearch @ https://github.com/elastic/elasticsearch-py/archive/refs/heads/main.zip#egg=elasticsearch",
"elasticsearch>=8.0.0,<9.0.0",
"elastic-transport>=8.0.0,<9.0.0",
]

Expand Down