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

Commit 0921d93

Browse files
committed
Merge branch 'master' into develop
2 parents b121a3a + dfc7646 commit 0921d93

File tree

5 files changed

+18
-6
lines changed

5 files changed

+18
-6
lines changed

CHANGES.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
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

6-
See the [upgrade notes](https://github.com/matrix-org/synapse/blob/develop/docs/upgrade.md#upgrading-to-v1570) for more details.
6+
See the [upgrade notes](https://github.com/matrix-org/synapse/blob/v1.57.0rc1/docs/upgrade.md#upgrading-to-v1570) for more details.
7+
8+
No significant changes since 1.57.0rc1.
9+
10+
11+
Synapse 1.57.0rc1 (2022-04-12)
12+
==============================
713

814
Features
915
--------

debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ matrix-synapse-py3 (1.58.0+nmu1) UNRELEASED; urgency=medium
55

66
-- Synapse Packaging Team <[email protected]> Wed, 30 Mar 2022 12:21:43 +0100
77

8+
matrix-synapse-py3 (1.57.0) stable; urgency=medium
9+
10+
* New synapse release 1.57.0.
11+
12+
-- Synapse Packaging team <[email protected]> Tue, 19 Apr 2022 10:58:42 +0100
13+
814
matrix-synapse-py3 (1.57.0~rc1) stable; urgency=medium
915

1016
* New synapse release 1.57.0~rc1.

docs/upgrade.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ worker for application service traffic, **it must be stopped** when the database
103103
without any risk of reusing transaction IDs.
104104

105105
Deployments which do not use separate worker processes can be upgraded as normal. Similarly,
106-
deployments where no applciation services are in use can be upgraded as normal.
106+
deployments where no application services are in use can be upgraded as normal.
107107

108108
<details>
109109
<summary><b>Recovering from an incorrect upgrade</b></summary>

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)