summary refs log tree commit diff
path: root/changelog.d
diff options
context:
space:
mode:
authorErik Johnston <erikj@element.io>2024-01-10 12:29:42 +0000
committerGitHub <noreply@github.com>2024-01-10 12:29:42 +0000
commitc3f2f0f063e5d97e1ae396b85330ea249499f077 (patch)
tree45a2b9055e2c918927f07f9a10d91bb4c2a9e4bc /changelog.d
parentBump authlib from 1.2.1 to 1.3.0 (#16801) (diff)
downloadsynapse-c3f2f0f063e5d97e1ae396b85330ea249499f077.tar.xz
Faster partial join to room with complex auth graph (#7)
Instead of persisting outliers in a bunch of batches, let's just do them
all at once.

This is fine because all `_auth_and_persist_outliers_inner` is doing is
checking the auth rules for each event, which requires the events to be
topologically sorted by the auth graph.
Diffstat (limited to 'changelog.d')
-rw-r--r--changelog.d/7.misc1
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/7.misc b/changelog.d/7.misc
new file mode 100644
index 0000000000..63f1fb77ff
--- /dev/null
+++ b/changelog.d/7.misc
@@ -0,0 +1 @@
+Faster partial join to room with complex auth graph.