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

Commit 013f3f5

Browse files
Move warning of open registration to v1.56 upgrade notes (#12322)
1 parent 8a5d691 commit 013f3f5

File tree

3 files changed

+18
-7
lines changed

3 files changed

+18
-7
lines changed

CHANGES.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
Synapse 1.56.0rc1 (2022-03-29)
22
==============================
33

4+
Synapse will now refuse to start up if open registration is enabled, in order to help mitigate
5+
abuse across the federation. If you would like
6+
to provide registration to anyone, consider adding [email](https://github.com/matrix-org/synapse/blob/8a519f8abc6de772167c2cca101d22ee2052fafc/docs/sample_config.yaml#L1285),
7+
[recaptcha](https://matrix-org.github.io/synapse/v1.56/CAPTCHA_SETUP.html)
8+
or [token-based](https://matrix-org.github.io/synapse/v1.56/usage/administration/admin_api/registration_tokens.html) verification
9+
in order to prevent automated registration from bad actors.
10+
11+
This check can be disabled by setting the `enable_registration_without_verification` option in your
12+
homeserver configuration file to `true`. More details are available in the
13+
[upgrade notes](https://matrix-org.github.io/synapse/v1.56/upgrade.html#open-registration-without-verification-is-now-disabled-by-default).
14+
415
Features
516
--------
617

@@ -33,7 +44,7 @@ Internal Changes
3344
- Rename `shared_rooms` to `mutual_rooms` ([MSC2666](https://github.com/matrix-org/matrix-doc/pull/2666)), as per proposal changes. ([\#12036](https://github.com/matrix-org/synapse/issues/12036))
3445
- Remove check on `update_user_directory` for shared rooms handler ([MSC2666](https://github.com/matrix-org/matrix-doc/pull/2666)), and update/expand documentation. ([\#12038](https://github.com/matrix-org/synapse/issues/12038))
3546
- Refactor `create_new_client_event` to use a new parameter, `state_event_ids`, which accurately describes the usage with [MSC2716](https://github.com/matrix-org/matrix-doc/pull/2716) instead of abusing `auth_event_ids`. ([\#12083](https://github.com/matrix-org/synapse/issues/12083), [\#12304](https://github.com/matrix-org/synapse/issues/12304))
36-
- 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. ([\#12091](https://github.com/matrix-org/synapse/issues/12091))
47+
- 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`. ([\#12091](https://github.com/matrix-org/synapse/issues/12091))
3748
- Add tests for database transaction callbacks. ([\#12198](https://github.com/matrix-org/synapse/issues/12198))
3849
- Handle cancellation in `DatabasePool.runInteraction`. ([\#12199](https://github.com/matrix-org/synapse/issues/12199))
3950
- Add missing type hints for cache storage. ([\#12216](https://github.com/matrix-org/synapse/issues/12216))

changelog.d/12322.misc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Refuse to start if registration is enabled without email, captcha, or token-based verification unless new config flag `enable_registration_without_verification` is set to `true`.

docs/upgrade.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,11 @@ process, for example:
8787

8888
# Upgrading to v1.56.0
8989

90+
## Open registration without verification is now disabled by default
91+
92+
Synapse will refuse to start if registration is enabled without email, captcha, or token-based verification unless the new config
93+
flag `enable_registration_without_verification` is set to "true".
94+
9095
## Groups/communities feature has been deprecated
9196

9297
The non-standard groups/communities feature in Synapse has been deprecated and will
@@ -108,12 +113,6 @@ for more information and instructions on how to fix a database with incorrect va
108113

109114
# Upgrading to v1.55.0
110115

111-
## Open registration without verification is now disabled by default
112-
113-
Synapse will refuse to start if registration is enabled without email, captcha, or token-based verification unless the new config
114-
flag `enable_registration_without_verification` is set to "true".
115-
116-
117116
## `synctl` script has been moved
118117

119118
The `synctl` script

0 commit comments

Comments
 (0)