mirror of
https://github.com/elastic/eland.git
synced 2025-07-11 00:02:14 +08:00
Release 7.10.0b1
This commit is contained in:
parent
b936e98012
commit
31760fe02c
@ -2,6 +2,62 @@
|
|||||||
Changelog
|
Changelog
|
||||||
=========
|
=========
|
||||||
|
|
||||||
|
7.10.0b1 (2020-10-29)
|
||||||
|
---------------------
|
||||||
|
|
||||||
|
Added
|
||||||
|
^^^^^
|
||||||
|
|
||||||
|
* Added ``DataFrame.groupby()`` method with all aggregations
|
||||||
|
(`#278`_, `#291`_, `#292`_, `#300`_ contributed by `@V1NAY8`_)
|
||||||
|
|
||||||
|
* Added ``es_match()`` method to ``DataFrame`` and ``Series`` for
|
||||||
|
filtering rows with full-text search (`#301`_)
|
||||||
|
|
||||||
|
* Added support for type hints of the ``elasticsearch-py`` package (`#295`_)
|
||||||
|
|
||||||
|
* Added support for passing dictionaries to ``es_type_overrides`` parameter
|
||||||
|
in the ``pandas_to_eland()`` function to directly control the field mapping
|
||||||
|
generated in Elasticsearch (`#310`_)
|
||||||
|
|
||||||
|
* Added ``es_dtypes`` property to ``DataFrame`` and ``Series`` (`#285`_)
|
||||||
|
|
||||||
|
Changed
|
||||||
|
^^^^^^^
|
||||||
|
|
||||||
|
* Changed ``pandas_to_eland()`` to use the ``parallel_bulk()``
|
||||||
|
helper instead of single-threaded ``bulk()`` helper to improve
|
||||||
|
performance (`#279`_, contributed by `@V1NAY8`_)
|
||||||
|
|
||||||
|
* Changed the ``es_type_overrides`` parameter in ``pandas_to_eland()``
|
||||||
|
to raise ``ValueError`` if an unknown column is given (`#302`_)
|
||||||
|
|
||||||
|
* Changed ``DataFrame.filter()`` to preserve the order of items
|
||||||
|
(`#283`_, contributed by `@V1NAY8`_)
|
||||||
|
|
||||||
|
* Changed when setting ``es_type_overrides={"column": "text"}`` in
|
||||||
|
``pandas_to_eland()`` will automatically add the ``column.keyword``
|
||||||
|
sub-field so that aggregations are available for the field as well (`#310`_)
|
||||||
|
|
||||||
|
Fixed
|
||||||
|
^^^^^
|
||||||
|
|
||||||
|
* Fixed ``Series.__repr__`` when the series is empty (`#306`_)
|
||||||
|
|
||||||
|
.. _#278: https://github.com/elastic/eland/pull/278
|
||||||
|
.. _#279: https://github.com/elastic/eland/pull/279
|
||||||
|
.. _#283: https://github.com/elastic/eland/pull/283
|
||||||
|
.. _#285: https://github.com/elastic/eland/pull/285
|
||||||
|
.. _#291: https://github.com/elastic/eland/pull/291
|
||||||
|
.. _#292: https://github.com/elastic/eland/pull/292
|
||||||
|
.. _#295: https://github.com/elastic/eland/pull/295
|
||||||
|
.. _#300: https://github.com/elastic/eland/pull/300
|
||||||
|
.. _#301: https://github.com/elastic/eland/pull/301
|
||||||
|
.. _#302: https://github.com/elastic/eland/pull/302
|
||||||
|
.. _#306: https://github.com/elastic/eland/pull/306
|
||||||
|
.. _#310: https://github.com/elastic/eland/pull/310
|
||||||
|
|
||||||
|
|
||||||
7.9.1a1 (2020-09-29)
|
7.9.1a1 (2020-09-29)
|
||||||
--------------------
|
--------------------
|
||||||
|
|
||||||
|
@ -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__ = "7.9.1a1"
|
__version__ = "7.10.0b1"
|
||||||
__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"
|
||||||
|
2
setup.py
2
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 :: 3 - Alpha",
|
"Development Status :: 4 - Beta",
|
||||||
"License :: OSI Approved :: Apache Software License",
|
"License :: OSI Approved :: Apache Software License",
|
||||||
"Environment :: Console",
|
"Environment :: Console",
|
||||||
"Operating System :: OS Independent",
|
"Operating System :: OS Independent",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user