mirror of
https://mau.dev/maunium/synapse.git
synced 2024-11-14 14:01:59 +01:00
Merge remote-tracking branch 'upstream/release-v1.64'
This commit is contained in:
commit
0e584b5cab
4 changed files with 33 additions and 2 deletions
17
CHANGES.md
17
CHANGES.md
|
@ -1,7 +1,22 @@
|
||||||
|
Synapse 1.64.0 (2022-08-02)
|
||||||
|
===========================
|
||||||
|
|
||||||
|
No significant changes since 1.64.0rc2.
|
||||||
|
|
||||||
|
|
||||||
|
Deprecation Warning
|
||||||
|
-------------------
|
||||||
|
|
||||||
|
Synapse v1.66.0 will remove the ability to delegate the tasks of verifying email address ownership, and password reset confirmation, to an identity server.
|
||||||
|
|
||||||
|
If you require your homeserver to verify e-mail addresses or to support password resets via e-mail, please configure your homeserver with SMTP access so that it can send e-mails on its own behalf.
|
||||||
|
[Consult the configuration documentation for more information.](https://matrix-org.github.io/synapse/latest/usage/configuration/config_documentation.html#email)
|
||||||
|
|
||||||
|
|
||||||
Synapse 1.64.0rc2 (2022-07-29)
|
Synapse 1.64.0rc2 (2022-07-29)
|
||||||
==============================
|
==============================
|
||||||
|
|
||||||
This RC reintroduces support for `account_threepid_delegates.email`, which was removed in 1.64.0rc1. It remains deprecated and will be removed altogether in a future release. ([\#13406](https://github.com/matrix-org/synapse/issues/13406))
|
This RC reintroduces support for `account_threepid_delegates.email`, which was removed in 1.64.0rc1. It remains deprecated and will be removed altogether in Synapse v1.66.0. ([\#13406](https://github.com/matrix-org/synapse/issues/13406))
|
||||||
|
|
||||||
|
|
||||||
Synapse 1.64.0rc1 (2022-07-26)
|
Synapse 1.64.0rc1 (2022-07-26)
|
||||||
|
|
6
debian/changelog
vendored
6
debian/changelog
vendored
|
@ -1,3 +1,9 @@
|
||||||
|
matrix-synapse-py3 (1.64.0) stable; urgency=medium
|
||||||
|
|
||||||
|
* New Synapse release 1.64.0.
|
||||||
|
|
||||||
|
-- Synapse Packaging team <packages@matrix.org> Tue, 02 Aug 2022 10:32:30 +0100
|
||||||
|
|
||||||
matrix-synapse-py3 (1.64.0~rc2) stable; urgency=medium
|
matrix-synapse-py3 (1.64.0~rc2) stable; urgency=medium
|
||||||
|
|
||||||
* New Synapse release 1.64.0rc2.
|
* New Synapse release 1.64.0rc2.
|
||||||
|
|
|
@ -91,6 +91,16 @@ process, for example:
|
||||||
|
|
||||||
# Upgrading to v1.64.0
|
# Upgrading to v1.64.0
|
||||||
|
|
||||||
|
## Deprecation of the ability to delegate e-mail verification to identity servers
|
||||||
|
|
||||||
|
Synapse v1.66.0 will remove the ability to delegate the tasks of verifying email address ownership, and password reset confirmation, to an identity server.
|
||||||
|
|
||||||
|
If you require your homeserver to verify e-mail addresses or to support password resets via e-mail, please configure your homeserver with SMTP access so that it can send e-mails on its own behalf.
|
||||||
|
[Consult the configuration documentation for more information.](https://matrix-org.github.io/synapse/latest/usage/configuration/config_documentation.html#email)
|
||||||
|
|
||||||
|
The option that will be removed is `account_threepid_delegates.email`.
|
||||||
|
|
||||||
|
|
||||||
## Changes to the event replication streams
|
## Changes to the event replication streams
|
||||||
|
|
||||||
Synapse now includes a flag indicating if an event is an outlier when
|
Synapse now includes a flag indicating if an event is an outlier when
|
||||||
|
|
|
@ -54,7 +54,7 @@ skip_gitignore = true
|
||||||
|
|
||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "matrix-synapse"
|
name = "matrix-synapse"
|
||||||
version = "1.64.0rc2"
|
version = "1.64.0"
|
||||||
description = "Homeserver for the Matrix decentralised comms protocol"
|
description = "Homeserver for the Matrix decentralised comms protocol"
|
||||||
authors = ["Matrix.org Team and Contributors <packages@matrix.org>"]
|
authors = ["Matrix.org Team and Contributors <packages@matrix.org>"]
|
||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
|
|
Loading…
Reference in a new issue