Skip to content
This repository was archived by the owner on Apr 26, 2024. It is now read-only.

Commit 88fe72c

Browse files
committed
1.57.0
1 parent 9b1f360 commit 88fe72c

File tree

4 files changed

+16
-4
lines changed

4 files changed

+16
-4
lines changed

CHANGES.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
1-
Synapse 1.57.0rc1 (2022-04-12)
2-
==============================
1+
Synapse 1.57.0 (2022-04-19)
2+
===========================
33

44
This version includes a [change](https://github.com/matrix-org/synapse/pull/12209) to the way transaction IDs are managed for application services. If your deployment uses a dedicated worker for application service traffic, **it must be stopped** when the database is upgraded (which normally happens when the main process is upgraded), to ensure the change is made safely without any risk of reusing transaction IDs.
55

66
See the [upgrade notes](https://github.com/matrix-org/synapse/blob/develop/docs/upgrade.md#upgrading-to-v1570) for more details.
77

8+
No significant changes since 1.57.0rc1.
9+
10+
11+
Synapse 1.57.0rc1 (2022-04-12)
12+
==============================
13+
814
Features
915
--------
1016

debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
matrix-synapse-py3 (1.57.0) stable; urgency=medium
2+
3+
* New synapse release 1.57.0.
4+
5+
-- Synapse Packaging team <[email protected]> Tue, 19 Apr 2022 10:58:42 +0100
6+
17
matrix-synapse-py3 (1.57.0~rc1) stable; urgency=medium
28

39
* New synapse release 1.57.0~rc1.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ skip_gitignore = true
5454

5555
[tool.poetry]
5656
name = "matrix-synapse"
57-
version = "1.56.0"
57+
version = "1.57.0"
5858
description = "Homeserver for the Matrix decentralised comms protocol"
5959
authors = ["Matrix.org Team and Contributors <[email protected]>"]
6060
license = "Apache-2.0"

synapse/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
except ImportError:
6969
pass
7070

71-
__version__ = "1.57.0rc1"
71+
__version__ = "1.57.0"
7272

7373
if bool(os.environ.get("SYNAPSE_TEST_PATCH_LOG_CONTEXTS", False)):
7474
# We import here so that we don't have to install a bunch of deps when

0 commit comments

Comments
 (0)