mirror of
https://github.com/elastic/eland.git
synced 2025-07-11 00:02:14 +08:00
Release 7.14.0b1
This commit is contained in:
parent
15ba8d3e02
commit
b0c8434c06
@ -2,6 +2,41 @@
|
||||
Changelog
|
||||
=========
|
||||
|
||||
7.14.0b1 (2021-08-09)
|
||||
---------------------
|
||||
|
||||
Added
|
||||
^^^^^
|
||||
|
||||
* Added support for Pandas 1.3.x (`#362`_, contributed by `@V1NAY8`_)
|
||||
* Added support for LightGBM 3.x (`#362`_, contributed by `@V1NAY8`_)
|
||||
* Added ``DataFrame.idxmax()`` and ``DataFrame.idxmin()`` methods (`#353`_, contributed by `@V1NAY8`_)
|
||||
* Added type hints to ``eland.ndframe`` and ``eland.operations`` (`#366`_, contributed by `@V1NAY8`_)
|
||||
|
||||
Removed
|
||||
^^^^^^^
|
||||
|
||||
* Removed support for Pandas <1.2 (`#364`_)
|
||||
* Removed support for Python 3.6 to match Pandas (`#364`_)
|
||||
|
||||
Changed
|
||||
^^^^^^^
|
||||
|
||||
* Changed paginated search function to use `Point-in-Time`_ and `Search After`_ features
|
||||
instead of Scroll when connected to Elasticsearch 7.12+ (`#370`_ and `#376`_, contributed by `@V1NAY8`_)
|
||||
* Optimized the ``FieldMappings.aggregate_field_name()`` method (`#373`_, contributed by `@V1NAY8`_)
|
||||
|
||||
.. _Point-in-Time: https://www.elastic.co/guide/en/elasticsearch/reference/current/point-in-time-api.html
|
||||
.. _Search After: https://www.elastic.co/guide/en/elasticsearch/reference/7.14/paginate-search-results.html#search-after
|
||||
.. _#353: https://github.com/elastic/eland/pull/353
|
||||
.. _#362: https://github.com/elastic/eland/pull/362
|
||||
.. _#364: https://github.com/elastic/eland/pull/364
|
||||
.. _#366: https://github.com/elastic/eland/pull/366
|
||||
.. _#370: https://github.com/elastic/eland/pull/370
|
||||
.. _#373: https://github.com/elastic/eland/pull/373
|
||||
.. _#376: https://github.com/elastic/eland/pull/376
|
||||
|
||||
|
||||
7.13.0b1 (2021-06-22)
|
||||
---------------------
|
||||
|
||||
|
@ -16,8 +16,8 @@
|
||||
src="https://clients-ci.elastic.co/buildStatus/icon?job=elastic%2Beland%2Bmaster" alt="Build Status"></a>
|
||||
<a href="https://github.com/elastic/eland/blob/master/LICENSE.txt"><img src="https://img.shields.io/pypi/l/eland.svg"
|
||||
alt="License"></a>
|
||||
<a href="https://eland.readthedocs.io/en/7.10.0b1/?badge=7.10.0b1"><img
|
||||
src="https://readthedocs.org/projects/eland/badge/?version=7.10.0b1" alt="Documentation Status"></a>
|
||||
<a href="https://eland.readthedocs.io"><img
|
||||
src="https://readthedocs.org/projects/eland/badge/?version=latest" alt="Documentation Status"></a>
|
||||
</div>
|
||||
|
||||
## About
|
||||
@ -47,10 +47,10 @@ Eland can also be installed from [Conda Forge](https://anaconda.org/conda-forge/
|
||||
$ conda install -c conda-forge eland
|
||||
```
|
||||
|
||||
### Supported Versions
|
||||
### Compatibility
|
||||
|
||||
- Supports Python 3.7+ and Pandas 1.3
|
||||
- Supports Elasticsearch clusters that are 7.x+, recommended 7.14 or later for all features to work.
|
||||
- Supports Elasticsearch clusters that are 7.11+, recommended 7.14 or later for all features to work.
|
||||
|
||||
### Connecting to Elasticsearch
|
||||
|
||||
|
@ -8,8 +8,8 @@ Source code is available on https://github.com/elastic/eland[GitHub].
|
||||
[discrete]
|
||||
=== Compatibility
|
||||
|
||||
The library is compatible with Python 3.7 and later and all
|
||||
{es} versions since 7.14 but you **should use a matching major version**:
|
||||
- Supports Python 3.7+ and Pandas 1.3
|
||||
- Supports {es} clusters that are 7.11+, recommended 7.14 or later for all features to work.
|
||||
|
||||
The recommended way to set your requirements in your `setup.py` or
|
||||
`requirements.txt` is::
|
||||
|
@ -182,9 +182,9 @@ script instead of being modified manually.
|
||||
+---------------------------------------+------------+
|
||||
| ``ed.DataFrame.iat`` | No |
|
||||
+---------------------------------------+------------+
|
||||
| ``ed.DataFrame.idxmax()`` | No |
|
||||
| ``ed.DataFrame.idxmax()`` | **Yes** |
|
||||
+---------------------------------------+------------+
|
||||
| ``ed.DataFrame.idxmin()`` | No |
|
||||
| ``ed.DataFrame.idxmin()`` | **Yes** |
|
||||
+---------------------------------------+------------+
|
||||
| ``ed.DataFrame.iloc`` | No |
|
||||
+---------------------------------------+------------+
|
||||
@ -424,6 +424,8 @@ script instead of being modified manually.
|
||||
+---------------------------------------+------------+
|
||||
| ``ed.DataFrame.to_xarray()`` | No |
|
||||
+---------------------------------------+------------+
|
||||
| ``ed.DataFrame.to_xml()`` | No |
|
||||
+---------------------------------------+------------+
|
||||
| ``ed.DataFrame.transform()`` | No |
|
||||
+---------------------------------------+------------+
|
||||
| ``ed.DataFrame.transpose()`` | No |
|
||||
@ -508,7 +510,7 @@ script instead of being modified manually.
|
||||
+---------------------------------------+------------+
|
||||
| ``ed.DataFrame.__gt__()`` | **Yes** |
|
||||
+---------------------------------------+------------+
|
||||
| ``ed.DataFrame.__hash__()`` | **Yes** |
|
||||
| ``ed.DataFrame.__hash__`` | **Yes** |
|
||||
+---------------------------------------+------------+
|
||||
| ``ed.DataFrame.__iadd__()`` | No |
|
||||
+---------------------------------------+------------+
|
||||
@ -1090,7 +1092,7 @@ script instead of being modified manually.
|
||||
+---------------------------------------+------------+
|
||||
| ``ed.Series.__gt__()`` | **Yes** |
|
||||
+---------------------------------------+------------+
|
||||
| ``ed.Series.__hash__()`` | **Yes** |
|
||||
| ``ed.Series.__hash__`` | **Yes** |
|
||||
+---------------------------------------+------------+
|
||||
| ``ed.Series.__iadd__()`` | No |
|
||||
+---------------------------------------+------------+
|
||||
|
Loading…
x
Reference in New Issue
Block a user