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

Commit 9eab71a

Browse files
committed
Merge branch 'master' into develop
2 parents 68acb0a + fd05a3e commit 9eab71a

File tree

4 files changed

+29
-3
lines changed

4 files changed

+29
-3
lines changed

CHANGES.md

+15
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,21 @@
1+
Synapse 1.50.1 (2022-01-18)
2+
===========================
3+
4+
This release fixes a bug in Synapse 1.50.0 that could prevent clients from being able to connect to Synapse if the `webclient` resource was enabled. Further details are available in [this issue](https://github.com/matrix-org/synapse/issues/11763).
5+
6+
Bugfixes
7+
--------
8+
9+
- Fix a bug introduced in Synapse 1.50.0rc1 that could cause Matrix clients to be unable to connect to Synapse instances with the `webclient` resource enabled. ([\#11764](https://github.com/matrix-org/synapse/issues/11764))
10+
11+
112
Synapse 1.50.0 (2022-01-18)
213
===========================
314

15+
**This release contains a critical bug that may prevent clients from being able to connect.
16+
As such, it is not recommended to upgrade to 1.50.0. Instead, please upgrade straight to
17+
to 1.50.1. Further details are available in [this issue](https://github.com/matrix-org/synapse/issues/11763).**
18+
419
Please note that we now only support Python 3.7+ and PostgreSQL 10+ (if applicable), because Python 3.6 and PostgreSQL 9.6 have reached end-of-life.
520

621
No significant changes since 1.50.0rc2.

debian/changelog

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
matrix-synapse-py3 (1.50.1) stable; urgency=medium
2+
3+
* New synapse release 1.50.1.
4+
5+
-- Synapse Packaging team <[email protected]> Tue, 18 Jan 2022 16:06:26 +0000
6+
17
matrix-synapse-py3 (1.50.0) stable; urgency=medium
28

39
* New synapse release 1.50.0.

synapse/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
except ImportError:
4848
pass
4949

50-
__version__ = "1.50.0"
50+
__version__ = "1.50.1"
5151

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

synapse/app/homeserver.py

+7-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
import synapse.config.logger
2828
from synapse import events
2929
from synapse.api.urls import (
30-
CLIENT_API_PREFIX,
3130
FEDERATION_PREFIX,
3231
LEGACY_MEDIA_PREFIX,
3332
MEDIA_R0_PREFIX,
@@ -193,7 +192,13 @@ def _configure_named_resource(
193192

194193
resources.update(
195194
{
196-
CLIENT_API_PREFIX: client_resource,
195+
"/_matrix/client/api/v1": client_resource,
196+
"/_matrix/client/r0": client_resource,
197+
"/_matrix/client/v1": client_resource,
198+
"/_matrix/client/v3": client_resource,
199+
"/_matrix/client/unstable": client_resource,
200+
"/_matrix/client/v2_alpha": client_resource,
201+
"/_matrix/client/versions": client_resource,
197202
"/.well-known": well_known_resource(self),
198203
"/_synapse/admin": AdminRestResource(self),
199204
**build_synapse_client_resource_tree(self),

0 commit comments

Comments
 (0)