mirror of
https://github.com/elastic/eland.git
synced 2025-07-11 00:02:14 +08:00
Release 7.13.0b1
This commit is contained in:
parent
ac2efb5863
commit
16178dfb5d
@ -2,6 +2,39 @@
|
|||||||
Changelog
|
Changelog
|
||||||
=========
|
=========
|
||||||
|
|
||||||
|
7.13.0b1 (2021-06-22)
|
||||||
|
---------------------
|
||||||
|
|
||||||
|
Added
|
||||||
|
^^^^^
|
||||||
|
|
||||||
|
* Added ``DataFrame.quantile()``, ``Series.quantile()``, and
|
||||||
|
``DataFrameGroupBy.quantile()`` aggregations (`#318`_ and `#356`_, contributed by `@V1NAY8`_)
|
||||||
|
|
||||||
|
Changed
|
||||||
|
^^^^^^^
|
||||||
|
|
||||||
|
* Changed the error raised when ``es_index_pattern`` doesn't point to any indices
|
||||||
|
to be more user-friendly (`#346`_)
|
||||||
|
|
||||||
|
Fixed
|
||||||
|
^^^^^
|
||||||
|
|
||||||
|
* Fixed a warning about conflicting field types when wildcards are used
|
||||||
|
in ``es_index_pattern`` (`#346`_)
|
||||||
|
|
||||||
|
* Fixed sorting when using ``DataFrame.groupby()`` with ``dropna``
|
||||||
|
(`#322`_, contributed by `@V1NAY8`_)
|
||||||
|
|
||||||
|
* Fixed deprecated usage ``numpy.int`` in favor of ``numpy.int_`` (`#354`_, contributed by `@V1NAY8`_)
|
||||||
|
|
||||||
|
.. _#318: https://github.com/elastic/eland/pull/318
|
||||||
|
.. _#322: https://github.com/elastic/eland/pull/322
|
||||||
|
.. _#346: https://github.com/elastic/eland/pull/346
|
||||||
|
.. _#354: https://github.com/elastic/eland/pull/354
|
||||||
|
.. _#356: https://github.com/elastic/eland/pull/356
|
||||||
|
|
||||||
|
|
||||||
7.10.1b1 (2021-01-12)
|
7.10.1b1 (2021-01-12)
|
||||||
---------------------
|
---------------------
|
||||||
|
|
||||||
|
@ -290,7 +290,7 @@ script instead of being modified manually.
|
|||||||
+---------------------------------------+------------+
|
+---------------------------------------+------------+
|
||||||
| ``ed.DataFrame.product()`` | No |
|
| ``ed.DataFrame.product()`` | No |
|
||||||
+---------------------------------------+------------+
|
+---------------------------------------+------------+
|
||||||
| ``ed.DataFrame.quantile()`` | No |
|
| ``ed.DataFrame.quantile()`` | **Yes** |
|
||||||
+---------------------------------------+------------+
|
+---------------------------------------+------------+
|
||||||
| ``ed.DataFrame.query()`` | **Yes** |
|
| ``ed.DataFrame.query()`` | **Yes** |
|
||||||
+---------------------------------------+------------+
|
+---------------------------------------+------------+
|
||||||
@ -874,7 +874,7 @@ script instead of being modified manually.
|
|||||||
+---------------------------------------+------------+
|
+---------------------------------------+------------+
|
||||||
| ``ed.Series.product()`` | No |
|
| ``ed.Series.product()`` | No |
|
||||||
+---------------------------------------+------------+
|
+---------------------------------------+------------+
|
||||||
| ``ed.Series.quantile()`` | No |
|
| ``ed.Series.quantile()`` | **Yes** |
|
||||||
+---------------------------------------+------------+
|
+---------------------------------------+------------+
|
||||||
| ``ed.Series.radd()`` | **Yes** |
|
| ``ed.Series.radd()`` | **Yes** |
|
||||||
+---------------------------------------+------------+
|
+---------------------------------------+------------+
|
||||||
|
@ -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.10.1b1"
|
__version__ = "7.13.1b1"
|
||||||
__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"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user