Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2021-10-28 | Put empty prev_events behind new room version | Eric Eastwood | 2 | -10/+47 | |
See https://github.com/matrix-org/synapse/pull/11114#discussion_r733475645 | |||||
2021-10-21 | Revert back to string interpolation for SQL boolean value | Eric Eastwood | 1 | -2/+2 | |
Maybe fixes the `sqlite3.OperationalError: no such column: FALSE,` problem in CI, https://github.com/matrix-org/synapse/runs/3962382283#step:4:11038 | |||||
2021-10-21 | Fix mypy lints | Eric Eastwood | 2 | -2/+4 | |
2021-10-21 | Remove unused import | Eric Eastwood | 1 | -1/+1 | |
2021-10-21 | Put MSC2716 backfill logic behind experimental feature flag | Eric Eastwood | 2 | -50/+60 | |
2021-10-21 | Move to sorting the backfill events in the existing sorted | Eric Eastwood | 1 | -9/+6 | |
2021-10-21 | Remove extra event info | Eric Eastwood | 1 | -10/+7 | |
2021-10-21 | Remove debug logging | Eric Eastwood | 7 | -184/+11 | |
2021-10-21 | Fix setting a user's external_id via the admin API returns 500 and deletes ↵ | Dirk Klimpel | 4 | -37/+321 | |
users existing external mappings if that external ID is already mapped (#11051) Fixes #10846 | |||||
2021-10-21 | Remove fake prev events from historical state chain | Eric Eastwood | 8 | -9/+83 | |
Fix https://github.com/matrix-org/synapse/issues/11091 We have to allow creation of events with no prev_events but do have auth_events. And since the historical member events are outliers with no prev_events to resolve them, we want to avoid putting them as backward extremeties. | |||||
2021-10-20 | Some more debug logging | Eric Eastwood | 4 | -5/+21 | |
2021-10-20 | Fix backfill not picking up batch events connected to non-base insertion events | Eric Eastwood | 4 | -21/+34 | |
Previously, we would only look for a batch event if the insertion event was connected to something else by prev_event. This is only the case for the base insertion event. And instead, we need to look for a batch event whenever we come across an insertion event. | |||||
2021-10-20 | Update `sign_json` to support inline key config (#11139) | Richard van der Hoff | 2 | -7/+26 | |
It's been possible to configure a key inline in the homeserver.yaml since 13bc1e0746aa0442aa5d43555cbbc2dc75e8ef43. Update `sign_json` to work with this. | |||||
2021-10-20 | Consider IP whitelist for identity server resolution (#11120) | Robert Edström | 2 | -1/+4 | |
Signed-off-by: Robert Edström <github@legogris.se> | |||||
2021-10-20 | Clean up `_update_auth_events_and_context_for_auth` (#11122) | Richard van der Hoff | 2 | -114/+38 | |
Remove some redundant code, and generally simplify. | |||||
2021-10-20 | Show error when timestamp in seconds is provided to the /purge_media_cache ↵ | Aaron R | 4 | -13/+133 | |
API (#11101) | |||||
2021-10-20 | Remove false warning about copying the log config to a homeserver.yaml (#11092) | Travis Ralston | 2 | -6/+7 | |
Co-authored-by: Andrew Morgan <1342360+anoadragon453@users.noreply.github.com> | |||||
2021-10-20 | Document the version of Synapse each module callback was introduced in (#11132) | Brendan Abolivier | 6 | -0/+45 | |
* Mention callbacks introduced in v1.37.0 According to the documentation introduced in https://github.com/matrix-org/synapse/pull/10062 * Mention callbacks introduced in v1.39.0 According to https://github.com/matrix-org/synapse/pull/10386 and https://github.com/matrix-org/synapse/pull/9884 * Mention callbacks introduced in v1.42.0 According to https://github.com/matrix-org/synapse/pull/10524 * Mention callbacks introduced in v1.44.0 and v1.45.0 As per https://github.com/matrix-org/synapse/pull/10898, https://github.com/matrix-org/synapse/pull/10910 and https://github.com/matrix-org/synapse/pull/10894 * Mention callbacks introduced in v1.46.0 According to https://github.com/matrix-org/synapse/pull/10548 | |||||
2021-10-20 | Remove link to #10947 from changelog v1.45.1 | Sean Quah | 1 | -1/+1 | |
2021-10-20 | 1.45.1 | Sean Quah | 4 | -2/+16 | |
2021-10-20 | Revert change to counting of deactivated users towards the monthly active ↵ | Sean Quah | 4 | -62/+4 | |
users limit (#11127) Temporarily revert "Add functionality to remove deactivated users from the monthly_active_users table (#10947)". This reverts commit eda8c88b84ee7506379a71ac2a7a88c08b759d43. | |||||
2021-10-19 | Add missing type hints to event fetching. (#11121) | Patrick Cloke | 2 | -61/+82 | |
Updates the event rows returned from the database to be attrs classes instead of dictionaries. | |||||
2021-10-19 | Fix instances of [example]{.title-ref} in the upgrade notes (#11118) | Andrew Morgan | 2 | -27/+28 | |
2021-10-19 | Be less inconsistent about v1.2.3 versus 1.2.3 v1.45.0 | David Robertson | 1 | -5/+5 | |
2021-10-19 | Duplicate known issues under 1.45 release | David Robertson | 1 | -0/+7 | |
2021-10-19 | 1.45.0 | David Robertson | 4 | -2/+18 | |
2021-10-19 | Reword changelog regarding a suspected regression (#11117) | Dan Callahan | 2 | -3/+15 | |
Signed-off-by: Dan Callahan <danc@element.io> | |||||
2021-10-19 | Move _persist_auth_tree into FederationEventHandler (#11115) | Richard van der Hoff | 3 | -125/+120 | |
This is just a lift-and-shift, because it fits more naturally here. We do rename it to `process_remote_join` at the same time though. | |||||
2021-10-19 | Rename `_auth_and_persist_fetched_events` (#11116) | Richard van der Hoff | 2 | -14/+10 | |
... to `_auth_and_persist_outliers`, since that reflects its purpose better. | |||||
2021-10-19 | Include re |