diff options
author | David Robertson <davidr@element.io> | 2021-11-16 15:46:45 +0000 |
---|---|---|
committer | David Robertson <davidr@element.io> | 2021-11-16 15:46:45 +0000 |
commit | 0caf20883c85f60d6d05d9157a936da1b4b2b78d (patch) | |
tree | 2cab18aaa3e4a5fe702586df3ab16bee56d20944 /synapse/__init__.py | |
parent | Avoid sharing room hierarchy responses between users (#11355) (diff) | |
parent | fix up changelog language (diff) | |
download | synapse-0caf20883c85f60d6d05d9157a936da1b4b2b78d.tar.xz |
Merge tag 'v1.47.0rc3' into develop
Synapse 1.47.0rc3 (2021-11-16) ============================== Bugfixes -------- - Fix a bug introduced in 1.47.0rc1 which caused worker processes to not halt startup in the presence of outstanding database migrations. ([\#11346](https://github.com/matrix-org/synapse/issues/11346)) - Fix a bug introduced in 1.47.0rc1 which prevented the 'remove deleted devices from `device_inbox` column' background process from running when updating from a recent Synapse version. ([\#11303](https://github.com/matrix-org/synapse/issues/11303), [\#11353](https://github.com/matrix-org/synapse/issues/11353))
Diffstat (limited to 'synapse/__init__.py')
-rw-r--r-- | synapse/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/__init__.py b/synapse/__init__.py index 06b179a7e8..3b5878b912 100644 --- a/synapse/__init__.py +++ b/synapse/__init__.py @@ -47,7 +47,7 @@ try: except ImportError: pass -__version__ = "1.47.0rc2" +__version__ = "1.47.0rc3" 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 |