Skip to content

Commit a27c1fd

Browse files
committed
1.27.0
1 parent b8b1724 commit a27c1fd

File tree

4 files changed

+23
-11
lines changed

4 files changed

+23
-11
lines changed

CHANGES.md

Lines changed: 16 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
Synapse 1.27.0 (2021-02-16)
2+
===========================
3+
4+
Note that this release includes a change in Synapse to use Redis as a cache ─ as well as a pub/sub mechanism ─ if Redis support is enabled for workers. No action is needed by server administrators, and we do not expect resource usage of the Redis instance to change dramatically.
5+
6+
This release also changes the callback URI for OpenID Connect (OIDC) identity providers. If your server is configured to use single sign-on via an OIDC/OAuth2 IdP, you may need to make configuration changes. Please review [UPGRADE.rst](UPGRADE.rst) for more details on these changes.
7+
8+
This release also changes escaping of variables in the HTML templates for SSO or email notifications. If you have customised these templates, please review [UPGRADE.rst](UPGRADE.rst) for more details on these changes.
9+
10+
11+
Internal Changes
12+
----------------
13+
14+
- Add rustc as a dependency when building Docker images. ([\#9405](https://github.com/matrix-org/synapse/issues/9405))
15+
16+
117
Synapse 1.27.0rc2 (2021-02-11)
218
==============================
319

@@ -23,13 +39,6 @@ Improved Documentation
2339
Synapse 1.27.0rc1 (2021-02-02)
2440
==============================
2541

26-
Note that this release includes a change in Synapse to use Redis as a cache ─ as well as a pub/sub mechanism ─ if Redis support is enabled for workers. No action is needed by server administrators, and we do not expect resource usage of the Redis instance to change dramatically.
27-
28-
This release also changes the callback URI for OpenID Connect (OIDC) identity providers. If your server is configured to use single sign-on via an OIDC/OAuth2 IdP, you may need to make configuration changes. Please review [UPGRADE.rst](UPGRADE.rst) for more details on these changes.
29-
30-
This release also changes escaping of variables in the HTML templates for SSO or email notifications. If you have customised these templates, please review [UPGRADE.rst](UPGRADE.rst) for more details on these changes.
31-
32-
3342
Features
3443
--------
3544

changelog.d/9405.misc

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

debian/changelog

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
1-
matrix-synapse-py3 (1.26.0+nmu1) UNRELEASED; urgency=medium
1+
matrix-synapse-py3 (1.27.0) stable; urgency=medium
22

3+
[ Dan Callahan ]
34
* Fix build on Ubuntu 16.04 LTS (Xenial).
45

5-
-- Dan Callahan <[email protected]> Thu, 28 Jan 2021 16:21:03 +0000
6+
[ Synapse Packaging team ]
7+
* New synapse release 1.27.0.
8+
9+
-- Synapse Packaging team <[email protected]> Tue, 16 Feb 2021 13:11:28 +0000
610

711
matrix-synapse-py3 (1.26.0) stable; urgency=medium
812

synapse/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
except ImportError:
4949
pass
5050

51-
__version__ = "1.27.0rc2"
51+
__version__ = "1.27.0"
5252

5353
if bool(os.environ.get("SYNAPSE_TEST_PATCH_LOG_CONTEXTS", False)):
5454
# We import here so that we don't have to install a bunch of deps when

0 commit comments

Comments
 (0)