summary refs log tree commit diff
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2016-11-08 14:39:55 +0000
committerErik Johnston <erik@matrix.org>2016-11-08 14:39:55 +0000
commit3c09818d914219c3946f5298679e61de4e27a410 (patch)
tree0fddc5139ddd2509422cba07e544a4998f19c8e7
parentExplicitly set authentication mode in ldap3 (diff)
downloadsynapse-3c09818d914219c3946f5298679e61de4e27a410.tar.xz
Bump version and changelog
-rw-r--r--CHANGES.rst13
-rw-r--r--synapse/__init__.py2
2 files changed, 14 insertions, 1 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index 371f26eb6e..1ce58632b8 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -1,3 +1,16 @@
+Changes in synapse v0.18.3 (2016-11-08)
+=======================================
+
+SECURITY UPDATE
+
+Explicitly require authentication when using LDAP3. This is the default on
+versions of ``ldap3`` above 1.0, but some distributions will package an older
+version.
+
+If you are using LDAP3 login and have a version of ``ldap3`` older than 1.0 it
+is **CRITICAL to updgrade**.
+
+
 Changes in synapse v0.18.2 (2016-11-01)
 =======================================
 
diff --git a/synapse/__init__.py b/synapse/__init__.py
index 4e2a592d3d..d366b69dab 100644
--- a/synapse/__init__.py
+++ b/synapse/__init__.py
@@ -16,4 +16,4 @@
 """ This is a reference implementation of a Matrix home server.
 """
 
-__version__ = "0.18.2"
+__version__ = "0.18.3"