synapse/changelog.d
Erik Johnston 98c8fc6ce8
Handle federation inbound instances being killed more gracefully (#11262)
* Make lock better handle process being killed

If the process gets killed and restarted (so that it didn't have a
chance to drop its locks gracefully) then there may still be locks in
the DB that are for the same instance that haven't yet timed out but are
safe to delete.

We handle this case by a) checking if the current instance already has
taken out the lock, and b) if not then ignoring locks that are for the
same instance.

* Periodically check for old staged events

This is to protect against other instances dying and their locks timing
out.
2021-11-08 09:54:47 +00:00
..
.gitignore
10097.bugfix Stop synapse from saving messages in device_inbox for hidden devices. (#10097) 2021-11-01 10:40:41 +00:00
10943.misc Annotate log_function decorator (#10943) 2021-10-27 17:27:23 +01:00
10969.bugfix Delete messages from device_inbox table when deleting device (#10969) 2021-10-27 16:01:18 +01:00
11033.bugfix Make check_event_allowed module API callback not fail open (accept events) when an exception is raised (#11033) 2021-11-01 15:45:56 +00:00
11097.feature Support Client-Server API r0.6.1 (#11097) 2021-11-01 13:28:39 +00:00
11098.misc Add remaining type hints to synapse.events. (#11098) 2021-11-02 09:55:52 -04:00
11099.feature Add search by room ID and room alias to List Room admin API (#11099) 2021-11-02 10:01:13 +00:00
11126.feature Implement an on_new_event callback (#11126) 2021-10-26 15:17:36 +02:00
11128.doc Add domain specific matching for haproxy config (#11128) 2021-11-01 14:16:02 +00:00
11129.bugfix Fetch verify key locally rather than trying to do so over federation if origin and host are the same. (#11129) 2021-10-28 10:27:17 -07:00
11137.misc Fix providing a RoomStreamToken instance to _notify_app_services_ephemeral (#11137) 2021-11-02 10:39:02 +00:00
11147.feature Add a ModuleApi method to update a user's membership in a room (#11147) 2021-10-28 16:45:53 +00:00
11151.doc docs/openid: Add Authentik documentation. (#11151) 2021-10-28 10:31:22 +00:00
11164.misc Type hints for the remaining two files in synapse.http. (#11164) 2021-10-28 14:14:42 +01:00
11166.misc Changelog 2021-10-22 23:21:40 +01:00
11171.misc Add knock information in admin exported data (#11171) 2021-10-28 18:54:38 +01:00
11178.feature Add metrics to the threadpools (#11178) 2021-11-01 11:21:36 +00:00
11179.misc Test that ClientIpStore combines database and in-memory data correctly (#11179) 2021-11-01 11:20:54 +00:00
11187.feature Include the stable identifier for MSC3288. (#11187) 2021-10-27 14:19:19 +00:00
11188.bugfix Support sending no state_events_at_start in the MSC2716 /batch_send endpoint (#11188) 2021-11-03 03:13:51 -05:00
11191.bugfix Fixed config parse bug in review_recent_signups (#11191) 2021-10-27 17:25:18 +01:00
11194.misc Refactor Filter to handle fields according to data being filtered. (#11194) 2021-10-27 11:26:30 -04:00
11198.doc Clarify lack of Windows support in documentation (#11198) 2021-10-29 14:03:58 +01:00
11199.bugfix Delete messages for hidden devices from device_inbox (#11199) 2021-11-02 13:18:30 +00:00
11200.bugfix Handle missing Content-Type header when accessing remote media (#11200) 2021-11-01 10:26:02 -07:00
11204.feature Add a module API method to retrieve state from a room (#11204) 2021-10-29 16:28:29 +00:00
11205.misc Additional type hints for relations database class. (#11205) 2021-10-28 14:35:12 -04:00
11206.removal Deprecate user_may_create_room_with_invites (#11206) 2021-11-01 10:46:08 +01:00
11207.bugfix Add a linearizer on (appservice, stream) when handling ephemeral events. (#11207) 2021-11-03 16:51:00 +00:00
11209.docker Docker: avoid changing userid unnecessarily (#11209) 2021-11-01 13:55:30 +00:00
11211.feature Support for serving server well-known files (#11211) 2021-11-01 15:10:16 +00:00
11212.bugfix Fix comments referencing v1.46.0 from PR #10969. (#11212) 2021-10-29 13:43:51 -04:00
11213.removal Remove deprecated delete room admin API (#11213) 2021-11-01 15:11:24 +00:00
11217.bugfix Add use_float=true to ijson calls in Synapse (#11217) 2021-11-01 09:28:04 -07:00
11221.doc Improve code formatting and fix a few typos in docs (#11221) 2021-11-01 11:35:55 +00:00
11225.misc Update outdated links in PULL_REQUEST_TEMPLATE.md (#11225) 2021-11-01 17:29:51 +00:00
11226.misc Fix a bug in unit test test_block_room_and_not_purge (#11226) 2021-11-01 16:10:09 +00:00
11229.misc ObservableDeferred: run observers in order (#11229) 2021-11-02 00:17:35 +00:00
11231.misc Add index to local_group_updates.stream_id (#11231) 2021-11-02 15:46:48 +00:00
11233.misc Add twine and towncrier as dev dependencies (#11233) 2021-11-03 11:10:25 +00:00
11237.misc Enable passing typing stream writers as a list. (#11237) 2021-11-03 14:25:47 +00:00
11239.misc Remove a debug statement from tests. (#11239) 2021-11-03 13:11:16 +00:00
11240.bugfix Track ongoing event fetches correctly in the presence of failure (#11240) 2021-11-04 10:33:53 +00:00
11246.misc Additional test for cachedList (#11246) 2021-11-04 14:45:34 +00:00
11253.misc Make minor correction to type of auth_checkers callbacks (#11253) 2021-11-04 17:10:11 +00:00
11255.bugfix Fix rolling back when using workers (#11255) 2021-11-05 11:12:10 +00:00
11257.doc Add doc to integrate synapse with LemonLDAP OIDC (#11257) 2021-11-05 12:08:02 +00:00
11262.bugfix Handle federation inbound instances being killed more gracefully (#11262) 2021-11-08 09:54:47 +00:00
11269.misc Minor cleanup to Debian packaging (#11269) 2021-11-07 21:18:33 +00:00