Merge branch 'master' into develop
commit
0921d93dcd
12
CHANGES.md
12
CHANGES.md
|
@ -1,9 +1,15 @@
|
||||||
Synapse 1.57.0rc1 (2022-04-12)
|
Synapse 1.57.0 (2022-04-19)
|
||||||
==============================
|
===========================
|
||||||
|
|
||||||
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.
|
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.
|
||||||
|
|
||||||
See the [upgrade notes](https://github.com/matrix-org/synapse/blob/develop/docs/upgrade.md#upgrading-to-v1570) for more details.
|
See the [upgrade notes](https://github.com/matrix-org/synapse/blob/v1.57.0rc1/docs/upgrade.md#upgrading-to-v1570) for more details.
|
||||||
|
|
||||||
|
No significant changes since 1.57.0rc1.
|
||||||
|
|
||||||
|
|
||||||
|
Synapse 1.57.0rc1 (2022-04-12)
|
||||||
|
==============================
|
||||||
|
|
||||||
Features
|
Features
|
||||||
--------
|
--------
|
||||||
|
|
|
@ -5,6 +5,12 @@ matrix-synapse-py3 (1.58.0+nmu1) UNRELEASED; urgency=medium
|
||||||
|
|
||||||
-- Synapse Packaging Team <packages@matrix.org> Wed, 30 Mar 2022 12:21:43 +0100
|
-- Synapse Packaging Team <packages@matrix.org> Wed, 30 Mar 2022 12:21:43 +0100
|
||||||
|
|
||||||
|
matrix-synapse-py3 (1.57.0) stable; urgency=medium
|
||||||
|
|
||||||
|
* New synapse release 1.57.0.
|
||||||
|
|
||||||
|
-- Synapse Packaging team <packages@matrix.org> Tue, 19 Apr 2022 10:58:42 +0100
|
||||||
|
|
||||||
matrix-synapse-py3 (1.57.0~rc1) stable; urgency=medium
|
matrix-synapse-py3 (1.57.0~rc1) stable; urgency=medium
|
||||||
|
|
||||||
* New synapse release 1.57.0~rc1.
|
* New synapse release 1.57.0~rc1.
|
||||||
|
|
|
@ -103,7 +103,7 @@ worker for application service traffic, **it must be stopped** when the database
|
||||||
without any risk of reusing transaction IDs.
|
without any risk of reusing transaction IDs.
|
||||||
|
|
||||||
Deployments which do not use separate worker processes can be upgraded as normal. Similarly,
|
Deployments which do not use separate worker processes can be upgraded as normal. Similarly,
|
||||||
deployments where no applciation services are in use can be upgraded as normal.
|
deployments where no application services are in use can be upgraded as normal.
|
||||||
|
|
||||||
<details>
|
<details>
|
||||||
<summary><b>Recovering from an incorrect upgrade</b></summary>
|
<summary><b>Recovering from an incorrect upgrade</b></summary>
|
||||||
|
|
|
@ -54,7 +54,7 @@ skip_gitignore = true
|
||||||
|
|
||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "matrix-synapse"
|
name = "matrix-synapse"
|
||||||
version = "1.56.0"
|
version = "1.57.0"
|
||||||
description = "Homeserver for the Matrix decentralised comms protocol"
|
description = "Homeserver for the Matrix decentralised comms protocol"
|
||||||
authors = ["Matrix.org Team and Contributors <packages@matrix.org>"]
|
authors = ["Matrix.org Team and Contributors <packages@matrix.org>"]
|
||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
|
|
|
@ -68,7 +68,7 @@ try:
|
||||||
except ImportError:
|
except ImportError:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
__version__ = "1.57.0rc1"
|
__version__ = "1.57.0"
|
||||||
|
|
||||||
if bool(os.environ.get("SYNAPSE_TEST_PATCH_LOG_CONTEXTS", False)):
|
if bool(os.environ.get("SYNAPSE_TEST_PATCH_LOG_CONTEXTS", False)):
|
||||||
# We import here so that we don't have to install a bunch of deps when
|
# We import here so that we don't have to install a bunch of deps when
|
||||||
|
|
Loading…
Reference in New Issue