You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 26, 2024. It is now read-only.
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`.
Refuse to start if registration is enabled without email, captcha, or token-based verification unless new config flag `enable_registration_without_verification` is set.
display_name_template: "{{ user.preferred_username|capitalize }}" # TO BE FILLED: If your users have names in Authentik and you want those in Synapse, this should be replaced with user.name|capitalize.
Copy file name to clipboardExpand all lines: docs/upgrade.md
+13
Original file line number
Diff line number
Diff line change
@@ -99,8 +99,21 @@ experimental_features:
99
99
groups_enabled: false
100
100
```
101
101
102
+
## Change in behaviour for PostgreSQL databases with unsafe locale
103
+
104
+
Synapse now refuses to start when using PostgreSQL with non-`C` values for`COLLATE` and
105
+
`CTYPE` unless the config flag `allow_unsafe_locale`, found in the database section of
106
+
the configuration file, is set to `true`. See the [PostgreSQL documentation](https://matrix-org.github.io/synapse/latest/postgres.html#fixing-incorrect-collate-or-ctype)
107
+
for more information and instructions on how to fix a database with incorrect values.
108
+
102
109
# Upgrading to v1.55.0
103
110
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".
0 commit comments