Add release notes

Change-Id: Iecb4c53add040e564f9cf7e1ccb7b44755b3355d
This commit is contained in:
Fei Long Wang 2016-06-08 07:11:15 +12:00
parent 5d1964d96b
commit e9dbb19a3a
3 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,7 @@
---
fixes:
- |
When access the root path of Zaqar service, for example:
curl GET http://127.0.0.1:8888/, user will see 401 error. Which
will cause some front end proxy (like HAProxy) to complain. Now this issue
has been fixed.

View File

@ -0,0 +1,8 @@
---
features:
- Currently Zaqar can support more built-in/reserved attributes in queue.
For now there are two important attributes 'max_messages_post_size' and
'max_message_ttl'. With this feature, when user query queues Zaqar will show
those two attributes (read from config file if there is no customized value
from user) in queue metadata so that user can know what value it is.

View File

@ -0,0 +1,7 @@
---
fixes:
- In IPv6 management network environment, starting Zaqar server will
run into 'Address family for hostname not support' error when use WSGI
simple server. The root cause is that Python's TCPServer implementation
is hard-coded to use IPv4, even in IPv6 environments. Now this issue has
been fixed.