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

Commit 7a95e80

Browse files
author
Sean Quah
committed
1.56.0
1 parent ca7e34c commit 7a95e80

File tree

5 files changed

+20
-6
lines changed

5 files changed

+20
-6
lines changed

CHANGES.md

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
Synapse 1.56.0rc1 (2022-03-29)
2-
==============================
1+
Synapse 1.56.0 (2022-04-05)
2+
===========================
33

44
Synapse will now refuse to start up if open registration is enabled, in order to help mitigate
55
abuse across the federation. If you would like
@@ -17,6 +17,16 @@ the config flag `allow_unsafe_locale`, found in the database section of the conf
1717
[upgrade notes](https://matrix-org.github.io/synapse/v1.56/upgrade#change-in-behaviour-for-postgresql-databases-with-unsafe-locale)
1818
for details.
1919

20+
Internal Changes
21+
----------------
22+
23+
- Bump the version of `black` for compatibility with the latest `click` release. ([\#12320](https://github.com/matrix-org/synapse/issues/12320))
24+
- Refuse to start if registration is enabled without email, captcha, or token-based verification unless the new config flag `enable_registration_without_verification` is set to `true`. ([\#12322](https://github.com/matrix-org/synapse/issues/12322))
25+
26+
27+
Synapse 1.56.0rc1 (2022-03-29)
28+
==============================
29+
2030
Features
2131
--------
2232

@@ -6457,4 +6467,4 @@ Internal Changes
64576467
- Don't run CI build checks until sample config check has passed. ([\#5370](https://github.com/matrix-org/synapse/issues/5370))
64586468
- Automatically retry buildkite builds (max twice) when an agent is lost. ([\#5380](https://github.com/matrix-org/synapse/issues/5380))
64596469

6460-
**Changelogs for versions older than 1.0.0 can be found [here](CHANGES-pre-1.0.md).**
6470+
**Changelogs for versions older than 1.0.0 can be found [here](CHANGES-pre-1.0.md).**

changelog.d/12320.misc

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog.d/12322.misc

Lines changed: 0 additions & 1 deletion
This file was deleted.

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.56.0) stable; urgency=medium
2+
3+
* New synapse release 1.56.0.
4+
5+
-- Synapse Packaging team <[email protected]> Tue, 05 Apr 2022 12:38:39 +0100
6+
17
matrix-synapse-py3 (1.56.0~rc1) stable; urgency=medium
28

39
* New synapse release 1.56.0~rc1.

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.56.0rc1"
71+
__version__ = "1.56.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)