summary refs log tree commit diff
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2016-06-08 16:26:26 +0100
committerErik Johnston <erik@matrix.org>2016-06-08 16:26:26 +0100
commit919a2c74f631c250e080a3a54e53f13cfdff3bee (patch)
tree7bfcefb5cd7612d5434545950bc2d3ae862693d8
parentMerge pull request #857 from matrix-org/erikj/default_visibility (diff)
parentUpdate commit hash in changelog (diff)
downloadsynapse-919a2c74f631c250e080a3a54e53f13cfdff3bee.tar.xz
Merge branch 'release-v0.16.0' of github.com:matrix-org/synapse into develop
-rw-r--r--CHANGES.rst27
-rw-r--r--synapse/__init__.py2
2 files changed, 28 insertions, 1 deletions
diff --git a/CHANGES.rst b/CHANGES.rst

index e77b31b583..6194b3eb69 100644 --- a/CHANGES.rst +++ b/CHANGES.rst
@@ -1,3 +1,30 @@ +Changes in synapse v0.16.0-rc2 (2016-06-08) +=========================================== + +Features: + +* Add configuration option for tuning GC via ``gc.set_threshold`` (PR #849) + +Changes: + +* Record metrics about GC (PR #771, #847, #852) +* Add metric counter for number of persisted events (PR #841) + +Bug fixes: + +* Fix 'From' header in email notifications (PR #843) +* Fix presence where timeouts were not being fired for the first 8h after + restarts (PR #842) +* Fix bug where synapse sent malformed transactions to AS's when retrying + transactions (Commits 310197b, 8437906) + +Performance Improvements: + +* Remove event fetching from DB threads (PR #835) +* Change the way we cache events (PR #836) +* Add events to cache when we persist them (PR #840) + + Changes in synapse v0.16.0-rc1 (2016-06-03) =========================================== diff --git a/synapse/__init__.py b/synapse/__init__.py
index 3b290db79f..ad088a7880 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.16.0-rc1" +__version__ = "0.16.0-rc2"