diff options
author | Brendan Abolivier <babolivier@matrix.org> | 2022-05-18 11:41:53 +0100 |
---|---|---|
committer | Brendan Abolivier <babolivier@matrix.org> | 2022-05-18 11:41:53 +0100 |
commit | 1aa30f7b3e7767d2845858f37427282710ee94cc (patch) | |
tree | 26e32d6bc8c9c17190f557a7ef3c0dd4f86b9525 | |
parent | Discard null-containing strings before updating the user directory (#12762) (diff) | |
download | synapse-1aa30f7b3e7767d2845858f37427282710ee94cc.tar.xz |
1.59.1
-rw-r--r-- | CHANGES.md | 9 | ||||
-rw-r--r-- | changelog.d/12762.misc | 1 | ||||
-rw-r--r-- | debian/changelog | 6 | ||||
-rw-r--r-- | pyproject.toml | 2 |
4 files changed, 16 insertions, 2 deletions
diff --git a/CHANGES.md b/CHANGES.md index 56d1a5a7d7..115f4b35ff 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,12 @@ +Synapse 1.59.1 (2022-05-18) +=========================== + +Internal Changes +---------------- + +- Fix a long-standing bug where the user directory background process would fail to make forward progress if a user included a null codepoint in their display name or avatar. ([\#12762](https://github.com/matrix-org/synapse/issues/12762)) + + Synapse 1.59.0 (2022-05-17) =========================== diff --git a/changelog.d/12762.misc b/changelog.d/12762.misc deleted file mode 100644 index 990fb6fe74..0000000000 --- a/changelog.d/12762.misc +++ /dev/null @@ -1 +0,0 @@ -Fix a long-standing bug where the user directory background process would fail to make forward progress if a user included a null codepoint in their display name or avatar. diff --git a/debian/changelog b/debian/changelog index cc6152d5b3..dda342a630 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +matrix-synapse-py3 (1.59.1) stable; urgency=medium + + * New Synapse release 1.59.1. + + -- Synapse Packaging team <packages@matrix.org> Wed, 18 May 2022 11:41:46 +0100 + matrix-synapse-py3 (1.59.0) stable; urgency=medium * New Synapse release 1.59.0. diff --git a/pyproject.toml b/pyproject.toml index e600a1d52e..5a5a2eaba7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -54,7 +54,7 @@ skip_gitignore = true [tool.poetry] name = "matrix-synapse" -version = "1.59.0" +version = "1.59.1" description = "Homeserver for the Matrix decentralised comms protocol" authors = ["Matrix.org Team and Contributors <packages@matrix.org>"] license = "Apache-2.0" |