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

Commit 7b586d8

Browse files
committed
Merge tag 'v1.56.0' into babolivier/dinsic_1.58
Synapse 1.56.0 (2022-04-05) =========================== Synapse will now refuse to start up if open registration is enabled, in order to help mitigate abuse across the federation. If you would like to provide registration to anyone, consider adding [email](https://github.com/matrix-org/synapse/blob/8a519f8abc6de772167c2cca101d22ee2052fafc/docs/sample_config.yaml#L1285), [recaptcha](https://matrix-org.github.io/synapse/v1.56/CAPTCHA_SETUP.html) or [token-based](https://matrix-org.github.io/synapse/v1.56/usage/administration/admin_api/registration_tokens.html) verification in order to prevent automated registration from bad actors. This check can be disabled by setting the `enable_registration_without_verification` option in your homeserver configuration file to `true`. More details are available in the [upgrade notes](https://matrix-org.github.io/synapse/v1.56/upgrade.html#open-registration-without-verification-is-now-disabled-by-default). Synapse will additionally now refuse to start when using PostgreSQL with a non-`C` values for `COLLATE` and `CTYPE`, unless the config flag `allow_unsafe_locale`, found in the database section of the configuration file, is set to `true`. See the [upgrade notes](https://matrix-org.github.io/synapse/v1.56/upgrade#change-in-behaviour-for-postgresql-databases-with-unsafe-locale) for details. Internal Changes ---------------- - Bump the version of `black` for compatibility with the latest `click` release. ([\#12320](matrix-org/synapse#12320)) Synapse 1.56.0rc1 (2022-03-29) ============================== Features -------- - Allow modules to store already existing 3PID associations. ([\#12195](matrix-org/synapse#12195)) - Allow registering server administrators using the module API. Contributed by Famedly. ([\#12250](matrix-org/synapse#12250)) Bugfixes -------- - Fix a long-standing bug which caused the `/_matrix/federation/v1/state` and `/_matrix/federation/v1/state_ids` endpoints to return incorrect or invalid data when called for an event which we have stored as an "outlier". ([\#12087](matrix-org/synapse#12087)) - Fix a long-standing bug where events from ignored users would still be considered for relations. ([\#12227](matrix-org/synapse#12227), [\#12232](matrix-org/synapse#12232), [\#12285](matrix-org/synapse#12285)) - Fix a bug introduced in Synapse 1.53.0 where an unnecessary query could be performed when fetching bundled aggregations for threads. ([\#12228](matrix-org/synapse#12228)) - Fix a bug introduced in Synapse 1.52.0 where admins could not deactivate and GDPR-erase a user if Synapse was configured with limits on avatars. ([\#12261](matrix-org/synapse#12261)) Improved Documentation ---------------------- - Fix the link to the module documentation in the legacy spam checker warning message. ([\#12231](matrix-org/synapse#12231)) - Remove incorrect prefixes in the worker documentation for some endpoints. ([\#12243](matrix-org/synapse#12243)) - Correct `check_username_for_spam` annotations and docs. ([\#12246](matrix-org/synapse#12246)) - Correct Authentik OpenID typo, and add notes on troubleshooting. Contributed by @IronTooch. ([\#12275](matrix-org/synapse#12275)) - HAProxy reverse proxy guide update to stop sending IPv4-mapped address to homeserver. Contributed by @villepeh. ([\#12279](matrix-org/synapse#12279)) Internal Changes ---------------- - Rename `shared_rooms` to `mutual_rooms` ([MSC2666](matrix-org/matrix-spec-proposals#2666)), as per proposal changes. ([\#12036](matrix-org/synapse#12036)) - Remove check on `update_user_directory` for shared rooms handler ([MSC2666](matrix-org/matrix-spec-proposals#2666)), and update/expand documentation. ([\#12038](matrix-org/synapse#12038)) - Refactor `create_new_client_event` to use a new parameter, `state_event_ids`, which accurately describes the usage with [MSC2716](matrix-org/matrix-spec-proposals#2716) instead of abusing `auth_event_ids`. ([\#12083](matrix-org/synapse#12083), [\#12304](matrix-org/synapse#12304)) - Refuse to start if registration is enabled without email, captcha, or token-based verification unless the new config flag `enable_registration_without_verification` is set to `true`. ([\#12091](matrix-org/synapse#12091), [\#12322](matrix-org/synapse#12322)) - Add tests for database transaction callbacks. ([\#12198](matrix-org/synapse#12198)) - Handle cancellation in `DatabasePool.runInteraction`. ([\#12199](matrix-org/synapse#12199)) - Add missing type hints for cache storage. ([\#12216](matrix-org/synapse#12216)) - Add missing type hints for storage. ([\#12248](matrix-org/synapse#12248), [\#12255](matrix-org/synapse#12255)) - Add type hints to tests files. ([\#12224](matrix-org/synapse#12224), [\#12240](matrix-org/synapse#12240), [\#12256](matrix-org/synapse#12256)) - Use type stubs for `psycopg2`. ([\#12269](matrix-org/synapse#12269)) - Improve type annotations for `execute_values`. ([\#12311](matrix-org/synapse#12311)) - Clean-up logic around rebasing URLs for URL image previews. ([\#12219](matrix-org/synapse#12219)) - Use the `ignored_users` table in additional places instead of re-parsing the account data. ([\#12225](matrix-org/synapse#12225)) - Refactor the relations endpoints to add a `RelationsHandler`. ([\#12237](matrix-org/synapse#12237)) - Generate announcement links in the release script. ([\#12242](matrix-org/synapse#12242)) - Improve error message when dependencies check finds a broken installation. ([\#12244](matrix-org/synapse#12244)) - Compress metrics HTTP resource when enabled. Contributed by Nick @ Beeper. ([\#12258](matrix-org/synapse#12258)) - Refuse to start if the PostgreSQL database has a non-`C` locale, unless the config flag `allow_unsafe_db_locale` is set to true. ([\#12262](matrix-org/synapse#12262), [\#12288](matrix-org/synapse#12288)) - Optionally include account validity expiration information to experimental [MSC3720](matrix-org/matrix-spec-proposals#3720) account status responses. ([\#12266](matrix-org/synapse#12266)) - Add a new cache `_get_membership_from_event_id` to speed up push rule calculations in large rooms. ([\#12272](matrix-org/synapse#12272)) - Re-enable Complement concurrency in CI. ([\#12283](matrix-org/synapse#12283)) - Remove unused test utilities. ([\#12291](matrix-org/synapse#12291)) - Enhance logging for inbound federation events. ([\#12301](matrix-org/synapse#12301)) - Fix compatibility with the recently-released Jinja 3.1. ([\#12313](matrix-org/synapse#12313)) - Avoid trying to calculate the state at outlier events. ([\#12314](matrix-org/synapse#12314))
2 parents c6b44cf + ac80bfb commit 7b586d8

File tree

106 files changed

+6647
-5735
lines changed

Some content is hidden

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

106 files changed

+6647
-5735
lines changed

Diff for: .github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,7 @@ jobs:
370370
# Run Complement
371371
- run: |
372372
set -o pipefail
373-
go test -v -json -p 1 -tags synapse_blacklist,msc2403,msc2716,msc3030 ./tests/... 2>&1 | gotestfmt
373+
go test -v -json -tags synapse_blacklist,msc2403,msc2716,msc3030 ./tests/... 2>&1 | gotestfmt
374374
shell: bash
375375
name: Run Complement Tests
376376
env:

Diff for: CHANGES-pre-1.0.md

+3,640
Large diffs are not rendered by default.

Diff for: CHANGES.md

+84-3,641
Large diffs are not rendered by default.

Diff for: contrib/jitsimeetbridge/jitsimeetbridge.py

+9-6
Original file line numberDiff line numberDiff line change
@@ -193,12 +193,15 @@ def advertiseSsrcs(self):
193193
time.sleep(7)
194194
print("SSRC spammer started")
195195
while self.running:
196-
ssrcMsg = "<presence to='%(tojid)s' xmlns='jabber:client'><x xmlns='http://jabber.org/protocol/muc'/><c xmlns='http://jabber.org/protocol/caps' hash='sha-1' node='http://jitsi.org/jitsimeet' ver='0WkSdhFnAUxrz4ImQQLdB80GFlE='/><nick xmlns='http://jabber.org/protocol/nick'>%(nick)s</nick><stats xmlns='http://jitsi.org/jitmeet/stats'><stat name='bitrate_download' value='175'/><stat name='bitrate_upload' value='176'/><stat name='packetLoss_total' value='0'/><stat name='packetLoss_download' value='0'/><stat name='packetLoss_upload' value='0'/></stats><media xmlns='http://estos.de/ns/mjs'><source type='audio' ssrc='%(assrc)s' direction='sendre'/><source type='video' ssrc='%(vssrc)s' direction='sendre'/></media></presence>" % {
197-
"tojid": "%s@%s/%s" % (ROOMNAME, ROOMDOMAIN, self.shortJid),
198-
"nick": self.userId,
199-
"assrc": self.ssrcs["audio"],
200-
"vssrc": self.ssrcs["video"],
201-
}
196+
ssrcMsg = (
197+
"<presence to='%(tojid)s' xmlns='jabber:client'><x xmlns='http://jabber.org/protocol/muc'/><c xmlns='http://jabber.org/protocol/caps' hash='sha-1' node='http://jitsi.org/jitsimeet' ver='0WkSdhFnAUxrz4ImQQLdB80GFlE='/><nick xmlns='http://jabber.org/protocol/nick'>%(nick)s</nick><stats xmlns='http://jitsi.org/jitmeet/stats'><stat name='bitrate_download' value='175'/><stat name='bitrate_upload' value='176'/><stat name='packetLoss_total' value='0'/><stat name='packetLoss_download' value='0'/><stat name='packetLoss_upload' value='0'/></stats><media xmlns='http://estos.de/ns/mjs'><source type='audio' ssrc='%(assrc)s' direction='sendre'/><source type='video' ssrc='%(vssrc)s' direction='sendre'/></media></presence>"
198+
% {
199+
"tojid": "%s@%s/%s" % (ROOMNAME, ROOMDOMAIN, self.shortJid),
200+
"nick": self.userId,
201+
"assrc": self.ssrcs["audio"],
202+
"vssrc": self.ssrcs["video"],
203+
}
204+
)
202205
res = self.sendIq(ssrcMsg)
203206
print("reply from ssrc announce: ", res)
204207
time.sleep(10)

Diff for: debian/changelog

+12
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
matrix-synapse-py3 (1.56.0) stable; urgency=medium
2+
3+
* New synapse release 1.56.0.
4+
5+
-- Synapse Packaging team <[email protected]> Tue, 05 Apr 2022 12:38:39 +0100
6+
7+
matrix-synapse-py3 (1.56.0~rc1) stable; urgency=medium
8+
9+
* New synapse release 1.56.0~rc1.
10+
11+
-- Synapse Packaging team <[email protected]> Tue, 29 Mar 2022 10:40:50 +0100
12+
113
matrix-synapse-py3 (1.55.2) stable; urgency=medium
214

315
* New synapse release 1.55.2.

Diff for: demo/start.sh

+1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ for port in 8080 8081 8082; do
3838
printf '\n\n# Customisation made by demo/start.sh\n\n'
3939
echo "public_baseurl: http://localhost:$port/"
4040
echo 'enable_registration: true'
41+
echo 'enable_registration_without_verification: true'
4142
echo ''
4243

4344
# Warning, this heredoc depends on the interaction of tabs and spaces.

Diff for: docs/modules/spam_checker_callbacks.md

+6-4
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ any of the subsequent implementations of this callback.
172172
_First introduced in Synapse v1.37.0_
173173

174174
```python
175-
async def check_username_for_spam(user_profile: Dict[str, str]) -> bool
175+
async def check_username_for_spam(user_profile: synapse.module_api.UserProfile) -> bool
176176
```
177177

178178
Called when computing search results in the user directory. The module must return a
@@ -182,9 +182,11 @@ search results; otherwise return `False`.
182182

183183
The profile is represented as a dictionary with the following keys:
184184

185-
* `user_id`: The Matrix ID for this user.
186-
* `display_name`: The user's display name.
187-
* `avatar_url`: The `mxc://` URL to the user's avatar.
185+
* `user_id: str`. The Matrix ID for this user.
186+
* `display_name: Optional[str]`. The user's display name, or `None` if this user
187+
has not set a display name.
188+
* `avatar_url: Optional[str]`. The `mxc://` URL to the user's avatar, or `None`
189+
if this user has not set an avatar.
188190

189191
The module is given a copy of the original dictionary, so modifying it from within the
190192
module cannot modify a user's profile when included in user directory search results.

Diff for: docs/openid.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -225,6 +225,8 @@ oidc_providers:
225225
3. Create an application for synapse in Authentik and link it to the provider.
226226
4. Note the slug of your application, Client ID and Client Secret.
227227

228+
Note: RSA keys must be used for signing for Authentik, ECC keys do not work.
229+
228230
Synapse config:
229231
```yaml
230232
oidc_providers:
@@ -240,7 +242,7 @@ oidc_providers:
240242
- "email"
241243
user_mapping_provider:
242244
config:
243-
localpart_template: "{{ user.preferred_username }}}"
245+
localpart_template: "{{ user.preferred_username }}"
244246
display_name_template: "{{ user.preferred_username|capitalize }}" # TO BE FILLED: If your users have names in Authentik and you want those in Synapse, this should be replaced with user.name|capitalize.
245247
```
246248

Diff for: docs/postgres.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -234,12 +234,13 @@ host all all ::1/128 ident
234234
### Fixing incorrect `COLLATE` or `CTYPE`
235235
236236
Synapse will refuse to set up a new database if it has the wrong values of
237-
`COLLATE` and `CTYPE` set, and will log warnings on existing databases. Using
238-
different locales can cause issues if the locale library is updated from
237+
`COLLATE` and `CTYPE` set. Synapse will also refuse to start an existing database with incorrect values
238+
of `COLLATE` and `CTYPE` unless the config flag `allow_unsafe_locale`, found in the
239+
`database` section of the config, is set to true. Using different locales can cause issues if the locale library is updated from
239240
underneath the database, or if a different version of the locale is used on any
240241
replicas.
241242
242-
The safest way to fix the issue is to dump the database and recreate it with
243+
If you have a databse with an unsafe locale, the safest way to fix the issue is to dump the database and recreate it with
243244
the correct locale parameter (as shown above). It is also possible to change the
244245
parameters on a live database and run a `REINDEX` on the entire database,
245246
however extreme care must be taken to avoid database corruption.

Diff for: docs/reverse_proxy.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ matrix.example.com {
182182

183183
```
184184
frontend https
185-
bind :::443 v4v6 ssl crt /etc/ssl/haproxy/ strict-sni alpn h2,http/1.1
185+
bind *:443,[::]:443 ssl crt /etc/ssl/haproxy/ strict-sni alpn h2,http/1.1
186186
http-request set-header X-Forwarded-Proto https if { ssl_fc }
187187
http-request set-header X-Forwarded-Proto http if !{ ssl_fc }
188188
http-request set-header X-Forwarded-For %[src]
@@ -195,7 +195,7 @@ frontend https
195195
use_backend matrix if matrix-host matrix-path
196196
197197
frontend matrix-federation
198-
bind :::8448 v4v6 ssl crt /etc/ssl/haproxy/synapse.pem alpn h2,http/1.1
198+
bind *:8448,[::]:8448 ssl crt /etc/ssl/haproxy/synapse.pem alpn h2,http/1.1
199199
http-request set-header X-Forwarded-Proto https if { ssl_fc }
200200
http-request set-header X-Forwarded-Proto http if !{ ssl_fc }
201201
http-request set-header X-Forwarded-For %[src]

Diff for: docs/sample_config.yaml

+15-1
Original file line numberDiff line numberDiff line change
@@ -788,6 +788,12 @@ caches:
788788
# 'txn_limit' gives the maximum number of transactions to run per connection
789789
# before reconnecting. Defaults to 0, which means no limit.
790790
#
791+
# 'allow_unsafe_locale' is an option specific to Postgres. Under the default behavior, Synapse will refuse to
792+
# start if the postgres db is set to a non-C locale. You can override this behavior (which is *not* recommended)
793+
# by setting 'allow_unsafe_locale' to true. Note that doing so may corrupt your database. You can find more information
794+
# here: https://matrix-org.github.io/synapse/latest/postgres.html#fixing-incorrect-collate-or-ctype and here:
795+
# https://wiki.postgresql.org/wiki/Locale_data_changes
796+
#
791797
# 'args' gives options which are passed through to the database engine,
792798
# except for options starting 'cp_', which are used to configure the Twisted
793799
# connection pool. For a reference to valid arguments, see:
@@ -1223,10 +1229,18 @@ oembed:
12231229
# Registration can be rate-limited using the parameters in the "Ratelimiting"
12241230
# section of this file.
12251231

1226-
# Enable registration for new users.
1232+
# Enable registration for new users. Defaults to 'false'. It is highly recommended that if you enable registration,
1233+
# you use either captcha, email, or token-based verification to verify that new users are not bots. In order to enable registration
1234+
# without any verification, you must also set `enable_registration_without_verification`, found below.
12271235
#
12281236
#enable_registration: false
12291237

1238+
# Enable registration without email or captcha verification. Note: this option is *not* recommended,
1239+
# as registration without verification is a known vector for spam and abuse. Defaults to false. Has no effect
1240+
# unless `enable_registration` is also enabled.
1241+
#
1242+
#enable_registration_without_verification: true
1243+
12301244
# Time that a user's session remains valid for, after they log in.
12311245
#
12321246
# Note that this is not currently compatible with guest logins.

Diff for: docs/upgrade.md

+12
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,11 @@ process, for example:
8787

8888
# Upgrading to v1.56.0
8989

90+
## Open registration without verification is now disabled by default
91+
92+
Synapse will refuse to start if registration is enabled without email, captcha, or token-based verification unless the new config
93+
flag `enable_registration_without_verification` is set to "true".
94+
9095
## Groups/communities feature has been deprecated
9196

9297
The non-standard groups/communities feature in Synapse has been deprecated and will
@@ -99,6 +104,13 @@ experimental_features:
99104
groups_enabled: false
100105
```
101106

107+
## Change in behaviour for PostgreSQL databases with unsafe locale
108+
109+
Synapse now refuses to start when using PostgreSQL with non-`C` values for `COLLATE` and
110+
`CTYPE` unless the config flag `allow_unsafe_locale`, found in the database section of
111+
the configuration file, is set to `true`. See the [PostgreSQL documentation](https://matrix-org.github.io/synapse/latest/postgres.html#fixing-incorrect-collate-or-ctype)
112+
for more information and instructions on how to fix a database with incorrect values.
113+
102114
# Upgrading to v1.55.0
103115

104116
## `synctl` script has been moved

Diff for: docs/workers.md

+24-17
Original file line numberDiff line numberDiff line change
@@ -185,8 +185,8 @@ worker: refer to the [stream writers](#stream-writers) section below for further
185185
information.
186186

187187
# Sync requests
188-
^/_matrix/client/(v2_alpha|r0|v3)/sync$
189-
^/_matrix/client/(api/v1|v2_alpha|r0|v3)/events$
188+
^/_matrix/client/(r0|v3)/sync$
189+
^/_matrix/client/(api/v1|r0|v3)/events$
190190
^/_matrix/client/(api/v1|r0|v3)/initialSync$
191191
^/_matrix/client/(api/v1|r0|v3)/rooms/[^/]+/initialSync$
192192

@@ -200,13 +200,9 @@ information.
200200
^/_matrix/federation/v1/query/
201201
^/_matrix/federation/v1/make_join/
202202
^/_matrix/federation/v1/make_leave/
203-
^/_matrix/federation/v1/send_join/
204-
^/_matrix/federation/v2/send_join/
205-
^/_matrix/federation/v1/send_leave/
206-
^/_matrix/federation/v2/send_leave/
207-
^/_matrix/federation/v1/invite/
208-
^/_matrix/federation/v2/invite/
209-
^/_matrix/federation/v1/query_auth/
203+
^/_matrix/federation/(v1|v2)/send_join/
204+
^/_matrix/federation/(v1|v2)/send_leave/
205+
^/_matrix/federation/(v1|v2)/invite/
210206
^/_matrix/federation/v1/event_auth/
211207
^/_matrix/federation/v1/exchange_third_party_invite/
212208
^/_matrix/federation/v1/user/devices/
@@ -274,6 +270,8 @@ information.
274270
Additionally, the following REST endpoints can be handled for GET requests:
275271

276272
^/_matrix/federation/v1/groups/
273+
^/_matrix/client/(api/v1|r0|v3|unstable)/pushrules/
274+
^/_matrix/client/(r0|v3|unstable)/groups/
277275

278276
Pagination requests can also be handled, but all requests for a given
279277
room must be routed to the same instance. Additionally, care must be taken to
@@ -397,23 +395,23 @@ the stream writer for the `typing` stream:
397395
The following endpoints should be routed directly to the worker configured as
398396
the stream writer for the `to_device` stream:
399397

400-
^/_matrix/client/(api/v1|r0|v3|unstable)/sendToDevice/
398+
^/_matrix/client/(r0|v3|unstable)/sendToDevice/
401399

402400
##### The `account_data` stream
403401

404402
The following endpoints should be routed directly to the worker configured as
405403
the stream writer for the `account_data` stream:
406404

407-
^/_matrix/client/(api/v1|r0|v3|unstable)/.*/tags
408-
^/_matrix/client/(api/v1|r0|v3|unstable)/.*/account_data
405+
^/_matrix/client/(r0|v3|unstable)/.*/tags
406+
^/_matrix/client/(r0|v3|unstable)/.*/account_data
409407

410408
##### The `receipts` stream
411409

412410
The following endpoints should be routed directly to the worker configured as
413411
the stream writer for the `receipts` stream:
414412

415-
^/_matrix/client/(api/v1|r0|v3|unstable)/rooms/.*/receipt
416-
^/_matrix/client/(api/v1|r0|v3|unstable)/rooms/.*/read_markers
413+
^/_matrix/client/(r0|v3|unstable)/rooms/.*/receipt
414+
^/_matrix/client/(r0|v3|unstable)/rooms/.*/read_markers
417415

418416
##### The `presence` stream
419417

@@ -528,19 +526,28 @@ Note that if a reverse proxy is used , then `/_matrix/media/` must be routed for
528526
Handles searches in the user directory. It can handle REST endpoints matching
529527
the following regular expressions:
530528

531-
^/_matrix/client/(api/v1|r0|v3|unstable)/user_directory/search$
529+
^/_matrix/client/(r0|v3|unstable)/user_directory/search$
532530

533-
When using this worker you must also set `update_user_directory: False` in the
531+
When using this worker you must also set `update_user_directory: false` in the
534532
shared configuration file to stop the main synapse running background
535533
jobs related to updating the user directory.
536534

535+
Above endpoint is not *required* to be routed to this worker. By default,
536+
`update_user_directory` is set to `true`, which means the main process
537+
will handle updates. All workers configured with `client` can handle the above
538+
endpoint as long as either this worker or the main process are configured to
539+
handle it, and are online.
540+
541+
If `update_user_directory` is set to `false`, and this worker is not running,
542+
the above endpoint may give outdated results.
543+
537544
### `synapse.app.frontend_proxy`
538545

539546
Proxies some frequently-requested client endpoints to add caching and remove
540547
load from the main synapse. It can handle REST endpoints matching the following
541548
regular expressions:
542549

543-
^/_matrix/client/(api/v1|r0|v3|unstable)/keys/upload
550+
^/_matrix/client/(r0|v3|unstable)/keys/upload
544551

545552
If `use_presence` is False in the homeserver config, it can also handle REST
546553
endpoints matching the following regular expressions:

Diff for: mypy.ini

-20
Original file line numberDiff line numberDiff line change
@@ -38,17 +38,11 @@ exclude = (?x)
3838
|synapse/_scripts/update_synapse_database.py
3939

4040
|synapse/storage/databases/__init__.py
41-
|synapse/storage/databases/main/__init__.py
4241
|synapse/storage/databases/main/cache.py
4342
|synapse/storage/databases/main/devices.py
4443
|synapse/storage/databases/main/event_federation.py
45-
|synapse/storage/databases/main/group_server.py
46-
|synapse/storage/databases/main/metrics.py
47-
|synapse/storage/databases/main/monthly_active_users.py
4844
|synapse/storage/databases/main/push_rule.py
49-
|synapse/storage/databases/main/receipts.py
5045
|synapse/storage/databases/main/roommember.py
51-
|synapse/storage/databases/main/search.py
5246
|synapse/storage/databases/main/state.py
5347
|synapse/storage/schema/
5448

@@ -66,14 +60,6 @@ exclude = (?x)
6660
|tests/federation/test_federation_server.py
6761
|tests/federation/transport/test_knocking.py
6862
|tests/federation/transport/test_server.py
69-
|tests/handlers/test_cas.py
70-
|tests/handlers/test_directory.py
71-
|tests/handlers/test_e2e_keys.py
72-
|tests/handlers/test_federation.py
73-
|tests/handlers/test_oidc.py
74-
|tests/handlers/test_presence.py
75-
|tests/handlers/test_profile.py
76-
|tests/handlers/test_saml.py
7763
|tests/handlers/test_typing.py
7864
|tests/http/federation/test_matrix_federation_agent.py
7965
|tests/http/federation/test_srv_resolver.py
@@ -85,7 +71,6 @@ exclude = (?x)
8571
|tests/logging/test_terse_json.py
8672
|tests/module_api/test_api.py
8773
|tests/push/test_email.py
88-
|tests/push/test_http.py
8974
|tests/push/test_presentable_names.py
9075
|tests/push/test_push_rule_evaluator.py
9176
|tests/rest/client/test_transactions.py
@@ -94,12 +79,7 @@ exclude = (?x)
9479
|tests/server.py
9580
|tests/server_notices/test_resource_limits_server_notices.py
9681
|tests/state/test_v2.py
97-
|tests/storage/test_background_update.py
9882
|tests/storage/test_base.py
99-
|tests/storage/test_client_ips.py
100-
|tests/storage/test_database.py
101-
|tests/storage/test_event_federation.py
102-
|tests/storage/test_id_generators.py
10383
|tests/storage/test_roommember.py
10484
|tests/test_metrics.py
10585
|tests/test_phone_home.py

0 commit comments

Comments
 (0)