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

Commit e80d7c3

Browse files
committed
Merge commit '58e583eac' into anoa/dinsic_release_1_21_x
* commit '58e583eac': 1.21.1 Explicitly install test dependencies when building deb packages (#8523) Reverse proxies are not the only thing to change;be explicit w/ new endpoint Add deprecation warning for admin api under client api prefixes
2 parents e15cca7 + 58e583e commit e80d7c3

File tree

4 files changed

+30
-5
lines changed

4 files changed

+30
-5
lines changed

CHANGES.md

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,21 @@
1+
Synapse 1.21.1 (2020-10-13)
2+
===========================
3+
4+
This release fixes a regression in v1.21.0 that prevented debian packages from being built.
5+
It is otherwise identical to v1.21.0.
6+
17
Synapse 1.21.0 (2020-10-12)
28
===========================
39

410
No significant changes since v1.21.0rc3.
511

12+
As [noted in
13+
v1.20.0](https://github.com/matrix-org/synapse/blob/release-v1.21.0/CHANGES.md#synapse-1200-2020-09-22),
14+
a future release will drop support for accessing Synapse's
15+
[Admin API](https://github.com/matrix-org/synapse/tree/master/docs/admin_api) under the
16+
`/_matrix/client/*` endpoint prefixes. At that point, the Admin API will only
17+
be accessible under `/_synapse/admin`.
18+
619

720
Synapse 1.21.0rc3 (2020-10-08)
821
==============================
@@ -160,9 +173,11 @@ API](https://github.com/matrix-org/synapse/tree/master/docs) has been
160173
accessible under the `/_matrix/client/api/v1/admin`,
161174
`/_matrix/client/unstable/admin`, `/_matrix/client/r0/admin` and
162175
`/_synapse/admin` prefixes. In a future release, we will be dropping support
163-
for accessing Synapse's Admin API using the `/_matrix/client/*` prefixes. This
164-
makes it easier for homeserver admins to lock down external access to the Admin
165-
API endpoints.
176+
for accessing Synapse's Admin API using the `/_matrix/client/*` prefixes.
177+
178+
From that point, the Admin API will only be accessible under `/_synapse/admin`.
179+
This makes it easier for homeserver admins to lock down external access to the
180+
Admin API endpoints.
166181

167182
Synapse 1.20.0rc5 (2020-09-18)
168183
==============================

debian/build_virtualenv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ dh_virtualenv \
4242
--preinstall="mock" \
4343
--extra-pip-arg="--no-cache-dir" \
4444
--extra-pip-arg="--compile" \
45-
--extras="all,systemd"
45+
--extras="all,systemd,test"
4646

4747
PACKAGE_BUILD_DIR="debian/matrix-synapse-py3"
4848
VIRTUALENV_DIR="${PACKAGE_BUILD_DIR}${DH_VIRTUALENV_INSTALL_ROOT}/matrix-synapse"

debian/changelog

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
matrix-synapse-py3 (1.21.1) stable; urgency=medium
2+
3+
[ Synapse Packaging team ]
4+
* New synapse release 1.21.1.
5+
6+
[ Andrew Morgan ]
7+
* Explicitly install "test" python dependencies.
8+
9+
-- Synapse Packaging team <[email protected]> Tue, 13 Oct 2020 10:24:13 +0100
10+
111
matrix-synapse-py3 (1.21.0) stable; urgency=medium
212

313
* New synapse release 1.21.0.

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.21.0"
51+
__version__ = "1.21.1"
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)