1
1
CHANGES
2
2
=======
3
3
4
+ 0.2.3
5
+ -----
6
+
7
+ * RELEASE 0.2.3 version
8
+ * connected\_socket(): fix validation check for HAPEE >= 2.1
9
+ * Remove debugging code
10
+ * Add support for setting the timeout
11
+ * DOC: Update TODO
12
+ * Split internal classes to individual modules
13
+ * Try to smarter when we return address/port
14
+ * Remove useless object inheritance
15
+ * setup.cfg: We don't need psutil anymore
16
+ * DOC: Update docstrings
17
+
4
18
0.2.2
5
19
-----
6
20
@@ -16,7 +30,7 @@ CHANGES
16
30
* DOC: Change python version we use for development
17
31
* Ignore Python 3 class hierarchy of OSError errors
18
32
* Return empty list if a map doesn't have any entries
19
- * Fix example code for show_map function
33
+ * Fix example code for show\_map function
20
34
* Fix incorrect module path for constants in docstring
21
35
* Add support for slim metric to Server object
22
36
* List server metric names in alphabetic order
@@ -99,7 +113,7 @@ CHANGES
99
113
* fix a regression introduced with dcc5173e31deac
100
114
* add support for sending commands to haproxy
101
115
* simplify the way we send commands to socket
102
- * add support for keyword arguments in cmd_across_all_procs ()
116
+ * add support for keyword arguments in cmd\_across\_all\_procs ()
103
117
* fix (once again) format issues in TODO.rst
104
118
* fix format issues in TODO.rst
105
119
* add some ordering in our TODO items
@@ -142,7 +156,7 @@ CHANGES
142
156
* internal.py: OSError exception doesn't have message attribute
143
157
* remove unnecessary declaration
144
158
* don't use relative imports as our module layout is quit flat and very short
145
- * __init__ .py:add version and remove ascii art
159
+ * \_\_init\_\_ .py:add version and remove ascii art
146
160
* import all exceptions in the doc rather import each one individually
147
161
* exceptions.py: use correct exception names
148
162
* add SocketTimeout exception and raise it when we got timeout after X retries
@@ -164,8 +178,8 @@ CHANGES
164
178
-----
165
179
166
180
* RELEASE 0.1.0 version
167
- * raise CommandFailed rather ValueError in show_acl
168
- * show_acl : rename acl argument to aclid to be consistent with show_map
181
+ * raise CommandFailed rather ValueError in show\_acl
182
+ * show\_acl : rename acl argument to aclid to be consistent with show\_map
169
183
* update TODO
170
184
* update docstring for acl commands
171
185
@@ -187,7 +201,7 @@ CHANGES
187
201
* tiny reformatting on exceptions
188
202
* haproxy.py: explicitly check for the existence of socket directory
189
203
* Update TODO
190
- * extend ERROR_OUTPUT_STRINGS to support address field
204
+ * extend ERROR\_OUTPUT\_STRINGS to support address field
191
205
* include Socket family exceptions in the documentation
192
206
* updates on ChangeLog
193
207
@@ -198,7 +212,7 @@ CHANGES
198
212
* haproxy.py: reformating
199
213
* utils.py: raise an appropriate exception when we check for valid socket files
200
214
* add a bunch of exceptions for catching errors when we test socket file
201
- * connected_socket () perform a sanity on the date returned
215
+ * connected\_socket () perform a sanity on the date returned
202
216
203
217
0.0.4
204
218
-----
@@ -207,7 +221,7 @@ CHANGES
207
221
* update TODO
208
222
* haproxy.py: fix a bug in add map where we forgot to set value
209
223
* haproxy.py: ignore socket files not bound to a process
210
- * utils.py: add connected_socket to check if a socket is bound to a process
224
+ * utils.py: add connected\_socket to check if a socket is bound to a process
211
225
* include six and not docopt in requirements.txt
212
226
* add requirements file for pip installations
213
227
* bump version on docs as well
@@ -220,7 +234,7 @@ CHANGES
220
234
221
235
* RELEASE 0.0.3 version
222
236
* DOC: another set of updates
223
- * rename get_frontends to frontends
237
+ * rename get\_frontends to frontends
224
238
* Performance improvements due to the way we interact with stats socket
225
239
* update haproxy.cfg, give a unique name for each listen directive
226
240
* Update TODO.rst
@@ -233,7 +247,7 @@ CHANGES
233
247
* DOC: add remaining examples for frontends in User Guide
234
248
* README: add missing variable
235
249
* DOC: add examples for backends in User Guide
236
- * backend.py: remove status from BACKEND_METRICS
250
+ * backend.py: remove status from BACKEND\_METRICS
237
251
* DOC: add a bunch of examples for frontends in User Guide
238
252
* DOC: add missing example code
239
253
* DOC: add more examples for HAProxy operations in the User Guide
@@ -256,7 +270,7 @@ CHANGES
256
270
* RELEASE 0.0.2 version
257
271
* README: merged TODO into README
258
272
* README: documention reference doesn't need to be a section
259
- * internal.py: wrong refactoring for _Backend class
273
+ * internal.py: wrong refactoring for \ _Backend class
260
274
* refactor Pool to backend
261
275
* refactor PoolMember to Server
262
276
* major updates on docstrings to allow sphinx integration
@@ -266,7 +280,7 @@ CHANGES
266
280
* utils.py update docstrings
267
281
* TODO: work in progress for updating docstrings
268
282
* internal.py: update docstrings
269
- * internal.py: change parameter name to name for get_frontends
283
+ * internal.py: change parameter name to name for get\_frontends
270
284
* merged NOTES into TODO
271
285
* NOTES: tiny fix
272
286
* add some notes
@@ -276,12 +290,12 @@ CHANGES
276
290
* haproxy.py: fix typo
277
291
* We don't need it anymore and it was a bad idea
278
292
* add haproxy.cfg which we use
279
- * utils.py: we don't perform any calculation for Uptime_sec field
293
+ * utils.py: we don't perform any calculation for Uptime\_sec field
280
294
* haproxy.py: docstring fix
281
295
* haproxy.py: add a bunch of properties for HAProxy process
282
296
* utils.py don't remove trailing whitespace when parse 'show info' output
283
297
* haproxy.py: perform calculation in metric() if the caller wants it
284
- * internal.py remove unused function run_commandold
298
+ * internal.py remove unused function run\_commandold
285
299
* change license to Apache 2.0
286
300
* README.rst: add acknowledgement section
287
301
* switch to README.rst by removing README.md
0 commit comments