Skip to content

Commit 6cf8318

Browse files
committed
RELEASE 0.2.3 version
1 parent 39d53d8 commit 6cf8318

File tree

3 files changed

+30
-15
lines changed

3 files changed

+30
-15
lines changed

AUTHORS

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
Christian Rovner <[email protected]>
12
Michael Balser <[email protected]>
23
Ori Shoshan <[email protected]>
34
Pavlos Parissis <[email protected]>

ChangeLog

+28-14
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,20 @@
11
CHANGES
22
=======
33

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+
418
0.2.2
519
-----
620

@@ -16,7 +30,7 @@ CHANGES
1630
* DOC: Change python version we use for development
1731
* Ignore Python 3 class hierarchy of OSError errors
1832
* 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
2034
* Fix incorrect module path for constants in docstring
2135
* Add support for slim metric to Server object
2236
* List server metric names in alphabetic order
@@ -99,7 +113,7 @@ CHANGES
99113
* fix a regression introduced with dcc5173e31deac
100114
* add support for sending commands to haproxy
101115
* 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()
103117
* fix (once again) format issues in TODO.rst
104118
* fix format issues in TODO.rst
105119
* add some ordering in our TODO items
@@ -142,7 +156,7 @@ CHANGES
142156
* internal.py: OSError exception doesn't have message attribute
143157
* remove unnecessary declaration
144158
* 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
146160
* import all exceptions in the doc rather import each one individually
147161
* exceptions.py: use correct exception names
148162
* add SocketTimeout exception and raise it when we got timeout after X retries
@@ -164,8 +178,8 @@ CHANGES
164178
-----
165179

166180
* 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
169183
* update TODO
170184
* update docstring for acl commands
171185

@@ -187,7 +201,7 @@ CHANGES
187201
* tiny reformatting on exceptions
188202
* haproxy.py: explicitly check for the existence of socket directory
189203
* Update TODO
190-
* extend ERROR_OUTPUT_STRINGS to support address field
204+
* extend ERROR\_OUTPUT\_STRINGS to support address field
191205
* include Socket family exceptions in the documentation
192206
* updates on ChangeLog
193207

@@ -198,7 +212,7 @@ CHANGES
198212
* haproxy.py: reformating
199213
* utils.py: raise an appropriate exception when we check for valid socket files
200214
* 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
202216

203217
0.0.4
204218
-----
@@ -207,7 +221,7 @@ CHANGES
207221
* update TODO
208222
* haproxy.py: fix a bug in add map where we forgot to set value
209223
* 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
211225
* include six and not docopt in requirements.txt
212226
* add requirements file for pip installations
213227
* bump version on docs as well
@@ -220,7 +234,7 @@ CHANGES
220234

221235
* RELEASE 0.0.3 version
222236
* DOC: another set of updates
223-
* rename get_frontends to frontends
237+
* rename get\_frontends to frontends
224238
* Performance improvements due to the way we interact with stats socket
225239
* update haproxy.cfg, give a unique name for each listen directive
226240
* Update TODO.rst
@@ -233,7 +247,7 @@ CHANGES
233247
* DOC: add remaining examples for frontends in User Guide
234248
* README: add missing variable
235249
* DOC: add examples for backends in User Guide
236-
* backend.py: remove status from BACKEND_METRICS
250+
* backend.py: remove status from BACKEND\_METRICS
237251
* DOC: add a bunch of examples for frontends in User Guide
238252
* DOC: add missing example code
239253
* DOC: add more examples for HAProxy operations in the User Guide
@@ -256,7 +270,7 @@ CHANGES
256270
* RELEASE 0.0.2 version
257271
* README: merged TODO into README
258272
* 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
260274
* refactor Pool to backend
261275
* refactor PoolMember to Server
262276
* major updates on docstrings to allow sphinx integration
@@ -266,7 +280,7 @@ CHANGES
266280
* utils.py update docstrings
267281
* TODO: work in progress for updating docstrings
268282
* 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
270284
* merged NOTES into TODO
271285
* NOTES: tiny fix
272286
* add some notes
@@ -276,12 +290,12 @@ CHANGES
276290
* haproxy.py: fix typo
277291
* We don't need it anymore and it was a bad idea
278292
* 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
280294
* haproxy.py: docstring fix
281295
* haproxy.py: add a bunch of properties for HAProxy process
282296
* utils.py don't remove trailing whitespace when parse 'show info' output
283297
* 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
285299
* change license to Apache 2.0
286300
* README.rst: add acknowledgement section
287301
* switch to README.rst by removing README.md

haproxyadmin/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
__title__ = 'haproxyadmin'
1111
__author__ = 'Pavlos Parissis'
1212
__license__ = 'Apache 2.0'
13-
__version__ = '0.2.2'
13+
__version__ = '0.2.3'
1414
__copyright__ = 'Copyright 2015-2019 Pavlos Parissis'
1515

1616
from haproxyadmin.haproxy import HAPROXY_METRICS

0 commit comments

Comments
 (0)