File tree Expand file tree Collapse file tree 4 files changed +19
-14
lines changed Expand file tree Collapse file tree 4 files changed +19
-14
lines changed Original file line number Diff line number Diff line change 99 - " 3.5"
1010 - " 3.6"
1111 - " 3.7"
12+ - " 3.8"
1213
1314env :
1415 # different connection classes to test
Original file line number Diff line number Diff line change 22
33Changelog
44=========
5- 7.1.0 (dev)
6- -----------
5+
6+ 7.1.0 (2019-11-14)
7+ ------------------
8+ * Fix sniffing with ``http.publish_host ``
9+ * Fix ``request_timeout `` for ``indices `` APIs
10+ * Allow access to ``x-pack `` features without ``xpack `` namespace
11+ * Fix mark dead
712
8137.0.5 (2019-10-01)
9- -----------
14+ ------------------
1015 * Fix ``verify_certs=False ``
1116
12177.0.4 (2019-08-22)
13- -----------
18+ ------------------
1419 * Fix wheel distribution
1520
16217.0.3 (2019-08-21)
17- -----------
22+ ------------------
1823 * remove sleep in retries
1924 * pass ``scroll_id `` through body in ``scroll ``
2025 * add ``user-agent ``
2126
22277.0.2 (2019-05-29)
23- -----------
28+ ------------------
2429 * Add connection parameter for Elastic Cloud cloud_id.
2530 * ML client uses client object for _bulk_body requests
2631
27327.0.1 (2019-05-19)
28- -----------
33+ ------------------
2934 * Use black to format the code.
3035 * Update the test matrix to only use current pythons and 7.x ES
3136 * Blocking pool must fit thread_count
3237 * Update client to support missing ES 7 API's and query params.
3338
34397.0.0 (2019-04-11)
35- -----------
40+ ------------------
3641 * Removed deprecated option ``update_all_types ``.
3742 * Using insecure SSL configuration (``verify_cert=False ``) raises a warning, this can
3843 be not showed with ``ssl_show_warn=False ``
3944 * Add support for 7.x api's in Elasticsearch both xpack and oss flavors
45+
40466.3.0 (2018-06-20)
41- -----------
47+ ------------------
4248
4349 * Add an exponential wait on delays
4450 * Fix issues with dependencies
Original file line number Diff line number Diff line change 11# flake8: noqa
22from __future__ import absolute_import
33
4- VERSION = (7 , 0 , 5 )
4+ VERSION = (7 , 1 , 0 )
55__version__ = VERSION
66__versionstr__ = "." .join (map (str , VERSION ))
77
Original file line number Diff line number Diff line change 33from setuptools import setup , find_packages
44import sys
55
6- VERSION = (7 , 0 , 5 )
6+ VERSION = (7 , 1 , 0 )
77__version__ = VERSION
88__versionstr__ = "." .join (map (str , VERSION ))
99
4242 "Operating System :: OS Independent" ,
4343 "Programming Language :: Python" ,
4444 "Programming Language :: Python :: 2" ,
45- "Programming Language :: Python :: 2.6" ,
4645 "Programming Language :: Python :: 2.7" ,
4746 "Programming Language :: Python :: 3" ,
48- "Programming Language :: Python :: 3.2" ,
49- "Programming Language :: Python :: 3.3" ,
5047 "Programming Language :: Python :: 3.4" ,
5148 "Programming Language :: Python :: 3.5" ,
5249 "Programming Language :: Python :: 3.6" ,
5350 "Programming Language :: Python :: 3.7" ,
51+ "Programming Language :: Python :: 3.8" ,
5452 "Programming Language :: Python :: Implementation :: CPython" ,
5553 "Programming Language :: Python :: Implementation :: PyPy" ,
5654 ],
You can’t perform that action at this time.
0 commit comments