mirror of
https://github.com/elastic/eland.git
synced 2025-07-11 00:02:14 +08:00
Release 8.0.0
This commit is contained in:
parent
e3bff8a623
commit
abd05df50b
@ -2,8 +2,8 @@
|
|||||||
Changelog
|
Changelog
|
||||||
=========
|
=========
|
||||||
|
|
||||||
8.0.0b1 (2021-12-16)
|
8.0.0 (2022-02-10)
|
||||||
--------------------
|
------------------
|
||||||
|
|
||||||
Added
|
Added
|
||||||
^^^^^
|
^^^^^
|
||||||
@ -14,6 +14,9 @@ Added
|
|||||||
* Added support for v8.0 of the Python Elasticsearch client (`#415`_)
|
* Added support for v8.0 of the Python Elasticsearch client (`#415`_)
|
||||||
* Added a warning if Eland detects it's communicating with an incompatible Elasticsearch version (`#419`_)
|
* Added a warning if Eland detects it's communicating with an incompatible Elasticsearch version (`#419`_)
|
||||||
* Added support for ``number_samples`` to LightGBM and Scikit-Learn models (`#397`_, contributed by `@V1NAY8`_)
|
* Added support for ``number_samples`` to LightGBM and Scikit-Learn models (`#397`_, contributed by `@V1NAY8`_)
|
||||||
|
* Added ability to use datetime types for filtering dataframes (`284`_, contributed by `@Fju`_)
|
||||||
|
* Added pandas ``datetime64`` type to use the Elasticsearch ``date`` type (`#425`_, contributed by `@Ashton-Sidhu`_)
|
||||||
|
* Added ``es_verify_mapping_compatibility`` parameter to disable schema enforcement with ``pandas_to_eland`` (`#423`_, contributed by `@Ashton-Sidhu`_)
|
||||||
|
|
||||||
Changed
|
Changed
|
||||||
^^^^^^^
|
^^^^^^^
|
||||||
@ -21,11 +24,16 @@ Changed
|
|||||||
* Changed ``to_pandas()`` to only use Point-in-Time and ``search_after`` instead of using Scroll APIs
|
* Changed ``to_pandas()`` to only use Point-in-Time and ``search_after`` instead of using Scroll APIs
|
||||||
for pagination.
|
for pagination.
|
||||||
|
|
||||||
|
.. _@Fju: https://github.com/Fju
|
||||||
|
.. _@Ashton-Sidhu: https://github.com/Ashton-Sidhu
|
||||||
.. _#419: https://github.com/elastic/eland/pull/419
|
.. _#419: https://github.com/elastic/eland/pull/419
|
||||||
.. _#415: https://github.com/elastic/eland/pull/415
|
.. _#415: https://github.com/elastic/eland/pull/415
|
||||||
.. _#397: https://github.com/elastic/eland/pull/397
|
.. _#397: https://github.com/elastic/eland/pull/397
|
||||||
.. _#394: https://github.com/elastic/eland/pull/394
|
.. _#394: https://github.com/elastic/eland/pull/394
|
||||||
.. _#403: https://github.com/elastic/eland/pull/403
|
.. _#403: https://github.com/elastic/eland/pull/403
|
||||||
|
.. _#284: https://github.com/elastic/eland/pull/284
|
||||||
|
.. _#424: https://github.com/elastic/eland/pull/425
|
||||||
|
.. _#423: https://github.com/elastic/eland/pull/423
|
||||||
|
|
||||||
|
|
||||||
7.14.1b1 (2021-08-30)
|
7.14.1b1 (2021-08-30)
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
__title__ = "eland"
|
__title__ = "eland"
|
||||||
__description__ = "Python Client and Toolkit for DataFrames, Big Data, Machine Learning and ETL in Elasticsearch"
|
__description__ = "Python Client and Toolkit for DataFrames, Big Data, Machine Learning and ETL in Elasticsearch"
|
||||||
__url__ = "https://github.com/elastic/eland"
|
__url__ = "https://github.com/elastic/eland"
|
||||||
__version__ = "8.0.0b1"
|
__version__ = "8.0.0"
|
||||||
__author__ = "Steve Dodson"
|
__author__ = "Steve Dodson"
|
||||||
__author_email__ = "steve.dodson@elastic.co"
|
__author_email__ = "steve.dodson@elastic.co"
|
||||||
__maintainer__ = "Seth Michael Larson"
|
__maintainer__ = "Seth Michael Larson"
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
elasticsearch>=8.0.0a1,<9
|
elasticsearch>=8,<9
|
||||||
pandas>=1.2.0
|
pandas>=1.2.0
|
||||||
matplotlib
|
matplotlib
|
||||||
pytest>=5.2.1
|
pytest>=5.2.1
|
||||||
|
4
setup.py
4
setup.py
@ -28,7 +28,7 @@ with open(path.join(here, "eland", "_version.py"), "r", "utf-8") as f:
|
|||||||
exec(f.read(), about)
|
exec(f.read(), about)
|
||||||
|
|
||||||
CLASSIFIERS = [
|
CLASSIFIERS = [
|
||||||
"Development Status :: 4 - Beta",
|
"Development Status :: 5 - Production/Stable",
|
||||||
"License :: OSI Approved :: Apache Software License",
|
"License :: OSI Approved :: Apache Software License",
|
||||||
"Environment :: Console",
|
"Environment :: Console",
|
||||||
"Operating System :: OS Independent",
|
"Operating System :: OS Independent",
|
||||||
@ -82,7 +82,7 @@ setup(
|
|||||||
keywords="elastic eland pandas python",
|
keywords="elastic eland pandas python",
|
||||||
packages=find_packages(include=["eland", "eland.*"]),
|
packages=find_packages(include=["eland", "eland.*"]),
|
||||||
install_requires=[
|
install_requires=[
|
||||||
"elasticsearch>=8.0.0a1,<9",
|
"elasticsearch>=8,<9",
|
||||||
"pandas>=1.2,<1.4",
|
"pandas>=1.2,<1.4",
|
||||||
"matplotlib",
|
"matplotlib",
|
||||||
"numpy",
|
"numpy",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user