summary refs log tree commit diff
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2016-08-24 14:50:42 +0100
committerErik Johnston <erik@matrix.org>2016-08-24 14:50:42 +0100
commiteb6a7cf3f40e96a6c7eb79ab8f0e02ee58bcf38b (patch)
tree1c843a49d3d5168ff998a54f50d30cdc3814f104
parentMerge pull request #1042 from matrix-org/erikj/preserve_log_contexts (diff)
parentBump changelog and version (diff)
downloadsynapse-eb6a7cf3f40e96a6c7eb79ab8f0e02ee58bcf38b.tar.xz
Merge branch 'release-v0.17.1' of github.com:matrix-org/synapse into develop
-rw-r--r--CHANGES.rst47
-rw-r--r--synapse/__init__.py2
2 files changed, 48 insertions, 1 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index 7ebb42b0fc..49673ccce4 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -1,3 +1,50 @@
+Changes in synapse v0.17.1 (2016-08-24)
+=======================================
+
+Changes:
+
+* Delete old received_transactions rows (PR #1038)
+* Pass through user-supplied content in /join/$room_id (PR #1039)
+
+
+Bug fixes:
+
+* Fix bug with backfill (PR #1040)
+
+
+Changes in synapse v0.17.1-rc1 (2016-08-22)
+===========================================
+
+Features:
+
+* Add notification API (PR #1028)
+
+
+Changes:
+
+* Don't print stack traces when failing to get remote keys (PR #996)
+* Various federation /event/ perf improvements (PR #998)
+* Only process one local membership event per room at a time (PR #1005)
+* Move default display name push rule (PR #1011, #1023)
+* Fix up preview URL API. Add tests. (PR #1015)
+* Set ``Content-Security-Policy`` on media repo (PR #1021)
+* Make notify_interested_services faster (PR #1022)
+* Add usage stats to prometheus monitoring (PR #1037)
+
+
+Bug fixes:
+
+* Fix token login (PR #993)
+* Fix CAS login (PR #994, #995)
+* Fix /sync to not clobber status_msg (PR #997)
+* Fix redacted state events to include prev_content (PR #1003)
+* Fix some bugs in the auth/ldap handler (PR #1007)
+* Fix backfill request to limit URI length, so that remotes don't reject the
+  requests due to path length limits (PR #1012)
+* Fix AS push code to not send duplicate events (PR #1025)
+
+
+
 Changes in synapse v0.17.0 (2016-08-08)
 =======================================
 
diff --git a/synapse/__init__.py b/synapse/__init__.py
index a63ee565cf..43bf78f885 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.17.0"
+__version__ = "0.17.1"