diff options
author | Erik Johnston <erik@matrix.org> | 2017-09-25 14:52:46 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2017-09-25 14:52:46 +0100 |
commit | 44edac049761dc8c848ea105444310efd3575171 (patch) | |
tree | 2454c8bb83c5f8fe1a7d7257ea6fb8d412bb2a54 | |
parent | Merge pull request #2390 from r3dey3/develop (diff) | |
parent | Update CHANGES (diff) | |
download | synapse-44edac049761dc8c848ea105444310efd3575171.tar.xz |
Merge branch 'release-v0.23.0' of github.com:matrix-org/synapse into develop
-rw-r--r-- | CHANGES.rst | 32 | ||||
-rw-r--r-- | synapse/__init__.py | 2 |
2 files changed, 33 insertions, 1 deletions
diff --git a/CHANGES.rst b/CHANGES.rst index a415944756..b7abe32519 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,35 @@ +Changes in synapse v0.23.0-rc1 (2017-09-25) +=========================================== + +Features: + +* Add a frontend proxy worker (PR #2344) +* Add support for event_id_only push format (PR #2450) +* Add a PoC for filtering spammy events (PR #2456) +* Add a config option to block all room invites (PR #2457) + + +Changes: + +* Use bcrypt module instead of py-bcrypt (PR #2288) Thanks to @kyrias! +* Improve performance of generating push notifications (PR #2343, #2357, #2365, + #2366, #2371) +* Improve DB performance for device list handling in sync (PR #2362) +* Include a sample prometheus config (PR #2416) +* Document known to work postgres version (PR #2433) Thanks to @ptman! + + +Bug fixes: + +* Fix caching error in the push evaluator (PR #2332) +* Fix bug where pusherpool didn't start and broke some rooms (PR #2342) +* Fix port script for user directory tables (PR #2375) +* Fix device lists notifications when user rejoins a room (PR #2443, #2449) +* Fix sync to always send down current state events in timeline (PR #2451) +* Fix bug where guest users were incorrectly kicked (PR #2453) +* Fix bug talking to IPv6 only servers using SRV records (PR #2462) + + Changes in synapse v0.22.1 (2017-07-06) ======================================= diff --git a/synapse/__init__.py b/synapse/__init__.py index dbf22eca00..30f78c11d1 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.22.1" +__version__ = "0.23.0-rc1" |