summaryrefslogtreecommitdiff
path: root/src/mailman/docs
diff options
context:
space:
mode:
authorBarry Warsaw2015-12-30 14:34:18 -0500
committerBarry Warsaw2015-12-30 14:38:10 -0500
commitdac929973fbfc7ac4c807afafc22b992510b4e6d (patch)
tree7deb45c8500cf099215fce8e61055b7e1242fb57 /src/mailman/docs
parent8e69b848270da6ba4852f8c6dfdeeed8124ab024 (diff)
downloadmailman-dac929973fbfc7ac4c807afafc22b992510b4e6d.tar.gz
mailman-dac929973fbfc7ac4c807afafc22b992510b4e6d.tar.zst
mailman-dac929973fbfc7ac4c807afafc22b992510b4e6d.zip
Major push for completing issue #121. Now in API 3.1, all UUIDs must be the
hex representations of a UUID, not the int representation. Also: * Some general code cleanup. * Fix issue 185 (REST server crash when subscribing a user without a preferred address).
Diffstat (limited to 'src/mailman/docs')
-rw-r--r--src/mailman/docs/NEWS.rst4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mailman/docs/NEWS.rst b/src/mailman/docs/NEWS.rst
index 848106a86..e74a01d44 100644
--- a/src/mailman/docs/NEWS.rst
+++ b/src/mailman/docs/NEWS.rst
@@ -54,6 +54,8 @@ Bugs
store. Given by Aurélien Bompard, tweaked by Barry Warsaw. (Closes: #167)
* Fix a bug in ``SubscriptionService.find_members()`` when searching for a
subscribed address that is not linked to a user. Given by Aurélien Bompard.
+ * Fix a REST server crash when trying to subscribe a user without a preferred
+ address. (Closes #185)
Configuration
-------------
@@ -101,7 +103,7 @@ REST
* REST API version 3.1 introduced. Mostly backward compatible with version
3.0 except that UUIDs are represented as hex strings instead of 128-bit
integers, since the latter are not compatible with all versions of
- JavaScript.
+ JavaScript. (Closes #121)
* When creating a user via REST using an address that already exists, but
isn't linked, the address is linked to the new user. Given by Aurélien
Bompard.