Move next version notes from changelog to upgrade notes
This commit is contained in:
parent
200ad02624
commit
71c9307509
19
CHANGES.md
19
CHANGES.md
|
@ -1,6 +1,7 @@
|
||||||
Synapse 1.13.0rc1 (2020-05-11)
|
Synapse 1.13.0rc1 (2020-05-11)
|
||||||
==============================
|
==============================
|
||||||
|
|
||||||
|
|
||||||
Features
|
Features
|
||||||
--------
|
--------
|
||||||
|
|
||||||
|
@ -79,6 +80,10 @@ Improved Documentation
|
||||||
Deprecations and Removals
|
Deprecations and Removals
|
||||||
-------------------------
|
-------------------------
|
||||||
|
|
||||||
|
Plugins using the `complete_sso_login` method of `synapse.module_api.ModuleApi`
|
||||||
|
should update to using the async/await version `complete_sso_login_async` which
|
||||||
|
includes additional checks. The non-async version is considered deprecated.
|
||||||
|
|
||||||
- Remove nonfunctional `captcha_bypass_secret` option from `homeserver.yaml`. ([\#7137](https://github.com/matrix-org/synapse/issues/7137))
|
- Remove nonfunctional `captcha_bypass_secret` option from `homeserver.yaml`. ([\#7137](https://github.com/matrix-org/synapse/issues/7137))
|
||||||
|
|
||||||
|
|
||||||
|
@ -136,20 +141,6 @@ Internal Changes
|
||||||
- Run group attestation renewal in series rather than parallel for performance. ([\#7442](https://github.com/matrix-org/synapse/issues/7442))
|
- Run group attestation renewal in series rather than parallel for performance. ([\#7442](https://github.com/matrix-org/synapse/issues/7442))
|
||||||
|
|
||||||
|
|
||||||
Next version
|
|
||||||
============
|
|
||||||
|
|
||||||
* New templates (`sso_auth_confirm.html`, `sso_auth_success.html`, and
|
|
||||||
`sso_account_deactivated.html`) were added to Synapse. If your Synapse is
|
|
||||||
configured to use SSO and a custom `sso_redirect_confirm_template_dir`
|
|
||||||
configuration then these templates will need to be duplicated into that
|
|
||||||
directory.
|
|
||||||
|
|
||||||
* Plugins using the `complete_sso_login` method of `synapse.module_api.ModuleApi`
|
|
||||||
should update to using the async/await version `complete_sso_login_async` which
|
|
||||||
includes additional checks. The non-async version is considered deprecated.
|
|
||||||
|
|
||||||
|
|
||||||
Synapse 1.12.4 (2020-04-23)
|
Synapse 1.12.4 (2020-04-23)
|
||||||
===========================
|
===========================
|
||||||
|
|
||||||
|
|
10
UPGRADE.rst
10
UPGRADE.rst
|
@ -78,6 +78,7 @@ for example:
|
||||||
Upgrading to v1.13.0
|
Upgrading to v1.13.0
|
||||||
====================
|
====================
|
||||||
|
|
||||||
|
|
||||||
Incorrect database migration in old synapse versions
|
Incorrect database migration in old synapse versions
|
||||||
----------------------------------------------------
|
----------------------------------------------------
|
||||||
|
|
||||||
|
@ -105,6 +106,15 @@ affected can be repaired as follows:
|
||||||
|
|
||||||
2. Restart synapse.
|
2. Restart synapse.
|
||||||
|
|
||||||
|
New Single Sign-on HTML Templates
|
||||||
|
---------------------------------
|
||||||
|
|
||||||
|
New templates (`sso_auth_confirm.html`, `sso_auth_success.html`, and
|
||||||
|
`sso_account_deactivated.html`) were added to Synapse. If your Synapse is
|
||||||
|
configured to use SSO and a custom `sso_redirect_confirm_template_dir`
|
||||||
|
configuration then these templates will need to be duplicated into that
|
||||||
|
directory.
|
||||||
|
|
||||||
|
|
||||||
Upgrading to v1.12.0
|
Upgrading to v1.12.0
|
||||||
====================
|
====================
|
||||||
|
|
Loading…
Reference in New Issue