summary refs log tree commit diff
diff options
context:
space:
mode:
authorAndrew Morgan <andrew@amorgan.xyz>2020-02-26 12:12:22 +0000
committerAndrew Morgan <andrew@amorgan.xyz>2020-02-26 12:12:22 +0000
commit3a2008d23b3f785ee0a2df6c79dce179206c6de6 (patch)
tree9d81aed4c3b52a578f2587e249a1270f166e3929
parentFix up some typechecking (#6150) (diff)
parent1.4.0rc2 (diff)
downloadsynapse-3a2008d23b3f785ee0a2df6c79dce179206c6de6.tar.xz
1.4.0rc2
-rw-r--r--CHANGES.md18
-rw-r--r--changelog.d/6117.misc1
-rw-r--r--changelog.d/6135.bugfix1
-rw-r--r--changelog.d/6141.bugfix1
-rw-r--r--changelog.d/6145.bugfix1
-rw-r--r--changelog.d/6146.bugfix1
-rw-r--r--synapse/__init__.py2
7 files changed, 19 insertions, 6 deletions
diff --git a/CHANGES.md b/CHANGES.md

index 0a0d0b3439..78322a08c1 100644 --- a/CHANGES.md +++ b/CHANGES.md
@@ -1,3 +1,21 @@ +Synapse 1.4.0rc2 (2019-10-02) +============================= + +Bugfixes +-------- + +- Fix bug in background update that adds last seen information to the `devices` table, and improve its performance on Postgres. ([\#6135](https://github.com/matrix-org/synapse/issues/6135)) +- Fix bad performance of censoring redactions background task. ([\#6141](https://github.com/matrix-org/synapse/issues/6141)) +- Fix fetching censored redactions from DB, which caused APIs like initial sync to fail if it tried to include the censored redaction. ([\#6145](https://github.com/matrix-org/synapse/issues/6145)) +- Fix exceptions when storing large retry intervals for down remote servers. ([\#6146](https://github.com/matrix-org/synapse/issues/6146)) + + +Internal Changes +---------------- + +- Fix up sample config entry for `redaction_retention_period` option. ([\#6117](https://github.com/matrix-org/synapse/issues/6117)) + + Synapse 1.4.0rc1 (2019-09-26) ============================= diff --git a/changelog.d/6117.misc b/changelog.d/6117.misc deleted file mode 100644
index f8bdb58f41..0000000000 --- a/changelog.d/6117.misc +++ /dev/null
@@ -1 +0,0 @@ -Fix up sample config entry for `redaction_retention_period` option. diff --git a/changelog.d/6135.bugfix b/changelog.d/6135.bugfix deleted file mode 100644
index 5f9f010cb1..0000000000 --- a/changelog.d/6135.bugfix +++ /dev/null
@@ -1 +0,0 @@ -Fix bug in background update that adds last seen information to the `devices` table, and improve its performance on Postgres. diff --git a/changelog.d/6141.bugfix b/changelog.d/6141.bugfix deleted file mode 100644
index c93920b7b5..0000000000 --- a/changelog.d/6141.bugfix +++ /dev/null
@@ -1 +0,0 @@ -Fix bad performance of censoring redactions background task. diff --git a/changelog.d/6145.bugfix b/changelog.d/6145.bugfix deleted file mode 100644
index 9e0eb5dd4c..0000000000 --- a/changelog.d/6145.bugfix +++ /dev/null
@@ -1 +0,0 @@ -Fix fetching censored redactions from DB, which caused APIs like initial sync to fail if it tried to include the censored redaction. diff --git a/changelog.d/6146.bugfix b/changelog.d/6146.bugfix deleted file mode 100644
index 1dad801836..0000000000 --- a/changelog.d/6146.bugfix +++ /dev/null
@@ -1 +0,0 @@ -Fix exceptions when storing large retry intervals for down remote servers. diff --git a/synapse/__init__.py b/synapse/__init__.py
index ddfe9ec542..5197eea22e 100644 --- a/synapse/__init__.py +++ b/synapse/__init__.py
@@ -35,4 +35,4 @@ try: except ImportError: pass -__version__ = "1.4.0rc1" +__version__ = "1.4.0rc2"