Version bump to 7.1.0
This commit is contained in:
@@ -9,6 +9,7 @@ python:
|
||||
- "3.5"
|
||||
- "3.6"
|
||||
- "3.7"
|
||||
- "3.8"
|
||||
|
||||
env:
|
||||
# different connection classes to test
|
||||
|
||||
+15
-9
@@ -2,43 +2,49 @@
|
||||
|
||||
Changelog
|
||||
=========
|
||||
7.1.0 (dev)
|
||||
-----------
|
||||
|
||||
7.1.0 (2019-11-14)
|
||||
------------------
|
||||
* Fix sniffing with ``http.publish_host``
|
||||
* Fix ``request_timeout`` for ``indices`` APIs
|
||||
* Allow access to ``x-pack`` features without ``xpack`` namespace
|
||||
* Fix mark dead
|
||||
|
||||
7.0.5 (2019-10-01)
|
||||
-----------
|
||||
------------------
|
||||
* Fix ``verify_certs=False``
|
||||
|
||||
7.0.4 (2019-08-22)
|
||||
-----------
|
||||
------------------
|
||||
* Fix wheel distribution
|
||||
|
||||
7.0.3 (2019-08-21)
|
||||
-----------
|
||||
------------------
|
||||
* remove sleep in retries
|
||||
* pass ``scroll_id`` through body in ``scroll``
|
||||
* add ``user-agent``
|
||||
|
||||
7.0.2 (2019-05-29)
|
||||
-----------
|
||||
------------------
|
||||
* Add connection parameter for Elastic Cloud cloud_id.
|
||||
* ML client uses client object for _bulk_body requests
|
||||
|
||||
7.0.1 (2019-05-19)
|
||||
-----------
|
||||
------------------
|
||||
* Use black to format the code.
|
||||
* Update the test matrix to only use current pythons and 7.x ES
|
||||
* Blocking pool must fit thread_count
|
||||
* Update client to support missing ES 7 API's and query params.
|
||||
|
||||
7.0.0 (2019-04-11)
|
||||
-----------
|
||||
------------------
|
||||
* Removed deprecated option ``update_all_types``.
|
||||
* Using insecure SSL configuration (``verify_cert=False``) raises a warning, this can
|
||||
be not showed with ``ssl_show_warn=False``
|
||||
* Add support for 7.x api's in Elasticsearch both xpack and oss flavors
|
||||
|
||||
6.3.0 (2018-06-20)
|
||||
-----------
|
||||
------------------
|
||||
|
||||
* Add an exponential wait on delays
|
||||
* Fix issues with dependencies
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
# flake8: noqa
|
||||
from __future__ import absolute_import
|
||||
|
||||
VERSION = (7, 0, 5)
|
||||
VERSION = (7, 1, 0)
|
||||
__version__ = VERSION
|
||||
__versionstr__ = ".".join(map(str, VERSION))
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ from os.path import join, dirname
|
||||
from setuptools import setup, find_packages
|
||||
import sys
|
||||
|
||||
VERSION = (7, 0, 5)
|
||||
VERSION = (7, 1, 0)
|
||||
__version__ = VERSION
|
||||
__versionstr__ = ".".join(map(str, VERSION))
|
||||
|
||||
@@ -42,15 +42,13 @@ setup(
|
||||
"Operating System :: OS Independent",
|
||||
"Programming Language :: Python",
|
||||
"Programming Language :: Python :: 2",
|
||||
"Programming Language :: Python :: 2.6",
|
||||
"Programming Language :: Python :: 2.7",
|
||||
"Programming Language :: Python :: 3",
|
||||
"Programming Language :: Python :: 3.2",
|
||||
"Programming Language :: Python :: 3.3",
|
||||
"Programming Language :: Python :: 3.4",
|
||||
"Programming Language :: Python :: 3.5",
|
||||
"Programming Language :: Python :: 3.6",
|
||||
"Programming Language :: Python :: 3.7",
|
||||
"Programming Language :: Python :: 3.8",
|
||||
"Programming Language :: Python :: Implementation :: CPython",
|
||||
"Programming Language :: Python :: Implementation :: PyPy",
|
||||
],
|
||||
|
||||
Reference in New Issue
Block a user