File tree Expand file tree Collapse file tree 3 files changed +10
-4
lines changed Expand file tree Collapse file tree 3 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 3
3
Changelog
4
4
=========
5
5
6
+ 5.5.2 (2018-01-12)
7
+ ------------------
8
+
9
+ * Allow connection to SSL ES instances without verifying certs using
10
+ client key and client cert.
11
+
6
12
5.5.1 (2017-11-10)
7
13
------------------
8
14
@@ -57,7 +63,7 @@ Version compatible with elasticsearch 5.0
57
63
connection classes need to be updated
58
64
* added ``headers `` arg to connections to support custom http headers
59
65
* passing in a keyword parameter with ``None `` as value will cause that param
60
- to be ignored
66
+ to be ignored
61
67
62
68
2.4.0 (2016-08-17)
63
69
------------------
@@ -220,7 +226,7 @@ compatible with 0.90 elasticsearch.
220
226
221
227
0.4.2 (2013-10-08)
222
228
------------------
223
-
229
+
224
230
* ``ignore `` param accepted by all APIs
225
231
* Fixes to ``helpers.bulk_index ``
226
232
Original file line number Diff line number Diff line change 1
1
from __future__ import absolute_import
2
2
3
- VERSION = (5 , 5 , 1 )
3
+ VERSION = (5 , 5 , 2 )
4
4
__version__ = VERSION
5
5
__versionstr__ = '.' .join (map (str , VERSION ))
6
6
Original file line number Diff line number Diff line change 3
3
from setuptools import setup , find_packages
4
4
import sys
5
5
6
- VERSION = (5 , 5 , 1 )
6
+ VERSION = (5 , 5 , 2 )
7
7
__version__ = VERSION
8
8
__versionstr__ = '.' .join (map (str , VERSION ))
9
9
You can’t perform that action at this time.
0 commit comments