This commit is contained in:
Olivier Wilkinson (reivilibre) 2022-03-08 10:55:26 +00:00
parent 2eef234ae3
commit ea992adf86
8 changed files with 25 additions and 6 deletions

View file

@ -1,3 +1,21 @@
Synapse 1.54.0 (2022-03-08)
===========================
Bugfixes
--------
- Fix a bug introduced in Synapse 1.54.0rc1 preventing the new module callbacks introduced in this release from being registered by modules. ([\#12141](https://github.com/matrix-org/synapse/issues/12141))
- Fix a bug introduced in Synapse 1.54.0rc1 which meant that Synapse would refuse to start if pre-release versions of dependencies were installed. ([\#12177](https://github.com/matrix-org/synapse/issues/12177))
Internal Changes
----------------
- Update release script to insert the previous version when writing "No significant changes" line in the changelog. ([\#12127](https://github.com/matrix-org/synapse/issues/12127))
- Inspect application dependencies using `importlib.metadata` or its backport. ([\#12129](https://github.com/matrix-org/synapse/issues/12129))
- Relax the version guard for "packaging" added in #12088. ([\#12166](https://github.com/matrix-org/synapse/issues/12166))
Synapse 1.54.0rc1 (2022-03-02)
==============================

View file

@ -1 +0,0 @@
Update release script to insert the previous version when writing "No significant changes" line in the changelog.

View file

@ -1 +0,0 @@
Inspect application dependencies using `importlib.metadata` or its backport.

View file

@ -1 +0,0 @@
Fix a bug introduced in Synapse 1.54.0rc1 preventing the new module callbacks introduced in this release from being registered by modules.

View file

@ -1 +0,0 @@
Relax the version guard for "packaging" added in #12088.

View file

@ -1 +0,0 @@
Fix a bug introduced in 1.54.0rc1 which meant that Synapse would refuse to start if pre-release versions of dependencies were installed.

6
debian/changelog vendored
View file

@ -1,3 +1,9 @@
matrix-synapse-py3 (1.54.0) stable; urgency=medium
* New synapse release 1.54.0.
-- Synapse Packaging team <packages@matrix.org> Tue, 08 Mar 2022 10:54:52 +0000
matrix-synapse-py3 (1.54.0~rc1) stable; urgency=medium
* New synapse release 1.54.0~rc1.

View file

@ -47,7 +47,7 @@ try:
except ImportError:
pass
__version__ = "1.54.0rc1"
__version__ = "1.54.0"
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