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

Commit e529fa7

Browse files
committed
Merge commit '4325be1a5' into anoa/dinsic_release_1_21_x
* commit '4325be1a5': Fix missing null character check on guest_access room state Fixed a bug with reactivating users with the admin API (#8362) Admin API for reported events (#8217) Fix wording of deprecation notice in changelog Deprecation warning for synapse admin api being accessible under /_matrix Create function to check for long names in devices (#8364) Add a comment re #1691 Fix a bad merge from release-v1.20.0. (#8354) Admin API for querying rooms where a user is a member (#8306) Catch-up after Federation Outage (bonus): Catch-up on Synapse Startup (#8322) Simplify super() calls to Python 3 syntax. (#8344) Allow appservice users to /login (#8320) Update test logging to be able to accept braces (#8335) Move lint dependencies to extras_require (#8330)
2 parents 419595b + 4325be1 commit e529fa7

File tree

167 files changed

+1606
-323
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

167 files changed

+1606
-323
lines changed

CHANGES.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,19 @@
11
Synapse 1.20.0 (2020-09-22)
22
===========================
33

4-
No significant changes.
4+
No significant changes since v1.20.0rc5.
5+
6+
Removal warning
7+
---------------
58

9+
Historically, the [Synapse Admin
10+
API](https://github.com/matrix-org/synapse/tree/master/docs) has been
11+
accessible under the `/_matrix/client/api/v1/admin`,
12+
`/_matrix/client/unstable/admin`, `/_matrix/client/r0/admin` and
13+
`/_synapse/admin` prefixes. In a future release, we will be dropping support
14+
for accessing Synapse's Admin API using the `/_matrix/client/*` prefixes. This
15+
makes it easier for homeserver admins to lock down external access to the Admin
16+
API endpoints.
617

718
Synapse 1.20.0rc5 (2020-09-18)
819
==============================

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ https://help.github.com/articles/using-pull-requests/) to ask us to pull your
1717
changes into our repo.
1818

1919
Some other points to follow:
20-
20+
2121
* Please base your changes on the `develop` branch.
22-
22+
2323
* Please follow the [code style requirements](#code-style).
2424

2525
* Please include a [changelog entry](#changelog) with each PR.
@@ -46,7 +46,7 @@ locally. You'll need python 3.6 or later, and to install a number of tools:
4646

4747
```
4848
# Install the dependencies
49-
pip install -U black flake8 flake8-comprehensions isort
49+
pip install -e ".[lint]"
5050
5151
# Run the linter script
5252
./scripts-dev/lint.sh

changelog.d/8217.feature

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Add an admin API `GET /_synapse/admin/v1/event_reports` to read entries of table `event_reports`. Contributed by @dklimpel.

changelog.d/8230.bugfix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Fix messages over federation being lost until an event is sent into the same room.

changelog.d/8230.misc

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

changelog.d/8247.bugfix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Fix messages over federation being lost until an event is sent into the same room.

changelog.d/8247.misc

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

changelog.d/8258.bugfix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Fix messages over federation being lost until an event is sent into the same room.

changelog.d/8258.misc

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

changelog.d/8306.feature

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Add an admin API for querying rooms where a user is a member. Contributed by @dklimpel.

0 commit comments

Comments
 (0)