forked from jplana/python-etcd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NEWS.txt
169 lines (128 loc) · 4.02 KB
/
NEWS.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
News
====
0.5.0
-----
*Release date: 31-Oct-2023
* Drop python 2.x compatibility (should still work)
* Move to use pytest
* Support urllib3 v2, including support of self-signed certs
* Fix version check to avoid crashes with non-official releases
* Correctly handle watch timeouts in lock
* Allow trying more than one domain when looking up SRV records
* Support auth API both <= 2.2.5 and >= 2.3.0
* Use github actions instead than travis
0.4.5
-----
*Release date: 3-Mar-2017*
* Remove dnspython2/3 requirement
* Change property name setter in lock
* Fixed acl tests
* Added version/cluster_version properties to client
* Fixes in lock when used as context manager
* Fixed improper usage of urllib3 exceptions
* Minor fixes for error classes
* In lock return modifiedIndex to watch changes
* In lock fix context manager exception handling
* Improvments to the documentation
* Remove _base_uri only after refresh from cluster
* Avoid double update of _machines_cache
0.4.4
-----
*Release date: 10-Jan-2017*
* Fix some tests
* Use sys,version_info tuple, instead of named tuple
* Improve & fix documentation
* Fix python3 specific problem when blocking on contented lock
* Add refresh key method
* Add custom lock prefix support
0.4.3
-----
*Release date: 14-Dec-2015*
* Fix check for parameters in case of connection error
* Python 3.5 compatibility and general python3 cleanups
* Added authentication and module for managing ACLs
* Added srv record-based DNS discovery
* Fixed (again) logging of cluster id changes
* Fixed leader lookup
* Properly retry request on exception
* Client: clean up open connections when deleting
0.4.2
-----
*Release date: 8-Oct-2015*
* Fixed lock documentation
* Fixed lock sequences due to etcd 2.2 change
* Better exception management during response processing
* Fixed logging of cluster ID changes
* Fixed subtree results
* Do not check cluster ID if etcd responses don't contain the ID
* Added a cause to EtcdConnectionFailed
0.4.1
-----
*Release date: 1-Aug-2015*
* Added client-side leader election
* Added stats endpoints
* Added logging
* Better exception handling
* Check for cluster ID on each request
* Added etcd.Client.members and fixed etcd.Client.leader
* Removed locking and election etcd support
* Allow the use of etcd proxies with reconnections
* Implement pop: Remove key from etc and return the corresponding value.
* Eternal watcher can be now recursive
* Fix etcd.Client machines
* Do not send parameters with `None` value to etcd
* Support ttl=0 in write.
* Moved pyOpenSSL into test requirements.
* Always set certificate information so redirects from http to https work.
0.3.3
-----
*Release date: 12-Apr-2015*
* Forward leaves_only value in get_subtree() recursive calls
* Fix README prevExists->prevExist
* Added configurable version_prefix
* Added support for recursive watch
* Better error handling support (more detailed exceptions)
* Fixed some unreliable tests
0.3.2
-----
*Release date: 4-Aug-2014*
* Fixed generated documentation version.
0.3.1
-----
*Release date: 4-Aug-2014*
* Added consisten read option
* Fixed timeout parameter in read()
* Added atomic delete parameter support
* Fixed delete behaviour
* Added update method that allows atomic updated on results
* Fixed checks on write()
* Added leaves generator to EtcdResult and get_subtree for recursive fetch
* Added etcd_index to EtcdResult
* Changed ethernal -> eternal
* Updated urllib3 & pyOpenSSL libraries
* Several performance fixes
* Better parsing of etcd_index and raft_index
* Removed duplicated tests
* Added several integration and unit tests
* Use etcd v0.3.0 in travis
* Execute test using `python setup.py test` and nose
0.3.0
-----
*Release date: 18-Jan-2014*
* API v2 support
* Python 3.3 compatibility
0.2.1
-----
*Release data: 30-Nov-2013*
* SSL support
* Added support for subdirectories in results.
* Improve test
* Added support for reconnections, allowing death node tolerance.
0.2.0
-----
*Release date: 30-Sep-2013*
* Allow fetching of multiple keys (sub-nodes)
0.1
---
*Release date: 18-Sep-2013*
* Initial release