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

Commit 0ad0872

Browse files
committed
Merge branch 'master' into develop
2 parents 731e08c + 6600f0b commit 0ad0872

File tree

4 files changed

+25
-10
lines changed

4 files changed

+25
-10
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+
Bugfixes
12+
--------
13+
14+
- Fix building Docker images for armv7. ([\#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

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

docker/Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,13 @@ RUN apt-get update && apt-get install -y \
2828
libwebp-dev \
2929
libxml++2.6-dev \
3030
libxslt1-dev \
31+
rustc \
3132
zlib1g-dev \
3233
&& rm -rf /var/lib/apt/lists/*
3334

3435
# Build dependencies that are not available as wheels, to speed up rebuilds
3536
RUN pip install --prefix="/install" --no-warn-script-location \
37+
cryptography \
3638
frozendict \
3739
jaeger-client \
3840
opentracing \

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)