Eric Eastwood
b14e8631d2
Add note
2024-06-03 10:01:42 -05:00
Eric Eastwood
3cb71cada7
Add changelog
2024-05-30 16:36:16 -05:00
Eric Eastwood
44deafca7a
Add is_encrypted
filtering to Sliding Sync /sync
...
Based on [MSC3575](https://github.com/matrix-org/matrix-spec-proposals/pull/3575 ): Sliding Sync
2024-05-30 16:34:48 -05:00
Eric Eastwood
813cda92df
Add test to make sure only joined spaces are taken into account
2024-05-30 16:21:14 -05:00
Eric Eastwood
212ea3568a
Add TODO
2024-05-30 15:54:27 -05:00
Eric Eastwood
c069522881
Fix lints
2024-05-30 15:51:46 -05:00
Eric Eastwood
64554c07ec
Add changelog
2024-05-30 15:48:23 -05:00
Eric Eastwood
2cac70182a
Update test description
2024-05-30 15:48:16 -05:00
Eric Eastwood
d477a63df6
Add spaces
filtering to Sliding Sync /sync
...
Based on [MSC3575](https://github.com/matrix-org/matrix-spec-proposals/pull/3575 ): Sliding Sync
2024-05-30 15:46:16 -05:00
Eric Eastwood
6b1eba4fee
Add rest test to make sure filters apply
2024-05-30 13:25:07 -05:00
Eric Eastwood
92ea28674f
Merge branch 'madlittlemods/msc3575-sliding-sync-0.0.1' into madlittlemods/msc3575-sliding-sync-filtering
2024-05-30 09:22:21 -05:00
Eric Eastwood
49998e053e
Merge branch 'develop' into madlittlemods/msc3575-sliding-sync-0.0.1
2024-05-30 09:21:58 -05:00
Erik Johnston
5624c8b961
In sync wait for worker to catch up since token ( #17215 )
...
Otherwise things will get confused.
An alternative would be to make sure that for lagging stream we don't
return anything (and make sure the returned next_batch token doesn't go
backwards). But that is a faff.
2024-05-30 14:03:49 +01:00
Erik Johnston
4e3868dc46
Fix deduplicating of membership events to not create unused state groups. ( #17164 )
...
We try and deduplicate in two places: 1) really early on, and 2) just
before we persist the event. The first case was broken due to it
occuring before the profile information was added, and so it thought the
event contents were different.
The second case did catch it and handle it correctly, however doing so
creates a redundant state group leading to bloat.
Fixes #3791
2024-05-30 11:33:48 +00:00
Erik Johnston
d16910ca02
Replaces all usages of StreamIdGenerator
with MultiWriterIdGenerator
( #17229 )
...
Replaces all usages of `StreamIdGenerator` with `MultiWriterIdGenerator`, which is safer.
2024-05-30 11:07:32 +00:00
Erik Johnston
225f378ffa
Clean out invalid destinations from outbox ( #17242 )
...
We started ensuring we only insert valid destinations:
https://github.com/element-hq/synapse/pull/17240
2024-05-30 11:25:24 +01:00
Erik Johnston
8bd9ff0783
Ensure we delete media if we reject due to spam check ( #17246 )
...
Fixes up #17239
We need to keep the spam check within the `try/except` block. Also makes
it so that we don't enter the top span twice.
Also also ensures that we get the right thumbnail length.
2024-05-30 11:22:19 +01:00
Eric Eastwood
f74cc3f166
Merge branch 'madlittlemods/msc3575-sliding-sync-0.0.1' into madlittlemods/msc3575-sliding-sync-filtering
2024-05-29 22:48:14 -05:00
Eric Eastwood
34d67fdcd1
Merge branch 'develop' into madlittlemods/msc3575-sliding-sync-0.0.1
2024-05-29 17:37:31 -05:00
Eric Eastwood
8bf5a623d7
Add rest test
2024-05-29 17:05:53 -05:00
Eric Eastwood
770992c791
Fix typo, reword
2024-05-29 16:48:05 -05:00
Eric Eastwood
7804febb63
Add changelog
2024-05-29 16:42:03 -05:00
Eric Eastwood
27465fcfa6
Prefer not None
2024-05-29 16:40:57 -05:00
Eric Eastwood
3b670046a9
Rename _create_dm_room
2024-05-29 16:37:21 -05:00
Eric Eastwood
1dd04d2896
Add tests for DM filter
2024-05-29 16:35:27 -05:00
Eric Eastwood
d65c694a71
Filter DM from account data
2024-05-29 15:32:06 -05:00
Erik Johnston
466f344547
Move towards using MultiWriterIdGenerator
everywhere ( #17226 )
...
There is a problem with `StreamIdGenerator` where it can go backwards
over restarts when a stream ID is requested but then not inserted into
the DB. This is problematic if we want to land #17215 , and is generally
a potential cause for all sorts of nastiness.
Instead of trying to fix `StreamIdGenerator`, we may as well move to
`MultiWriterIdGenerator` that does not suffer from this problem (the
latest positions are stored in `stream_positions` table). This involves
adding SQLite support to the class.
This only changes id generators that were already using
`MultiWriterIdGenerator` under postgres, a separate PR will move the
rest of the uses of `StreamIdGenerator` over.
2024-05-29 12:19:10 +00:00
Erik Johnston
726006cdf2
Don't invalidate all get_relations_for_event
on history purge ( #17083 )
...
This is a tree cache already, so may as well move the room ID to the
front and use that
2024-05-29 12:57:10 +01:00
Erik Johnston
967b6948b0
Change allow_unsafe_locale to also apply on new databases ( #17238 )
...
We relax this as there are use cases where this is safe, though it is
still highly recommended that people avoid using it.
2024-05-29 12:04:13 +01:00
Erik Johnston
d7198dfb95
Ignore attempts to send to-device messages to bad users ( #17240 )
...
Currently sending a to-device message to a user ID with a dodgy
destination is accepted, but then ends up spamming the logs when we try
and send to the destination.
An alternative would be to reject the request, but I'm slightly nervous
that could break things.
2024-05-29 11:52:48 +01:00
Erik Johnston
94ef2f4f5d
Handle duplicate OTK uploads racing ( #17241 )
...
Currently this causes one of then to 500.
2024-05-29 11:16:00 +01:00
Erik Johnston
bb5a692946
Fix slipped logging context when media rejected ( #17239 )
...
When a module rejects a piece of media we end up trying to close the
same logging context twice.
Instead of fixing the existing code we refactor to use an async context
manager, which is easier to write correctly.
2024-05-29 11:14:42 +01:00
Eric Eastwood
950fd70948
Tweak comments
2024-05-28 15:51:05 -05:00
Eric Eastwood
a28569f79d
Add understanding of this skip
2024-05-28 15:41:32 -05:00
Eric Eastwood
abf139a3b7
Fill out docstring todo
2024-05-28 15:41:11 -05:00
Eric Eastwood
b632cbb46a
Add better comments
2024-05-28 15:05:35 -05:00
Eric Eastwood
44e9a92f01
Fill in rest docstring
2024-05-28 14:29:41 -05:00
Eric Eastwood
b12fee5f21
Merge branch 'develop' into madlittlemods/msc3575-sliding-sync-0.0.1
2024-05-28 09:51:04 -05:00
Olivier 'reivilibre
ad179b0136
Merge branch 'master' into develop
2024-05-28 13:34:19 +01:00
dependabot[bot]
5147ce294a
Bump phonenumbers from 8.13.35 to 8.13.37 ( #17235 )
2024-05-28 13:26:37 +01:00
Olivier 'reivilibre
f35bc08d39
1.108.0
2024-05-28 11:54:28 +01:00
dependabot[bot]
f2616edb73
Bump pyicu from 2.13 to 2.13.1 ( #17236 )
2024-05-28 11:28:58 +01:00
dependabot[bot]
86a2a0258f
Bump pyopenssl from 24.0.0 to 24.1.0 ( #17234 )
2024-05-28 11:28:32 +01:00
dependabot[bot]
0893ee9af8
Bump prometheus-client from 0.19.0 to 0.20.0 ( #17233 )
2024-05-28 11:28:16 +01:00
dependabot[bot]
887f773472
Bump serde from 1.0.202 to 1.0.203 ( #17232 )
2024-05-28 11:27:51 +01:00
Shay
9edb725ebc
Support MSC3916 by adding unstable media endpoints to _matrix/client
( #17213 )
...
[MSC3916](https://github.com/matrix-org/matrix-spec-proposals/blob/rav/authentication-for-media/proposals/3916-authentication-for-media.md )
adds new media endpoints under `_matrix/client`. This PR adds the
`/preview_url`, `/config`, and `/thumbnail` endpoints. `/download` will
be added in a follow-up PR once the work for the federation `/download`
endpoint is complete (see
https://github.com/element-hq/synapse/pull/17172 ).
Should be reviewable commit-by-commit.
2024-05-24 09:47:37 +01:00
Eric Eastwood
adc0e2f5e8
Fix unserialize type
2024-05-23 17:24:19 -05:00
Eric Eastwood
65d9b7968d
Fix lints
2024-05-23 17:22:27 -05:00
Eric Eastwood
b5b3e77e7e
Fix Pydantic conint
/constr
usage with mypy
...
See https://github.com/pydantic/pydantic/issues/156#issuecomment-1130883884
2024-05-23 16:56:48 -05:00
Eric Eastwood
d1bd02d91d
Add TODO to handle partial stated rooms
2024-05-23 16:16:26 -05:00