From 855645c71955ba16458e888efeda9e26a30be73a Mon Sep 17 00:00:00 2001 From: Erik Johnston Date: Tue, 25 Oct 2016 11:16:16 +0100 Subject: [PATCH 1/2] Bump version and changelog --- CHANGES.rst | 19 +++++++++++++++++++ synapse/__init__.py | 2 +- 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index 1f97680f4..174fea998 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,22 @@ +Changes in synapse v0.18.2-rc2 (2016-10-25) +=========================================== + +Changes: + +* Clarify Error codes for GET /filter/, thanks to Alexander Maznev (PR #1164) +* Make password reset email field case insensitive (PR #1170) +* Reduce redundant database work in email pusher (PR #1174) +* Allow Configurable Rate Limiting Per AS (PR #1175) +* Check whether to ratelimit sooner to avoid work (PR #1176) +* Standardise prometheus metrics (PR #1177) + + +Bug fixes: + +* Fix incredibly slow back pagination query (PR #1178) +* Fix infinite typing bug (PR #1179) + + Changes in synapse v0.18.2-rc1 (2016-10-17) =========================================== diff --git a/synapse/__init__.py b/synapse/__init__.py index 6333c1119..fdffbfe81 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-rc1" +__version__ = "0.18.2-rc2" From f138bb40e206273fd0d29f57687ac218194c0f9c Mon Sep 17 00:00:00 2001 From: Erik Johnston Date: Tue, 25 Oct 2016 11:23:40 +0100 Subject: [PATCH 2/2] Fixup change log --- CHANGES.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 174fea998..4291ccc7a 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -3,10 +3,10 @@ Changes in synapse v0.18.2-rc2 (2016-10-25) Changes: -* Clarify Error codes for GET /filter/, thanks to Alexander Maznev (PR #1164) +* Clarify error codes for GET /filter/, thanks to Alexander Maznev (PR #1164) * Make password reset email field case insensitive (PR #1170) * Reduce redundant database work in email pusher (PR #1174) -* Allow Configurable Rate Limiting Per AS (PR #1175) +* Allow configurable rate limiting per AS (PR #1175) * Check whether to ratelimit sooner to avoid work (PR #1176) * Standardise prometheus metrics (PR #1177)