diff --git a/CHANGES.md b/CHANGES.md index 261ce6a8642a8cd7788f2c98940cb41deb027e65..951a2273b598a2242c602c2d63a6c47288312501 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,13 @@ +Synapse 1.75.0rc2 (2023-01-12) +============================== + +Bugfixes +-------- + +- Fix a bug introduced in Synapse 1.75.0rc1 where device lists could be miscalculated with some sync filters. ([\#14810](https://github.com/matrix-org/synapse/issues/14810)) +- Fix race where calling `/members` or `/state` with an `at` parameter could fail for newly created rooms, when using multiple workers. ([\#14817](https://github.com/matrix-org/synapse/issues/14817)) + + Synapse 1.75.0rc1 (2023-01-10) ============================== diff --git a/changelog.d/14810.bugfix b/changelog.d/14810.bugfix deleted file mode 100644 index 379bfccffa4d5863bc78256ca81fdc2801e89040..0000000000000000000000000000000000000000 --- a/changelog.d/14810.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix a bug introduced in Synapse 1.75.0rc1 where device lists could be miscalculated with some sync filters. diff --git a/changelog.d/14817.bugfix b/changelog.d/14817.bugfix deleted file mode 100644 index bb5da79268540b6ee7346ebeb41511ce1155f749..0000000000000000000000000000000000000000 --- a/changelog.d/14817.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix race where calling `/members` or `/state` with an `at` parameter could fail for newly created rooms, when using multiple workers. diff --git a/debian/changelog b/debian/changelog index e02793c9967b6a8c42e1c15f9bba0b72772dc90b..125b678f9322c8075eb9938df4db8e2d8dee9862 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +matrix-synapse-py3 (1.75.0~rc2) stable; urgency=medium + + * New Synapse release 1.75.0rc2. + + -- Synapse Packaging team <packages@matrix.org> Thu, 12 Jan 2023 10:30:15 -0800 + matrix-synapse-py3 (1.75.0~rc1) stable; urgency=medium * New Synapse release 1.75.0rc1. diff --git a/pyproject.toml b/pyproject.toml index 10d50ddb45f7ec921bd3b4aee5ea8dbe25c9a869..d5427bdbb686da9f1dd075b561ffc7d4bed4bb7c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -89,7 +89,7 @@ manifest-path = "rust/Cargo.toml" [tool.poetry] name = "matrix-synapse" -version = "1.75.0rc1" +version = "1.75.0rc2" description = "Homeserver for the Matrix decentralised comms protocol" authors = ["Matrix.org Team and Contributors <packages@matrix.org>"] license = "Apache-2.0"