matrix-synapse 1.102.0rc1__tar.gz → 1.142.0rc3__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of matrix-synapse might be problematic. Click here for more details.

Files changed (2402) hide show
  1. matrix_synapse-1.142.0rc3/CHANGES.md +1470 -0
  2. matrix_synapse-1.142.0rc3/Cargo.lock +1924 -0
  3. matrix_synapse-1.142.0rc3/LICENSE-COMMERCIAL +6 -0
  4. matrix_synapse-1.142.0rc3/PKG-INFO +375 -0
  5. matrix_synapse-1.142.0rc3/README.rst +293 -0
  6. matrix_synapse-1.142.0rc3/build_rust.py +42 -0
  7. matrix_synapse-1.142.0rc3/demo/start.sh +167 -0
  8. matrix_synapse-1.142.0rc3/docs/README.md +86 -0
  9. matrix_synapse-1.142.0rc3/docs/SUMMARY.md +125 -0
  10. matrix_synapse-1.142.0rc3/docs/admin_api/client_server_api_extensions.md +67 -0
  11. matrix_synapse-1.142.0rc3/docs/admin_api/event_reports.md +185 -0
  12. matrix_synapse-1.142.0rc3/docs/admin_api/experimental_features.md +52 -0
  13. matrix_synapse-1.142.0rc3/docs/admin_api/fetch_event.md +53 -0
  14. matrix_synapse-1.142.0rc3/docs/admin_api/media_admin_api.md +358 -0
  15. matrix_synapse-1.142.0rc3/docs/admin_api/room_membership.md +35 -0
  16. matrix_synapse-1.142.0rc3/docs/admin_api/rooms.md +1190 -0
  17. matrix_synapse-1.142.0rc3/docs/admin_api/scheduled_tasks.md +54 -0
  18. matrix_synapse-1.142.0rc3/docs/admin_api/user_admin_api.md +1553 -0
  19. matrix_synapse-1.142.0rc3/docs/changelogs/CHANGES-2023.md +2202 -0
  20. matrix_synapse-1.142.0rc3/docs/changelogs/CHANGES-2024.md +1586 -0
  21. matrix_synapse-1.142.0rc3/docs/code_style.md +119 -0
  22. matrix_synapse-1.142.0rc3/docs/deprecation_policy.md +89 -0
  23. matrix_synapse-1.142.0rc3/docs/development/contributing_guide.md +554 -0
  24. matrix_synapse-1.142.0rc3/docs/development/database_schema.md +404 -0
  25. matrix_synapse-1.142.0rc3/docs/development/dependencies.md +326 -0
  26. matrix_synapse-1.142.0rc3/docs/development/internal_documentation/release_notes_review_checklist.md +12 -0
  27. matrix_synapse-1.142.0rc3/docs/development/room-dag-concepts.md +115 -0
  28. matrix_synapse-1.142.0rc3/docs/element_logo_white_bg.svg +94 -0
  29. matrix_synapse-1.142.0rc3/docs/log_contexts.md +566 -0
  30. matrix_synapse-1.142.0rc3/docs/message_retention_policies.md +207 -0
  31. matrix_synapse-1.142.0rc3/docs/modules/media_repository_callbacks.md +131 -0
  32. matrix_synapse-1.142.0rc3/docs/modules/ratelimit_callbacks.md +43 -0
  33. matrix_synapse-1.142.0rc3/docs/modules/spam_checker_callbacks.md +517 -0
  34. matrix_synapse-1.142.0rc3/docs/modules/third_party_rules_callbacks.md +350 -0
  35. matrix_synapse-1.142.0rc3/docs/openid.md +778 -0
  36. matrix_synapse-1.142.0rc3/docs/postgres.md +269 -0
  37. matrix_synapse-1.142.0rc3/docs/reverse_proxy.md +288 -0
  38. matrix_synapse-1.142.0rc3/docs/setup/forward_proxy.md +89 -0
  39. matrix_synapse-1.142.0rc3/docs/setup/installation.md +649 -0
  40. matrix_synapse-1.142.0rc3/docs/setup/turn/coturn.md +197 -0
  41. matrix_synapse-1.142.0rc3/docs/spam_checker.md +122 -0
  42. matrix_synapse-1.142.0rc3/docs/sso_mapping_providers.md +208 -0
  43. matrix_synapse-1.142.0rc3/docs/structured_logging.md +80 -0
  44. matrix_synapse-1.142.0rc3/docs/systemd-with-workers/system/matrix-synapse.service +23 -0
  45. matrix_synapse-1.142.0rc3/docs/upgrade.md +2849 -0
  46. matrix_synapse-1.142.0rc3/docs/usage/administration/admin_api/background_updates.md +109 -0
  47. matrix_synapse-1.142.0rc3/docs/usage/administration/admin_faq.md +294 -0
  48. matrix_synapse-1.142.0rc3/docs/usage/administration/backups.md +125 -0
  49. matrix_synapse-1.142.0rc3/docs/usage/administration/monitoring/reporting_homeserver_usage_statistics.md +77 -0
  50. matrix_synapse-1.142.0rc3/docs/usage/administration/useful_sql_for_admins.md +216 -0
  51. matrix_synapse-1.142.0rc3/docs/usage/configuration/config_documentation.md +4749 -0
  52. matrix_synapse-1.142.0rc3/docs/user_directory.md +130 -0
  53. matrix_synapse-1.142.0rc3/docs/website_files/version-picker.js +147 -0
  54. matrix_synapse-1.142.0rc3/docs/welcome_and_overview.md +67 -0
  55. matrix_synapse-1.142.0rc3/docs/workers.md +889 -0
  56. matrix_synapse-1.142.0rc3/mypy.ini +115 -0
  57. matrix_synapse-1.142.0rc3/pyproject.toml +426 -0
  58. matrix_synapse-1.142.0rc3/rust/Cargo.toml +63 -0
  59. matrix_synapse-1.142.0rc3/rust/src/acl/mod.rs +109 -0
  60. matrix_synapse-1.142.0rc3/rust/src/errors.rs +72 -0
  61. matrix_synapse-1.142.0rc3/rust/src/events/filter.rs +107 -0
  62. matrix_synapse-1.142.0rc3/rust/src/events/internal_metadata.rs +496 -0
  63. matrix_synapse-1.142.0rc3/rust/src/events/mod.rs +46 -0
  64. matrix_synapse-1.142.0rc3/rust/src/http.rs +174 -0
  65. matrix_synapse-1.142.0rc3/rust/src/http_client.rs +320 -0
  66. matrix_synapse-1.142.0rc3/rust/src/identifier.rs +252 -0
  67. matrix_synapse-1.142.0rc3/rust/src/lib.rs +73 -0
  68. matrix_synapse-1.142.0rc3/rust/src/matrix_const.rs +28 -0
  69. matrix_synapse-1.142.0rc3/rust/src/push/base_rules.rs +736 -0
  70. matrix_synapse-1.142.0rc3/rust/src/push/evaluator.rs +646 -0
  71. matrix_synapse-1.142.0rc3/rust/src/push/mod.rs +815 -0
  72. matrix_synapse-1.142.0rc3/rust/src/push/utils.rs +221 -0
  73. matrix_synapse-1.142.0rc3/rust/src/rendezvous/mod.rs +343 -0
  74. matrix_synapse-1.142.0rc3/rust/src/rendezvous/session.rs +91 -0
  75. matrix_synapse-1.142.0rc3/rust/src/segmenter.rs +33 -0
  76. matrix_synapse-1.142.0rc3/scripts-dev/build_debian_packages.py +228 -0
  77. matrix_synapse-1.142.0rc3/scripts-dev/check_locked_deps_have_sdists.py +64 -0
  78. matrix_synapse-1.142.0rc3/scripts-dev/check_schema_delta.py +212 -0
  79. matrix_synapse-1.142.0rc3/scripts-dev/complement.sh +301 -0
  80. matrix_synapse-1.142.0rc3/scripts-dev/federation_client.py +402 -0
  81. matrix_synapse-1.142.0rc3/scripts-dev/gen_config_documentation.py +510 -0
  82. matrix_synapse-1.142.0rc3/scripts-dev/lint.sh +141 -0
  83. matrix_synapse-1.142.0rc3/scripts-dev/mypy_synapse_plugin.py +918 -0
  84. matrix_synapse-1.142.0rc3/scripts-dev/release.py +1028 -0
  85. matrix_synapse-1.142.0rc3/scripts-dev/schema_versions.py +182 -0
  86. matrix_synapse-1.142.0rc3/scripts-dev/sign_json.py +172 -0
  87. matrix_synapse-1.142.0rc3/setup.py +272 -0
  88. matrix_synapse-1.142.0rc3/synapse/__init__.py +97 -0
  89. matrix_synapse-1.142.0rc3/synapse/_scripts/generate_workers_map.py +318 -0
  90. matrix_synapse-1.142.0rc3/synapse/_scripts/hash_password.py +95 -0
  91. matrix_synapse-1.142.0rc3/synapse/_scripts/register_new_matrix_user.py +374 -0
  92. matrix_synapse-1.142.0rc3/synapse/_scripts/review_recent_signups.py +212 -0
  93. matrix_synapse-1.142.0rc3/synapse/_scripts/synapse_port_db.py +1603 -0
  94. matrix_synapse-1.142.0rc3/synapse/_scripts/synctl.py +365 -0
  95. matrix_synapse-1.142.0rc3/synapse/_scripts/update_synapse_database.py +130 -0
  96. matrix_synapse-1.142.0rc3/synapse/api/auth/__init__.py +207 -0
  97. matrix_synapse-1.142.0rc3/synapse/api/auth/base.py +406 -0
  98. matrix_synapse-1.142.0rc3/synapse/api/auth/internal.py +299 -0
  99. matrix_synapse-1.142.0rc3/synapse/api/auth/mas.py +457 -0
  100. matrix_synapse-1.142.0rc3/synapse/api/auth/msc3861_delegated.py +617 -0
  101. matrix_synapse-1.142.0rc3/synapse/api/constants.py +362 -0
  102. matrix_synapse-1.142.0rc3/synapse/api/errors.py +907 -0
  103. matrix_synapse-1.142.0rc3/synapse/api/filtering.py +539 -0
  104. matrix_synapse-1.142.0rc3/synapse/api/ratelimiting.py +482 -0
  105. matrix_synapse-1.142.0rc3/synapse/api/room_versions.py +535 -0
  106. matrix_synapse-1.142.0rc3/synapse/api/urls.py +119 -0
  107. matrix_synapse-1.142.0rc3/synapse/app/_base.py +866 -0
  108. matrix_synapse-1.142.0rc3/synapse/app/admin_cmd.py +388 -0
  109. matrix_synapse-1.142.0rc3/synapse/app/appservice.py +30 -0
  110. matrix_synapse-1.142.0rc3/synapse/app/client_reader.py +30 -0
  111. matrix_synapse-1.142.0rc3/synapse/app/complement_fork_starter.py +206 -0
  112. matrix_synapse-1.142.0rc3/synapse/app/event_creator.py +29 -0
  113. matrix_synapse-1.142.0rc3/synapse/app/federation_reader.py +30 -0
  114. matrix_synapse-1.142.0rc3/synapse/app/federation_sender.py +30 -0
  115. matrix_synapse-1.142.0rc3/synapse/app/frontend_proxy.py +30 -0
  116. matrix_synapse-1.142.0rc3/synapse/app/generic_worker.py +475 -0
  117. matrix_synapse-1.142.0rc3/synapse/app/homeserver.py +504 -0
  118. matrix_synapse-1.142.0rc3/synapse/app/media_repository.py +30 -0
  119. matrix_synapse-1.142.0rc3/synapse/app/phone_stats_home.py +296 -0
  120. matrix_synapse-1.142.0rc3/synapse/app/pusher.py +30 -0
  121. matrix_synapse-1.142.0rc3/synapse/app/synchrotron.py +30 -0
  122. matrix_synapse-1.142.0rc3/synapse/app/user_dir.py +31 -0
  123. matrix_synapse-1.142.0rc3/synapse/appservice/__init__.py +461 -0
  124. matrix_synapse-1.142.0rc3/synapse/appservice/api.py +569 -0
  125. matrix_synapse-1.142.0rc3/synapse/appservice/scheduler.py +567 -0
  126. matrix_synapse-1.142.0rc3/synapse/config/__main__.py +62 -0
  127. matrix_synapse-1.142.0rc3/synapse/config/_base.py +1108 -0
  128. matrix_synapse-1.142.0rc3/synapse/config/_base.pyi +217 -0
  129. matrix_synapse-1.142.0rc3/synapse/config/_util.py +99 -0
  130. matrix_synapse-1.142.0rc3/synapse/config/api.py +141 -0
  131. matrix_synapse-1.142.0rc3/synapse/config/appservice.py +210 -0
  132. matrix_synapse-1.142.0rc3/synapse/config/auth.py +80 -0
  133. matrix_synapse-1.142.0rc3/synapse/config/auto_accept_invites.py +43 -0
  134. matrix_synapse-1.142.0rc3/synapse/config/cache.py +231 -0
  135. matrix_synapse-1.142.0rc3/synapse/config/captcha.py +90 -0
  136. matrix_synapse-1.142.0rc3/synapse/config/cas.py +116 -0
  137. matrix_synapse-1.142.0rc3/synapse/config/database.py +184 -0
  138. matrix_synapse-1.142.0rc3/synapse/config/emailconfig.py +367 -0
  139. matrix_synapse-1.142.0rc3/synapse/config/experimental.py +595 -0
  140. matrix_synapse-1.142.0rc3/synapse/config/federation.py +114 -0
  141. matrix_synapse-1.142.0rc3/synapse/config/homeserver.py +141 -0
  142. matrix_synapse-1.142.0rc3/synapse/config/jwt.py +55 -0
  143. matrix_synapse-1.142.0rc3/synapse/config/key.py +447 -0
  144. matrix_synapse-1.142.0rc3/synapse/config/logger.py +390 -0
  145. matrix_synapse-1.142.0rc3/synapse/config/mas.py +191 -0
  146. matrix_synapse-1.142.0rc3/synapse/config/matrixrtc.py +66 -0
  147. matrix_synapse-1.142.0rc3/synapse/config/modules.py +40 -0
  148. matrix_synapse-1.142.0rc3/synapse/config/oembed.py +185 -0
  149. matrix_synapse-1.142.0rc3/synapse/config/oidc.py +509 -0
  150. matrix_synapse-1.142.0rc3/synapse/config/password_auth_providers.py +82 -0
  151. matrix_synapse-1.142.0rc3/synapse/config/ratelimiting.py +254 -0
  152. matrix_synapse-1.142.0rc3/synapse/config/redis.py +74 -0
  153. matrix_synapse-1.142.0rc3/synapse/config/registration.py +296 -0
  154. matrix_synapse-1.142.0rc3/synapse/config/repository.py +311 -0
  155. matrix_synapse-1.142.0rc3/synapse/config/retention.py +162 -0
  156. matrix_synapse-1.142.0rc3/synapse/config/room.py +88 -0
  157. matrix_synapse-1.142.0rc3/synapse/config/room_directory.py +165 -0
  158. matrix_synapse-1.142.0rc3/synapse/config/saml2.py +251 -0
  159. matrix_synapse-1.142.0rc3/synapse/config/server.py +1170 -0
  160. matrix_synapse-1.142.0rc3/synapse/config/spam_checker.py +66 -0
  161. matrix_synapse-1.142.0rc3/synapse/config/sso.py +121 -0
  162. matrix_synapse-1.142.0rc3/synapse/config/tls.py +192 -0
  163. matrix_synapse-1.142.0rc3/synapse/config/tracer.py +71 -0
  164. matrix_synapse-1.142.0rc3/synapse/config/user_directory.py +47 -0
  165. matrix_synapse-1.142.0rc3/synapse/config/user_types.py +44 -0
  166. matrix_synapse-1.142.0rc3/synapse/config/voip.py +59 -0
  167. matrix_synapse-1.142.0rc3/synapse/config/workers.py +642 -0
  168. matrix_synapse-1.142.0rc3/synapse/crypto/event_signing.py +194 -0
  169. matrix_synapse-1.142.0rc3/synapse/crypto/keyring.py +931 -0
  170. matrix_synapse-1.142.0rc3/synapse/event_auth.py +1266 -0
  171. matrix_synapse-1.142.0rc3/synapse/events/__init__.py +668 -0
  172. matrix_synapse-1.142.0rc3/synapse/events/auto_accept_invites.py +216 -0
  173. matrix_synapse-1.142.0rc3/synapse/events/builder.py +387 -0
  174. matrix_synapse-1.142.0rc3/synapse/events/presence_router.py +245 -0
  175. matrix_synapse-1.142.0rc3/synapse/events/snapshot.py +559 -0
  176. matrix_synapse-1.142.0rc3/synapse/events/utils.py +928 -0
  177. matrix_synapse-1.142.0rc3/synapse/events/validator.py +305 -0
  178. matrix_synapse-1.142.0rc3/synapse/federation/__init__.py +22 -0
  179. matrix_synapse-1.142.0rc3/synapse/federation/federation_base.py +383 -0
  180. matrix_synapse-1.142.0rc3/synapse/federation/federation_client.py +2134 -0
  181. matrix_synapse-1.142.0rc3/synapse/federation/federation_server.py +1544 -0
  182. matrix_synapse-1.142.0rc3/synapse/federation/persistence.py +71 -0
  183. matrix_synapse-1.142.0rc3/synapse/federation/send_queue.py +532 -0
  184. matrix_synapse-1.142.0rc3/synapse/federation/sender/__init__.py +1165 -0
  185. matrix_synapse-1.142.0rc3/synapse/federation/sender/per_destination_queue.py +884 -0
  186. matrix_synapse-1.142.0rc3/synapse/federation/sender/transaction_manager.py +210 -0
  187. matrix_synapse-1.142.0rc3/synapse/federation/transport/client.py +1201 -0
  188. matrix_synapse-1.142.0rc3/synapse/federation/transport/server/__init__.py +334 -0
  189. matrix_synapse-1.142.0rc3/synapse/federation/transport/server/_base.py +429 -0
  190. matrix_synapse-1.142.0rc3/synapse/federation/transport/server/federation.py +912 -0
  191. matrix_synapse-1.142.0rc3/synapse/federation/units.py +133 -0
  192. matrix_synapse-1.142.0rc3/synapse/handlers/account.py +162 -0
  193. matrix_synapse-1.142.0rc3/synapse/handlers/account_data.py +362 -0
  194. matrix_synapse-1.142.0rc3/synapse/handlers/account_validity.py +361 -0
  195. matrix_synapse-1.142.0rc3/synapse/handlers/admin.py +618 -0
  196. matrix_synapse-1.142.0rc3/synapse/handlers/appservice.py +991 -0
  197. matrix_synapse-1.142.0rc3/synapse/handlers/auth.py +2494 -0
  198. matrix_synapse-1.142.0rc3/synapse/handlers/cas.py +413 -0
  199. matrix_synapse-1.142.0rc3/synapse/handlers/deactivate_account.py +363 -0
  200. matrix_synapse-1.142.0rc3/synapse/handlers/delayed_events.py +635 -0
  201. matrix_synapse-1.142.0rc3/synapse/handlers/device.py +1873 -0
  202. matrix_synapse-1.142.0rc3/synapse/handlers/devicemessage.py +399 -0
  203. matrix_synapse-1.142.0rc3/synapse/handlers/directory.py +554 -0
  204. matrix_synapse-1.142.0rc3/synapse/handlers/e2e_keys.py +1834 -0
  205. matrix_synapse-1.142.0rc3/synapse/handlers/e2e_room_keys.py +455 -0
  206. matrix_synapse-1.142.0rc3/synapse/handlers/event_auth.py +390 -0
  207. matrix_synapse-1.142.0rc3/synapse/handlers/events.py +201 -0
  208. matrix_synapse-1.142.0rc3/synapse/handlers/federation.py +2043 -0
  209. matrix_synapse-1.142.0rc3/synapse/handlers/federation_event.py +2420 -0
  210. matrix_synapse-1.142.0rc3/synapse/handlers/identity.py +812 -0
  211. matrix_synapse-1.142.0rc3/synapse/handlers/initial_sync.py +528 -0
  212. matrix_synapse-1.142.0rc3/synapse/handlers/jwt.py +120 -0
  213. matrix_synapse-1.142.0rc3/synapse/handlers/message.py +2347 -0
  214. matrix_synapse-1.142.0rc3/synapse/handlers/oidc.py +1803 -0
  215. matrix_synapse-1.142.0rc3/synapse/handlers/pagination.py +768 -0
  216. matrix_synapse-1.142.0rc3/synapse/handlers/presence.py +2638 -0
  217. matrix_synapse-1.142.0rc3/synapse/handlers/profile.py +655 -0
  218. matrix_synapse-1.142.0rc3/synapse/handlers/push_rules.py +164 -0
  219. matrix_synapse-1.142.0rc3/synapse/handlers/read_marker.py +79 -0
  220. matrix_synapse-1.142.0rc3/synapse/handlers/receipts.py +351 -0
  221. matrix_synapse-1.142.0rc3/synapse/handlers/register.py +1060 -0
  222. matrix_synapse-1.142.0rc3/synapse/handlers/relations.py +624 -0
  223. matrix_synapse-1.142.0rc3/synapse/handlers/reports.py +98 -0
  224. matrix_synapse-1.142.0rc3/synapse/handlers/room.py +2447 -0
  225. matrix_synapse-1.142.0rc3/synapse/handlers/room_list.py +632 -0
  226. matrix_synapse-1.142.0rc3/synapse/handlers/room_member.py +2365 -0
  227. matrix_synapse-1.142.0rc3/synapse/handlers/room_member_worker.py +146 -0
  228. matrix_synapse-1.142.0rc3/synapse/handlers/room_policy.py +186 -0
  229. matrix_synapse-1.142.0rc3/synapse/handlers/room_summary.py +1057 -0
  230. matrix_synapse-1.142.0rc3/synapse/handlers/saml.py +524 -0
  231. matrix_synapse-1.142.0rc3/synapse/handlers/search.py +723 -0
  232. matrix_synapse-1.142.0rc3/synapse/handlers/send_email.py +209 -0
  233. matrix_synapse-1.142.0rc3/synapse/handlers/set_password.py +71 -0
  234. matrix_synapse-1.142.0rc3/synapse/handlers/sliding_sync/__init__.py +1701 -0
  235. matrix_synapse-1.142.0rc3/synapse/handlers/sliding_sync/extensions.py +970 -0
  236. matrix_synapse-1.142.0rc3/synapse/handlers/sliding_sync/room_lists.py +2266 -0
  237. matrix_synapse-1.142.0rc3/synapse/handlers/sliding_sync/store.py +128 -0
  238. matrix_synapse-1.142.0rc3/synapse/handlers/sso.py +1292 -0
  239. matrix_synapse-1.142.0rc3/synapse/handlers/stats.py +322 -0
  240. matrix_synapse-1.142.0rc3/synapse/handlers/sync.py +3109 -0
  241. matrix_synapse-1.142.0rc3/synapse/handlers/thread_subscriptions.py +190 -0
  242. matrix_synapse-1.142.0rc3/synapse/handlers/typing.py +606 -0
  243. matrix_synapse-1.142.0rc3/synapse/handlers/ui_auth/checkers.py +332 -0
  244. matrix_synapse-1.142.0rc3/synapse/handlers/user_directory.py +783 -0
  245. matrix_synapse-1.142.0rc3/synapse/handlers/worker_lock.py +365 -0
  246. matrix_synapse-1.142.0rc3/synapse/http/additional_resource.py +62 -0
  247. matrix_synapse-1.142.0rc3/synapse/http/client.py +1360 -0
  248. matrix_synapse-1.142.0rc3/synapse/http/connectproxyclient.py +309 -0
  249. matrix_synapse-1.142.0rc3/synapse/http/federation/matrix_federation_agent.py +490 -0
  250. matrix_synapse-1.142.0rc3/synapse/http/federation/srv_resolver.py +196 -0
  251. matrix_synapse-1.142.0rc3/synapse/http/federation/well_known_resolver.py +367 -0
  252. matrix_synapse-1.142.0rc3/synapse/http/matrixfederationclient.py +1875 -0
  253. matrix_synapse-1.142.0rc3/synapse/http/proxy.py +290 -0
  254. matrix_synapse-1.142.0rc3/synapse/http/proxyagent.py +497 -0
  255. matrix_synapse-1.142.0rc3/synapse/http/replicationagent.py +203 -0
  256. matrix_synapse-1.142.0rc3/synapse/http/request_metrics.py +309 -0
  257. matrix_synapse-1.142.0rc3/synapse/http/server.py +1114 -0
  258. matrix_synapse-1.142.0rc3/synapse/http/servlet.py +1019 -0
  259. matrix_synapse-1.142.0rc3/synapse/http/site.py +825 -0
  260. matrix_synapse-1.142.0rc3/synapse/logging/_remote.py +261 -0
  261. matrix_synapse-1.142.0rc3/synapse/logging/_terse_json.py +95 -0
  262. matrix_synapse-1.142.0rc3/synapse/logging/context.py +1211 -0
  263. matrix_synapse-1.142.0rc3/synapse/logging/formatter.py +63 -0
  264. matrix_synapse-1.142.0rc3/synapse/logging/handlers.py +99 -0
  265. matrix_synapse-1.142.0rc3/synapse/logging/loggers.py +25 -0
  266. matrix_synapse-1.142.0rc3/synapse/logging/opentracing.py +1132 -0
  267. matrix_synapse-1.142.0rc3/synapse/logging/scopecontextmanager.py +161 -0
  268. matrix_synapse-1.142.0rc3/synapse/media/_base.py +827 -0
  269. matrix_synapse-1.142.0rc3/synapse/media/filepath.py +417 -0
  270. matrix_synapse-1.142.0rc3/synapse/media/media_repository.py +1580 -0
  271. matrix_synapse-1.142.0rc3/synapse/media/media_storage.py +704 -0
  272. matrix_synapse-1.142.0rc3/synapse/media/oembed.py +277 -0
  273. matrix_synapse-1.142.0rc3/synapse/media/preview_html.py +559 -0
  274. matrix_synapse-1.142.0rc3/synapse/media/storage_provider.py +195 -0
  275. matrix_synapse-1.142.0rc3/synapse/media/thumbnailer.py +833 -0
  276. matrix_synapse-1.142.0rc3/synapse/media/url_previewer.py +875 -0
  277. matrix_synapse-1.142.0rc3/synapse/metrics/__init__.py +754 -0
  278. matrix_synapse-1.142.0rc3/synapse/metrics/_gc.py +219 -0
  279. matrix_synapse-1.142.0rc3/synapse/metrics/_reactor_metrics.py +171 -0
  280. matrix_synapse-1.142.0rc3/synapse/metrics/background_process_metrics.py +556 -0
  281. matrix_synapse-1.142.0rc3/synapse/metrics/common_usage_metrics.py +94 -0
  282. matrix_synapse-1.142.0rc3/synapse/metrics/jemalloc.py +248 -0
  283. matrix_synapse-1.142.0rc3/synapse/module_api/__init__.py +2154 -0
  284. matrix_synapse-1.142.0rc3/synapse/module_api/callbacks/__init__.py +50 -0
  285. matrix_synapse-1.142.0rc3/synapse/module_api/callbacks/account_validity_callbacks.py +106 -0
  286. matrix_synapse-1.142.0rc3/synapse/module_api/callbacks/media_repository_callbacks.py +160 -0
  287. matrix_synapse-1.142.0rc3/synapse/module_api/callbacks/ratelimit_callbacks.py +79 -0
  288. matrix_synapse-1.142.0rc3/synapse/module_api/callbacks/spamchecker_callbacks.py +1113 -0
  289. matrix_synapse-1.142.0rc3/synapse/module_api/callbacks/third_party_event_rules_callbacks.py +599 -0
  290. matrix_synapse-1.142.0rc3/synapse/notifier.py +972 -0
  291. matrix_synapse-1.142.0rc3/synapse/push/__init__.py +212 -0
  292. matrix_synapse-1.142.0rc3/synapse/push/bulk_push_rule_evaluator.py +637 -0
  293. matrix_synapse-1.142.0rc3/synapse/push/clientformat.py +126 -0
  294. matrix_synapse-1.142.0rc3/synapse/push/emailpusher.py +333 -0
  295. matrix_synapse-1.142.0rc3/synapse/push/httppusher.py +564 -0
  296. matrix_synapse-1.142.0rc3/synapse/push/mailer.py +1012 -0
  297. matrix_synapse-1.142.0rc3/synapse/push/presentable_names.py +216 -0
  298. matrix_synapse-1.142.0rc3/synapse/push/push_tools.py +114 -0
  299. matrix_synapse-1.142.0rc3/synapse/push/push_types.py +141 -0
  300. matrix_synapse-1.142.0rc3/synapse/push/pusher.py +87 -0
  301. matrix_synapse-1.142.0rc3/synapse/push/pusherpool.py +501 -0
  302. matrix_synapse-1.142.0rc3/synapse/push/rulekinds.py +33 -0
  303. matrix_synapse-1.142.0rc3/synapse/replication/http/__init__.py +68 -0
  304. matrix_synapse-1.142.0rc3/synapse/replication/http/_base.py +468 -0
  305. matrix_synapse-1.142.0rc3/synapse/replication/http/account_data.py +297 -0
  306. matrix_synapse-1.142.0rc3/synapse/replication/http/deactivate_account.py +81 -0
  307. matrix_synapse-1.142.0rc3/synapse/replication/http/delayed_events.py +62 -0
  308. matrix_synapse-1.142.0rc3/synapse/replication/http/devices.py +254 -0
  309. matrix_synapse-1.142.0rc3/synapse/replication/http/federation.py +334 -0
  310. matrix_synapse-1.142.0rc3/synapse/replication/http/login.py +106 -0
  311. matrix_synapse-1.142.0rc3/synapse/replication/http/membership.py +364 -0
  312. matrix_synapse-1.142.0rc3/synapse/replication/http/presence.py +133 -0
  313. matrix_synapse-1.142.0rc3/synapse/replication/http/push.py +156 -0
  314. matrix_synapse-1.142.0rc3/synapse/replication/http/register.py +172 -0
  315. matrix_synapse-1.142.0rc3/synapse/replication/http/send_events.py +182 -0
  316. matrix_synapse-1.142.0rc3/synapse/replication/http/state.py +82 -0
  317. matrix_synapse-1.142.0rc3/synapse/replication/http/streams.py +101 -0
  318. matrix_synapse-1.142.0rc3/synapse/replication/tcp/client.py +552 -0
  319. matrix_synapse-1.142.0rc3/synapse/replication/tcp/commands.py +569 -0
  320. matrix_synapse-1.142.0rc3/synapse/replication/tcp/external_cache.py +156 -0
  321. matrix_synapse-1.142.0rc3/synapse/replication/tcp/handler.py +942 -0
  322. matrix_synapse-1.142.0rc3/synapse/replication/tcp/protocol.py +608 -0
  323. matrix_synapse-1.142.0rc3/synapse/replication/tcp/redis.py +509 -0
  324. matrix_synapse-1.142.0rc3/synapse/replication/tcp/resource.py +348 -0
  325. matrix_synapse-1.142.0rc3/synapse/replication/tcp/streams/__init__.py +96 -0
  326. matrix_synapse-1.142.0rc3/synapse/replication/tcp/streams/_base.py +766 -0
  327. matrix_synapse-1.142.0rc3/synapse/replication/tcp/streams/events.py +287 -0
  328. matrix_synapse-1.142.0rc3/synapse/replication/tcp/streams/federation.py +92 -0
  329. matrix_synapse-1.142.0rc3/synapse/res/providers.json +29 -0
  330. matrix_synapse-1.142.0rc3/synapse/res/templates/already_in_use.html +12 -0
  331. matrix_synapse-1.142.0rc3/synapse/res/templates/already_in_use.txt +10 -0
  332. matrix_synapse-1.142.0rc3/synapse/rest/__init__.py +197 -0
  333. matrix_synapse-1.142.0rc3/synapse/rest/admin/__init__.py +390 -0
  334. matrix_synapse-1.142.0rc3/synapse/rest/admin/background_updates.py +171 -0
  335. matrix_synapse-1.142.0rc3/synapse/rest/admin/devices.py +221 -0
  336. matrix_synapse-1.142.0rc3/synapse/rest/admin/event_reports.py +173 -0
  337. matrix_synapse-1.142.0rc3/synapse/rest/admin/events.py +69 -0
  338. matrix_synapse-1.142.0rc3/synapse/rest/admin/experimental_features.py +137 -0
  339. matrix_synapse-1.142.0rc3/synapse/rest/admin/federation.py +243 -0
  340. matrix_synapse-1.142.0rc3/synapse/rest/admin/media.py +540 -0
  341. matrix_synapse-1.142.0rc3/synapse/rest/admin/registration_tokens.py +358 -0
  342. matrix_synapse-1.142.0rc3/synapse/rest/admin/rooms.py +1061 -0
  343. matrix_synapse-1.142.0rc3/synapse/rest/admin/scheduled_tasks.py +70 -0
  344. matrix_synapse-1.142.0rc3/synapse/rest/admin/server_notice_servlet.py +132 -0
  345. matrix_synapse-1.142.0rc3/synapse/rest/admin/statistics.py +132 -0
  346. matrix_synapse-1.142.0rc3/synapse/rest/admin/username_available.py +58 -0
  347. matrix_synapse-1.142.0rc3/synapse/rest/admin/users.py +1608 -0
  348. matrix_synapse-1.142.0rc3/synapse/rest/client/_base.py +113 -0
  349. matrix_synapse-1.142.0rc3/synapse/rest/client/account.py +930 -0
  350. matrix_synapse-1.142.0rc3/synapse/rest/client/account_data.py +319 -0
  351. matrix_synapse-1.142.0rc3/synapse/rest/client/account_validity.py +103 -0
  352. matrix_synapse-1.142.0rc3/synapse/rest/client/appservice_ping.py +125 -0
  353. matrix_synapse-1.142.0rc3/synapse/rest/client/auth.py +218 -0
  354. matrix_synapse-1.142.0rc3/synapse/rest/client/auth_metadata.py +122 -0
  355. matrix_synapse-1.142.0rc3/synapse/rest/client/capabilities.py +121 -0
  356. matrix_synapse-1.142.0rc3/synapse/rest/client/delayed_events.py +111 -0
  357. matrix_synapse-1.142.0rc3/synapse/rest/client/devices.py +587 -0
  358. matrix_synapse-1.142.0rc3/synapse/rest/client/directory.py +211 -0
  359. matrix_synapse-1.142.0rc3/synapse/rest/client/events.py +116 -0
  360. matrix_synapse-1.142.0rc3/synapse/rest/client/filter.py +112 -0
  361. matrix_synapse-1.142.0rc3/synapse/rest/client/initial_sync.py +65 -0
  362. matrix_synapse-1.142.0rc3/synapse/rest/client/keys.py +678 -0
  363. matrix_synapse-1.142.0rc3/synapse/rest/client/knock.py +104 -0
  364. matrix_synapse-1.142.0rc3/synapse/rest/client/login.py +754 -0
  365. matrix_synapse-1.142.0rc3/synapse/rest/client/login_token_request.py +127 -0
  366. matrix_synapse-1.142.0rc3/synapse/rest/client/logout.py +93 -0
  367. matrix_synapse-1.142.0rc3/synapse/rest/client/matrixrtc.py +52 -0
  368. matrix_synapse-1.142.0rc3/synapse/rest/client/media.py +286 -0
  369. matrix_synapse-1.142.0rc3/synapse/rest/client/mutual_rooms.py +93 -0
  370. matrix_synapse-1.142.0rc3/synapse/rest/client/notifications.py +137 -0
  371. matrix_synapse-1.142.0rc3/synapse/rest/client/openid.py +109 -0
  372. matrix_synapse-1.142.0rc3/synapse/rest/client/password_policy.py +69 -0
  373. matrix_synapse-1.142.0rc3/synapse/rest/client/presence.py +131 -0
  374. matrix_synapse-1.142.0rc3/synapse/rest/client/profile.py +291 -0
  375. matrix_synapse-1.142.0rc3/synapse/rest/client/push_rule.py +331 -0
  376. matrix_synapse-1.142.0rc3/synapse/rest/client/pusher.py +181 -0
  377. matrix_synapse-1.142.0rc3/synapse/rest/client/read_marker.py +104 -0
  378. matrix_synapse-1.142.0rc3/synapse/rest/client/receipts.py +165 -0
  379. matrix_synapse-1.142.0rc3/synapse/rest/client/register.py +1067 -0
  380. matrix_synapse-1.142.0rc3/synapse/rest/client/relations.py +138 -0
  381. matrix_synapse-1.142.0rc3/synapse/rest/client/rendezvous.py +76 -0
  382. matrix_synapse-1.142.0rc3/synapse/rest/client/reporting.py +207 -0
  383. matrix_synapse-1.142.0rc3/synapse/rest/client/room.py +1669 -0
  384. matrix_synapse-1.142.0rc3/synapse/rest/client/room_keys.py +426 -0
  385. matrix_synapse-1.142.0rc3/synapse/rest/client/room_upgrade_rest_servlet.py +112 -0
  386. matrix_synapse-1.142.0rc3/synapse/rest/client/sendtodevice.py +85 -0
  387. matrix_synapse-1.142.0rc3/synapse/rest/client/sync.py +1131 -0
  388. matrix_synapse-1.142.0rc3/synapse/rest/client/tags.py +129 -0
  389. matrix_synapse-1.142.0rc3/synapse/rest/client/thirdparty.py +130 -0
  390. matrix_synapse-1.142.0rc3/synapse/rest/client/thread_subscriptions.py +247 -0
  391. matrix_synapse-1.142.0rc3/synapse/rest/client/transactions.py +149 -0
  392. matrix_synapse-1.142.0rc3/synapse/rest/client/user_directory.py +90 -0
  393. matrix_synapse-1.142.0rc3/synapse/rest/client/versions.py +191 -0
  394. matrix_synapse-1.142.0rc3/synapse/rest/client/voip.py +88 -0
  395. matrix_synapse-1.142.0rc3/synapse/rest/consent/consent_resource.py +210 -0
  396. matrix_synapse-1.142.0rc3/synapse/rest/key/v2/local_key_resource.py +125 -0
  397. matrix_synapse-1.142.0rc3/synapse/rest/key/v2/remote_key_resource.py +302 -0
  398. matrix_synapse-1.142.0rc3/synapse/rest/media/config_resource.py +53 -0
  399. matrix_synapse-1.142.0rc3/synapse/rest/media/download_resource.py +110 -0
  400. matrix_synapse-1.142.0rc3/synapse/rest/media/preview_url_resource.py +77 -0
  401. matrix_synapse-1.142.0rc3/synapse/rest/media/thumbnail_resource.py +142 -0
  402. matrix_synapse-1.142.0rc3/synapse/rest/media/upload_resource.py +187 -0
  403. matrix_synapse-1.142.0rc3/synapse/rest/synapse/client/__init__.py +93 -0
  404. matrix_synapse-1.142.0rc3/synapse/rest/synapse/client/federation_whitelist.py +66 -0
  405. matrix_synapse-1.142.0rc3/synapse/rest/synapse/client/jwks.py +77 -0
  406. matrix_synapse-1.142.0rc3/synapse/rest/synapse/client/new_user_consent.py +115 -0
  407. matrix_synapse-1.142.0rc3/synapse/rest/synapse/client/oidc/backchannel_logout_resource.py +42 -0
  408. matrix_synapse-1.142.0rc3/synapse/rest/synapse/client/oidc/callback_resource.py +48 -0
  409. matrix_synapse-1.142.0rc3/synapse/rest/synapse/client/password_reset.py +129 -0
  410. matrix_synapse-1.142.0rc3/synapse/rest/synapse/client/pick_idp.py +107 -0
  411. matrix_synapse-1.142.0rc3/synapse/rest/synapse/client/pick_username.py +153 -0
  412. matrix_synapse-1.142.0rc3/synapse/rest/synapse/client/rendezvous.py +58 -0
  413. matrix_synapse-1.142.0rc3/synapse/rest/synapse/client/saml2/response_resource.py +52 -0
  414. matrix_synapse-1.142.0rc3/synapse/rest/synapse/client/sso_register.py +56 -0
  415. matrix_synapse-1.142.0rc3/synapse/rest/synapse/client/unsubscribe.py +88 -0
  416. matrix_synapse-1.142.0rc3/synapse/rest/synapse/mas/__init__.py +71 -0
  417. matrix_synapse-1.142.0rc3/synapse/rest/synapse/mas/_base.py +55 -0
  418. matrix_synapse-1.142.0rc3/synapse/rest/synapse/mas/devices.py +239 -0
  419. matrix_synapse-1.142.0rc3/synapse/rest/synapse/mas/users.py +469 -0
  420. matrix_synapse-1.142.0rc3/synapse/rest/well_known.py +148 -0
  421. matrix_synapse-1.142.0rc3/synapse/server.py +1258 -0
  422. matrix_synapse-1.142.0rc3/synapse/server_notices/consent_server_notices.py +136 -0
  423. matrix_synapse-1.142.0rc3/synapse/server_notices/resource_limits_server_notices.py +215 -0
  424. matrix_synapse-1.142.0rc3/synapse/server_notices/server_notices_manager.py +388 -0
  425. matrix_synapse-1.142.0rc3/synapse/state/__init__.py +1022 -0
  426. matrix_synapse-1.142.0rc3/synapse/state/v1.py +370 -0
  427. matrix_synapse-1.142.0rc3/synapse/state/v2.py +985 -0
  428. matrix_synapse-1.142.0rc3/synapse/storage/_base.py +245 -0
  429. matrix_synapse-1.142.0rc3/synapse/storage/admin_client_config.py +26 -0
  430. matrix_synapse-1.142.0rc3/synapse/storage/background_updates.py +1189 -0
  431. matrix_synapse-1.142.0rc3/synapse/storage/controllers/persist_events.py +1239 -0
  432. matrix_synapse-1.142.0rc3/synapse/storage/controllers/purge_events.py +456 -0
  433. matrix_synapse-1.142.0rc3/synapse/storage/controllers/state.py +954 -0
  434. matrix_synapse-1.142.0rc3/synapse/storage/controllers/stats.py +119 -0
  435. matrix_synapse-1.142.0rc3/synapse/storage/database.py +2720 -0
  436. matrix_synapse-1.142.0rc3/synapse/storage/databases/__init__.py +175 -0
  437. matrix_synapse-1.142.0rc3/synapse/storage/databases/main/__init__.py +424 -0
  438. matrix_synapse-1.142.0rc3/synapse/storage/databases/main/account_data.py +1060 -0
  439. matrix_synapse-1.142.0rc3/synapse/storage/databases/main/appservice.py +473 -0
  440. matrix_synapse-1.142.0rc3/synapse/storage/databases/main/cache.py +911 -0
  441. matrix_synapse-1.142.0rc3/synapse/storage/databases/main/censor_events.py +225 -0
  442. matrix_synapse-1.142.0rc3/synapse/storage/databases/main/client_ips.py +817 -0
  443. matrix_synapse-1.142.0rc3/synapse/storage/databases/main/delayed_events.py +560 -0
  444. matrix_synapse-1.142.0rc3/synapse/storage/databases/main/deviceinbox.py +1272 -0
  445. matrix_synapse-1.142.0rc3/synapse/storage/databases/main/devices.py +2581 -0
  446. matrix_synapse-1.142.0rc3/synapse/storage/databases/main/directory.py +212 -0
  447. matrix_synapse-1.142.0rc3/synapse/storage/databases/main/e2e_room_keys.py +690 -0
  448. matrix_synapse-1.142.0rc3/synapse/storage/databases/main/end_to_end_keys.py +1896 -0
  449. matrix_synapse-1.142.0rc3/synapse/storage/databases/main/event_federation.py +2509 -0
  450. matrix_synapse-1.142.0rc3/synapse/storage/databases/main/event_push_actions.py +1937 -0
  451. matrix_synapse-1.142.0rc3/synapse/storage/databases/main/events.py +3746 -0
  452. matrix_synapse-1.142.0rc3/synapse/storage/databases/main/events_bg_updates.py +2910 -0
  453. matrix_synapse-1.142.0rc3/synapse/storage/databases/main/events_forward_extremities.py +126 -0
  454. matrix_synapse-1.142.0rc3/synapse/storage/databases/main/events_worker.py +2784 -0
  455. matrix_synapse-1.142.0rc3/synapse/storage/databases/main/experimental_features.py +130 -0
  456. matrix_synapse-1.142.0rc3/synapse/storage/databases/main/filtering.py +231 -0
  457. matrix_synapse-1.142.0rc3/synapse/storage/databases/main/keys.py +291 -0
  458. matrix_synapse-1.142.0rc3/synapse/storage/databases/main/lock.py +553 -0
  459. matrix_synapse-1.142.0rc3/synapse/storage/databases/main/media_repository.py +1070 -0
  460. matrix_synapse-1.142.0rc3/synapse/storage/databases/main/metrics.py +460 -0
  461. matrix_synapse-1.142.0rc3/synapse/storage/databases/main/monthly_active_users.py +443 -0
  462. matrix_synapse-1.142.0rc3/synapse/storage/databases/main/presence.py +511 -0
  463. matrix_synapse-1.142.0rc3/synapse/storage/databases/main/profile.py +541 -0
  464. matrix_synapse-1.142.0rc3/synapse/storage/databases/main/purge_events.py +511 -0
  465. matrix_synapse-1.142.0rc3/synapse/storage/databases/main/push_rule.py +972 -0
  466. matrix_synapse-1.142.0rc3/synapse/storage/databases/main/pusher.py +794 -0
  467. matrix_synapse-1.142.0rc3/synapse/storage/databases/main/receipts.py +1342 -0
  468. matrix_synapse-1.142.0rc3/synapse/storage/databases/main/registration.py +3076 -0
  469. matrix_synapse-1.142.0rc3/synapse/storage/databases/main/relations.py +1118 -0
  470. matrix_synapse-1.142.0rc3/synapse/storage/databases/main/room.py +2781 -0
  471. matrix_synapse-1.142.0rc3/synapse/storage/databases/main/roommember.py +2112 -0
  472. matrix_synapse-1.142.0rc3/synapse/storage/databases/main/search.py +941 -0
  473. matrix_synapse-1.142.0rc3/synapse/storage/databases/main/session.py +151 -0
  474. matrix_synapse-1.142.0rc3/synapse/storage/databases/main/signatures.py +94 -0
  475. matrix_synapse-1.142.0rc3/synapse/storage/databases/main/sliding_sync.py +603 -0
  476. matrix_synapse-1.142.0rc3/synapse/storage/databases/main/state.py +1006 -0
  477. matrix_synapse-1.142.0rc3/synapse/storage/databases/main/state_deltas.py +329 -0
  478. matrix_synapse-1.142.0rc3/synapse/storage/databases/main/stats.py +791 -0
  479. matrix_synapse-1.142.0rc3/synapse/storage/databases/main/stream.py +2580 -0
  480. matrix_synapse-1.142.0rc3/synapse/storage/databases/main/tags.py +360 -0
  481. matrix_synapse-1.142.0rc3/synapse/storage/databases/main/task_scheduler.py +225 -0
  482. matrix_synapse-1.142.0rc3/synapse/storage/databases/main/thread_subscriptions.py +591 -0
  483. matrix_synapse-1.142.0rc3/synapse/storage/databases/main/transactions.py +681 -0
  484. matrix_synapse-1.142.0rc3/synapse/storage/databases/main/ui_auth.py +420 -0
  485. matrix_synapse-1.142.0rc3/synapse/storage/databases/main/user_directory.py +1331 -0
  486. matrix_synapse-1.142.0rc3/synapse/storage/databases/main/user_erasure_store.py +117 -0
  487. matrix_synapse-1.142.0rc3/synapse/storage/databases/state/bg_updates.py +499 -0
  488. matrix_synapse-1.142.0rc3/synapse/storage/databases/state/deletion.py +558 -0
  489. matrix_synapse-1.142.0rc3/synapse/storage/databases/state/store.py +949 -0
  490. matrix_synapse-1.142.0rc3/synapse/storage/engines/_base.py +154 -0
  491. matrix_synapse-1.142.0rc3/synapse/storage/engines/postgres.py +261 -0
  492. matrix_synapse-1.142.0rc3/synapse/storage/engines/sqlite.py +199 -0
  493. matrix_synapse-1.142.0rc3/synapse/storage/invite_rule.py +112 -0
  494. matrix_synapse-1.142.0rc3/synapse/storage/prepare_database.py +731 -0
  495. matrix_synapse-1.142.0rc3/synapse/storage/roommember.py +89 -0
  496. matrix_synapse-1.142.0rc3/synapse/storage/schema/__init__.py +182 -0
  497. matrix_synapse-1.142.0rc3/synapse/storage/schema/main/delta/25/fts.py +81 -0
  498. matrix_synapse-1.142.0rc3/synapse/storage/schema/main/delta/27/ts.py +61 -0
  499. matrix_synapse-1.142.0rc3/synapse/storage/schema/main/delta/30/as_users.py +82 -0
  500. matrix_synapse-1.142.0rc3/synapse/storage/schema/main/delta/31/search_update.py +65 -0
  501. matrix_synapse-1.142.0rc3/synapse/storage/schema/main/delta/33/event_fields.py +61 -0
  502. matrix_synapse-1.142.0rc3/synapse/storage/schema/main/delta/42/current_state_delta.sql +48 -0
  503. matrix_synapse-1.142.0rc3/synapse/storage/schema/main/delta/56/unique_user_filter_index.py +46 -0
  504. matrix_synapse-1.142.0rc3/synapse/storage/schema/main/delta/61/03recreate_min_depth.py +74 -0
  505. matrix_synapse-1.142.0rc3/synapse/storage/schema/main/delta/68/05partial_state_rooms_triggers.py +80 -0
  506. matrix_synapse-1.142.0rc3/synapse/storage/schema/main/delta/72/07force_update_current_state_events_membership.py +67 -0
  507. matrix_synapse-1.142.0rc3/synapse/storage/schema/main/delta/74/04_membership_tables_event_stream_ordering_triggers.py +87 -0
  508. matrix_synapse-1.142.0rc3/synapse/storage/schema/main/delta/78/03event_extremities_constraints.py +65 -0
  509. matrix_synapse-1.142.0rc3/synapse/storage/schema/main/delta/84/04_access_token_index.sql +15 -0
  510. matrix_synapse-1.142.0rc3/synapse/storage/schema/main/delta/85/01_add_suspended.sql +14 -0
  511. matrix_synapse-1.142.0rc3/synapse/storage/schema/main/delta/85/02_add_instance_names.sql +27 -0
  512. matrix_synapse-1.142.0rc3/synapse/storage/schema/main/delta/85/03_new_sequences.sql.postgres +54 -0
  513. matrix_synapse-1.142.0rc3/synapse/storage/schema/main/delta/85/04_cleanup_device_federation_outbox.sql +15 -0
  514. matrix_synapse-1.142.0rc3/synapse/storage/schema/main/delta/85/05_add_instance_names_converted_pos.sql +16 -0
  515. matrix_synapse-1.142.0rc3/synapse/storage/schema/main/delta/85/06_add_room_reports.sql +20 -0
  516. matrix_synapse-1.142.0rc3/synapse/storage/schema/main/delta/86/01_authenticate_media.sql +15 -0
  517. matrix_synapse-1.142.0rc3/synapse/storage/schema/main/delta/86/02_receipts_event_id_index.sql +15 -0
  518. matrix_synapse-1.142.0rc3/synapse/storage/schema/main/delta/87/01_sliding_sync_memberships.sql +169 -0
  519. matrix_synapse-1.142.0rc3/synapse/storage/schema/main/delta/87/02_per_connection_state.sql +81 -0
  520. matrix_synapse-1.142.0rc3/synapse/storage/schema/main/delta/87/03_current_state_index.sql +19 -0
  521. matrix_synapse-1.142.0rc3/synapse/storage/schema/main/delta/88/01_add_delayed_events.sql +43 -0
  522. matrix_synapse-1.142.0rc3/synapse/storage/schema/main/delta/88/01_custom_profile_fields.sql +15 -0
  523. matrix_synapse-1.142.0rc3/synapse/storage/schema/main/delta/88/02_fix_sliding_sync_membership_snapshots_forgotten_column.sql +21 -0
  524. matrix_synapse-1.142.0rc3/synapse/storage/schema/main/delta/88/03_add_otk_ts_added_index.sql +18 -0
  525. matrix_synapse-1.142.0rc3/synapse/storage/schema/main/delta/88/04_current_state_delta_index.sql +18 -0
  526. matrix_synapse-1.142.0rc3/synapse/storage/schema/main/delta/88/05_drop_old_otks.sql.postgres +19 -0
  527. matrix_synapse-1.142.0rc3/synapse/storage/schema/main/delta/88/05_drop_old_otks.sql.sqlite +19 -0
  528. matrix_synapse-1.142.0rc3/synapse/storage/schema/main/delta/88/05_sliding_sync_room_config_index.sql +20 -0
  529. matrix_synapse-1.142.0rc3/synapse/storage/schema/main/delta/88/06_events_received_ts_index.sql +17 -0
  530. matrix_synapse-1.142.0rc3/synapse/storage/schema/main/delta/89/01_sliding_sync_membership_snapshot_index.sql +15 -0
  531. matrix_synapse-1.142.0rc3/synapse/storage/schema/main/delta/90/01_add_column_participant_room_memberships_table.sql +16 -0
  532. matrix_synapse-1.142.0rc3/synapse/storage/schema/main/delta/91/01_media_hash.sql +28 -0
  533. matrix_synapse-1.142.0rc3/synapse/storage/schema/main/delta/92/01_remove_trigger.sql.postgres +16 -0
  534. matrix_synapse-1.142.0rc3/synapse/storage/schema/main/delta/92/01_remove_trigger.sql.sqlite +16 -0
  535. matrix_synapse-1.142.0rc3/synapse/storage/schema/main/delta/92/02_remove_populate_participant_bg_update.sql +17 -0
  536. matrix_synapse-1.142.0rc3/synapse/storage/schema/main/delta/92/04_ss_membership_snapshot_idx.sql +16 -0
  537. matrix_synapse-1.142.0rc3/synapse/storage/schema/main/delta/92/04_thread_subscriptions.sql +59 -0
  538. matrix_synapse-1.142.0rc3/synapse/storage/schema/main/delta/92/04_thread_subscriptions_seq.sql.postgres +19 -0
  539. matrix_synapse-1.142.0rc3/synapse/storage/schema/main/delta/92/05_fixup_max_depth_cap.sql +17 -0
  540. matrix_synapse-1.142.0rc3/synapse/storage/schema/main/delta/92/05_thread_subscriptions_comments.sql.postgres +18 -0
  541. matrix_synapse-1.142.0rc3/synapse/storage/schema/main/delta/92/06_device_federation_inbox_index.sql +16 -0
  542. matrix_synapse-1.142.0rc3/synapse/storage/schema/main/delta/92/06_threads_last_sent_stream_ordering_comments.sql.postgres +24 -0
  543. matrix_synapse-1.142.0rc3/synapse/storage/schema/main/delta/92/07_add_user_reports.sql +22 -0
  544. matrix_synapse-1.142.0rc3/synapse/storage/schema/main/delta/92/07_event_txn_id_device_id_txn_id2.sql +15 -0
  545. matrix_synapse-1.142.0rc3/synapse/storage/schema/main/delta/92/08_room_ban_redactions.sql +21 -0
  546. matrix_synapse-1.142.0rc3/synapse/storage/schema/main/delta/92/08_thread_subscriptions_seq_fixup.sql.postgres +19 -0
  547. matrix_synapse-1.142.0rc3/synapse/storage/schema/main/delta/92/09_thread_subscriptions_update.sql +20 -0
  548. matrix_synapse-1.142.0rc3/synapse/storage/schema/main/delta/92/09_thread_subscriptions_update.sql.postgres +18 -0
  549. matrix_synapse-1.142.0rc3/synapse/storage/schema/state/delta/89/01_state_groups_deletion.sql +39 -0
  550. matrix_synapse-1.142.0rc3/synapse/storage/schema/state/delta/90/02_delete_unreferenced_state_groups.sql +16 -0
  551. matrix_synapse-1.142.0rc3/synapse/storage/schema/state/delta/90/03_remove_old_deletion_bg_update.sql +15 -0
  552. matrix_synapse-1.142.0rc3/synapse/storage/types.py +185 -0
  553. matrix_synapse-1.142.0rc3/synapse/storage/util/id_generators.py +909 -0
  554. matrix_synapse-1.142.0rc3/synapse/storage/util/partial_state_events_tracker.py +194 -0
  555. matrix_synapse-1.142.0rc3/synapse/storage/util/sequence.py +315 -0
  556. matrix_synapse-1.142.0rc3/synapse/streams/__init__.py +43 -0
  557. matrix_synapse-1.142.0rc3/synapse/streams/config.py +92 -0
  558. matrix_synapse-1.142.0rc3/synapse/streams/events.py +203 -0
  559. matrix_synapse-1.142.0rc3/synapse/synapse_rust/acl.pyi +20 -0
  560. matrix_synapse-1.142.0rc3/synapse/synapse_rust/events.pyi +136 -0
  561. matrix_synapse-1.142.0rc3/synapse/synapse_rust/http_client.pyi +32 -0
  562. matrix_synapse-1.142.0rc3/synapse/synapse_rust/push.pyi +86 -0
  563. matrix_synapse-1.142.0rc3/synapse/synapse_rust/rendezvous.pyi +30 -0
  564. matrix_synapse-1.142.0rc3/synapse/synapse_rust/segmenter.pyi +1 -0
  565. matrix_synapse-1.142.0rc3/synapse/types/__init__.py +1600 -0
  566. matrix_synapse-1.142.0rc3/synapse/types/handlers/__init__.py +93 -0
  567. matrix_synapse-1.142.0rc3/synapse/types/handlers/policy_server.py +16 -0
  568. matrix_synapse-1.142.0rc3/synapse/types/handlers/sliding_sync.py +909 -0
  569. matrix_synapse-1.142.0rc3/synapse/types/rest/__init__.py +25 -0
  570. matrix_synapse-1.142.0rc3/synapse/types/rest/client/__init__.py +415 -0
  571. matrix_synapse-1.142.0rc3/synapse/types/state.py +635 -0
  572. matrix_synapse-1.142.0rc3/synapse/types/storage/__init__.py +66 -0
  573. matrix_synapse-1.142.0rc3/synapse/util/__init__.py +170 -0
  574. matrix_synapse-1.142.0rc3/synapse/util/async_helpers.py +1067 -0
  575. matrix_synapse-1.142.0rc3/synapse/util/batching_queue.py +202 -0
  576. matrix_synapse-1.142.0rc3/synapse/util/caches/__init__.py +300 -0
  577. matrix_synapse-1.142.0rc3/synapse/util/caches/deferred_cache.py +530 -0
  578. matrix_synapse-1.142.0rc3/synapse/util/caches/descriptors.py +694 -0
  579. matrix_synapse-1.142.0rc3/synapse/util/caches/dictionary_cache.py +350 -0
  580. matrix_synapse-1.142.0rc3/synapse/util/caches/expiringcache.py +251 -0
  581. matrix_synapse-1.142.0rc3/synapse/util/caches/lrucache.py +977 -0
  582. matrix_synapse-1.142.0rc3/synapse/util/caches/response_cache.py +323 -0
  583. matrix_synapse-1.142.0rc3/synapse/util/caches/stream_change_cache.py +370 -0
  584. matrix_synapse-1.142.0rc3/synapse/util/caches/ttlcache.py +197 -0
  585. matrix_synapse-1.142.0rc3/synapse/util/check_dependencies.py +335 -0
  586. matrix_synapse-1.142.0rc3/synapse/util/clock.py +500 -0
  587. matrix_synapse-1.142.0rc3/synapse/util/constants.py +22 -0
  588. matrix_synapse-1.142.0rc3/synapse/util/daemonize.py +165 -0
  589. matrix_synapse-1.142.0rc3/synapse/util/distributor.py +159 -0
  590. matrix_synapse-1.142.0rc3/synapse/util/events.py +134 -0
  591. matrix_synapse-1.142.0rc3/synapse/util/gai_resolver.py +180 -0
  592. matrix_synapse-1.142.0rc3/synapse/util/httpresourcetree.py +108 -0
  593. matrix_synapse-1.142.0rc3/synapse/util/iterutils.py +189 -0
  594. matrix_synapse-1.142.0rc3/synapse/util/json.py +56 -0
  595. matrix_synapse-1.142.0rc3/synapse/util/linked_list.py +156 -0
  596. matrix_synapse-1.142.0rc3/synapse/util/macaroons.py +325 -0
  597. matrix_synapse-1.142.0rc3/synapse/util/manhole.py +191 -0
  598. matrix_synapse-1.142.0rc3/synapse/util/metrics.py +340 -0
  599. matrix_synapse-1.142.0rc3/synapse/util/module_loader.py +116 -0
  600. matrix_synapse-1.142.0rc3/synapse/util/msisdn.py +51 -0
  601. matrix_synapse-1.142.0rc3/synapse/util/patch_inline_callbacks.py +250 -0
  602. matrix_synapse-1.142.0rc3/synapse/util/pydantic_models.py +56 -0
  603. matrix_synapse-1.142.0rc3/synapse/util/ratelimitutils.py +420 -0
  604. matrix_synapse-1.142.0rc3/synapse/util/retryutils.py +339 -0
  605. matrix_synapse-1.142.0rc3/synapse/util/rust.py +134 -0
  606. matrix_synapse-1.142.0rc3/synapse/util/sentinel.py +21 -0
  607. matrix_synapse-1.142.0rc3/synapse/util/stringutils.py +293 -0
  608. matrix_synapse-1.142.0rc3/synapse/util/task_scheduler.py +493 -0
  609. matrix_synapse-1.142.0rc3/synapse/util/wheel_timer.py +112 -0
  610. matrix_synapse-1.142.0rc3/synapse/visibility.py +836 -0
  611. matrix_synapse-1.142.0rc3/synmark/__init__.py +47 -0
  612. matrix_synapse-1.142.0rc3/synmark/__main__.py +128 -0
  613. matrix_synapse-1.142.0rc3/synmark/suites/logging.py +154 -0
  614. matrix_synapse-1.142.0rc3/synmark/suites/lrucache.py +48 -0
  615. matrix_synapse-1.142.0rc3/synmark/suites/lrucache_evict.py +49 -0
  616. matrix_synapse-1.142.0rc3/tests/api/test_auth.py +548 -0
  617. matrix_synapse-1.142.0rc3/tests/api/test_errors.py +46 -0
  618. matrix_synapse-1.142.0rc3/tests/api/test_filtering.py +622 -0
  619. matrix_synapse-1.142.0rc3/tests/api/test_ratelimiting.py +507 -0
  620. matrix_synapse-1.142.0rc3/tests/api/test_urls.py +81 -0
  621. matrix_synapse-1.142.0rc3/tests/app/test_homeserver_shutdown.py +206 -0
  622. matrix_synapse-1.142.0rc3/tests/app/test_homeserver_start.py +49 -0
  623. matrix_synapse-1.142.0rc3/tests/app/test_openid_listener.py +139 -0
  624. matrix_synapse-1.142.0rc3/tests/app/test_phone_stats_home.py +248 -0
  625. matrix_synapse-1.142.0rc3/tests/appservice/test_api.py +255 -0
  626. matrix_synapse-1.142.0rc3/tests/appservice/test_appservice.py +259 -0
  627. matrix_synapse-1.142.0rc3/tests/appservice/test_scheduler.py +483 -0
  628. matrix_synapse-1.142.0rc3/tests/config/test_api.py +146 -0
  629. matrix_synapse-1.142.0rc3/tests/config/test_appservice.py +48 -0
  630. matrix_synapse-1.142.0rc3/tests/config/test_cache.py +193 -0
  631. matrix_synapse-1.142.0rc3/tests/config/test_database.py +42 -0
  632. matrix_synapse-1.142.0rc3/tests/config/test_load.py +322 -0
  633. matrix_synapse-1.142.0rc3/tests/config/test_oauth_delegation.py +454 -0
  634. matrix_synapse-1.142.0rc3/tests/config/test_registration_config.py +203 -0
  635. matrix_synapse-1.142.0rc3/tests/config/test_room_directory.py +203 -0
  636. matrix_synapse-1.142.0rc3/tests/config/test_server.py +194 -0
  637. matrix_synapse-1.142.0rc3/tests/config/test_workers.py +332 -0
  638. matrix_synapse-1.142.0rc3/tests/config/utils.py +66 -0
  639. matrix_synapse-1.142.0rc3/tests/crypto/test_event_signing.py +109 -0
  640. matrix_synapse-1.142.0rc3/tests/crypto/test_keyring.py +730 -0
  641. matrix_synapse-1.142.0rc3/tests/events/test_auto_accept_invites.py +827 -0
  642. matrix_synapse-1.142.0rc3/tests/events/test_presence_router.py +540 -0
  643. matrix_synapse-1.142.0rc3/tests/events/test_snapshot.py +121 -0
  644. matrix_synapse-1.142.0rc3/tests/events/test_utils.py +986 -0
  645. matrix_synapse-1.142.0rc3/tests/federation/test_complexity.py +257 -0
  646. matrix_synapse-1.142.0rc3/tests/federation/test_federation_catch_up.py +585 -0
  647. matrix_synapse-1.142.0rc3/tests/federation/test_federation_client.py +316 -0
  648. matrix_synapse-1.142.0rc3/tests/federation/test_federation_devices.py +161 -0
  649. matrix_synapse-1.142.0rc3/tests/federation/test_federation_media.py +295 -0
  650. matrix_synapse-1.142.0rc3/tests/federation/test_federation_out_of_band_membership.py +671 -0
  651. matrix_synapse-1.142.0rc3/tests/federation/test_federation_sender.py +956 -0
  652. matrix_synapse-1.142.0rc3/tests/federation/test_federation_server.py +596 -0
  653. matrix_synapse-1.142.0rc3/tests/federation/transport/server/test__base.py +155 -0
  654. matrix_synapse-1.142.0rc3/tests/federation/transport/test_client.py +158 -0
  655. matrix_synapse-1.142.0rc3/tests/federation/transport/test_knocking.py +323 -0
  656. matrix_synapse-1.142.0rc3/tests/federation/transport/test_server.py +74 -0
  657. matrix_synapse-1.142.0rc3/tests/handlers/test_admin.py +361 -0
  658. matrix_synapse-1.142.0rc3/tests/handlers/test_appservice.py +1337 -0
  659. matrix_synapse-1.142.0rc3/tests/handlers/test_auth.py +249 -0
  660. matrix_synapse-1.142.0rc3/tests/handlers/test_cas.py +239 -0
  661. matrix_synapse-1.142.0rc3/tests/handlers/test_deactivate_account.py +485 -0
  662. matrix_synapse-1.142.0rc3/tests/handlers/test_device.py +639 -0
  663. matrix_synapse-1.142.0rc3/tests/handlers/test_directory.py +613 -0
  664. matrix_synapse-1.142.0rc3/tests/handlers/test_e2e_keys.py +2025 -0
  665. matrix_synapse-1.142.0rc3/tests/handlers/test_e2e_room_keys.py +569 -0
  666. matrix_synapse-1.142.0rc3/tests/handlers/test_federation.py +794 -0
  667. matrix_synapse-1.142.0rc3/tests/handlers/test_federation_event.py +1182 -0
  668. matrix_synapse-1.142.0rc3/tests/handlers/test_message.py +322 -0
  669. matrix_synapse-1.142.0rc3/tests/handlers/test_oauth_delegation.py +1288 -0
  670. matrix_synapse-1.142.0rc3/tests/handlers/test_oidc.py +1688 -0
  671. matrix_synapse-1.142.0rc3/tests/handlers/test_password_providers.py +987 -0
  672. matrix_synapse-1.142.0rc3/tests/handlers/test_presence.py +2144 -0
  673. matrix_synapse-1.142.0rc3/tests/handlers/test_profile.py +401 -0
  674. matrix_synapse-1.142.0rc3/tests/handlers/test_receipts.py +342 -0
  675. matrix_synapse-1.142.0rc3/tests/handlers/test_register.py +880 -0
  676. matrix_synapse-1.142.0rc3/tests/handlers/test_room_list.py +94 -0
  677. matrix_synapse-1.142.0rc3/tests/handlers/test_room_member.py +620 -0
  678. matrix_synapse-1.142.0rc3/tests/handlers/test_room_policy.py +469 -0
  679. matrix_synapse-1.142.0rc3/tests/handlers/test_room_summary.py +1248 -0
  680. matrix_synapse-1.142.0rc3/tests/handlers/test_saml.py +427 -0
  681. matrix_synapse-1.142.0rc3/tests/handlers/test_send_email.py +230 -0
  682. matrix_synapse-1.142.0rc3/tests/handlers/test_sliding_sync.py +4890 -0
  683. matrix_synapse-1.142.0rc3/tests/handlers/test_sso.py +152 -0
  684. matrix_synapse-1.142.0rc3/tests/handlers/test_stats.py +594 -0
  685. matrix_synapse-1.142.0rc3/tests/handlers/test_sync.py +1275 -0
  686. matrix_synapse-1.142.0rc3/tests/handlers/test_typing.py +557 -0
  687. matrix_synapse-1.142.0rc3/tests/handlers/test_user_directory.py +1435 -0
  688. matrix_synapse-1.142.0rc3/tests/handlers/test_worker_lock.py +126 -0
  689. matrix_synapse-1.142.0rc3/tests/http/__init__.py +196 -0
  690. matrix_synapse-1.142.0rc3/tests/http/federation/test_matrix_federation_agent.py +1855 -0
  691. matrix_synapse-1.142.0rc3/tests/http/federation/test_srv_resolver.py +220 -0
  692. matrix_synapse-1.142.0rc3/tests/http/server/_base.py +623 -0
  693. matrix_synapse-1.142.0rc3/tests/http/test_client.py +423 -0
  694. matrix_synapse-1.142.0rc3/tests/http/test_matrixfederationclient.py +1092 -0
  695. matrix_synapse-1.142.0rc3/tests/http/test_proxy.py +75 -0
  696. matrix_synapse-1.142.0rc3/tests/http/test_proxyagent.py +1009 -0
  697. matrix_synapse-1.142.0rc3/tests/http/test_servlet.py +145 -0
  698. matrix_synapse-1.142.0rc3/tests/http/test_simple_client.py +188 -0
  699. matrix_synapse-1.142.0rc3/tests/http/test_site.py +145 -0
  700. matrix_synapse-1.142.0rc3/tests/logging/test_loggers.py +127 -0
  701. matrix_synapse-1.142.0rc3/tests/logging/test_opentracing.py +523 -0
  702. matrix_synapse-1.142.0rc3/tests/logging/test_remote_handler.py +184 -0
  703. matrix_synapse-1.142.0rc3/tests/logging/test_terse_json.py +253 -0
  704. matrix_synapse-1.142.0rc3/tests/media/test_media_retention.py +299 -0
  705. matrix_synapse-1.142.0rc3/tests/media/test_media_storage.py +1401 -0
  706. matrix_synapse-1.142.0rc3/tests/media/test_oembed.py +172 -0
  707. matrix_synapse-1.142.0rc3/tests/media/test_url_previewer.py +120 -0
  708. matrix_synapse-1.142.0rc3/tests/metrics/test_background_process_metrics.py +21 -0
  709. matrix_synapse-1.142.0rc3/tests/metrics/test_metrics.py +407 -0
  710. matrix_synapse-1.142.0rc3/tests/metrics/test_phone_home_stats.py +263 -0
  711. matrix_synapse-1.142.0rc3/tests/module_api/test_account_data_manager.py +171 -0
  712. matrix_synapse-1.142.0rc3/tests/module_api/test_api.py +1035 -0
  713. matrix_synapse-1.142.0rc3/tests/module_api/test_event_unsigned_addition.py +66 -0
  714. matrix_synapse-1.142.0rc3/tests/module_api/test_spamchecker.py +286 -0
  715. matrix_synapse-1.142.0rc3/tests/push/test_bulk_push_rule_evaluator.py +652 -0
  716. matrix_synapse-1.142.0rc3/tests/push/test_email.py +570 -0
  717. matrix_synapse-1.142.0rc3/tests/push/test_http.py +1247 -0
  718. matrix_synapse-1.142.0rc3/tests/push/test_presentable_names.py +238 -0
  719. matrix_synapse-1.142.0rc3/tests/push/test_push_rule_evaluator.py +1069 -0
  720. matrix_synapse-1.142.0rc3/tests/replication/_base.py +619 -0
  721. matrix_synapse-1.142.0rc3/tests/replication/http/test__base.py +112 -0
  722. matrix_synapse-1.142.0rc3/tests/replication/storage/_base.py +85 -0
  723. matrix_synapse-1.142.0rc3/tests/replication/storage/test_events.py +299 -0
  724. matrix_synapse-1.142.0rc3/tests/replication/tcp/streams/test_account_data.py +133 -0
  725. matrix_synapse-1.142.0rc3/tests/replication/tcp/streams/test_events.py +565 -0
  726. matrix_synapse-1.142.0rc3/tests/replication/tcp/streams/test_federation.py +117 -0
  727. matrix_synapse-1.142.0rc3/tests/replication/tcp/streams/test_receipts.py +110 -0
  728. matrix_synapse-1.142.0rc3/tests/replication/tcp/streams/test_thread_subscriptions.py +157 -0
  729. matrix_synapse-1.142.0rc3/tests/replication/tcp/streams/test_to_device.py +112 -0
  730. matrix_synapse-1.142.0rc3/tests/replication/tcp/streams/test_typing.py +223 -0
  731. matrix_synapse-1.142.0rc3/tests/replication/test_auth.py +120 -0
  732. matrix_synapse-1.142.0rc3/tests/replication/test_federation_ack.py +88 -0
  733. matrix_synapse-1.142.0rc3/tests/replication/test_federation_sender_shard.py +352 -0
  734. matrix_synapse-1.142.0rc3/tests/replication/test_module_cache_invalidation.py +89 -0
  735. matrix_synapse-1.142.0rc3/tests/replication/test_multi_media_repo.py +496 -0
  736. matrix_synapse-1.142.0rc3/tests/replication/test_pusher_shard.py +192 -0
  737. matrix_synapse-1.142.0rc3/tests/replication/test_sharded_event_persister.py +332 -0
  738. matrix_synapse-1.142.0rc3/tests/replication/test_sharded_receipts.py +250 -0
  739. matrix_synapse-1.142.0rc3/tests/rest/admin/test_admin.py +488 -0
  740. matrix_synapse-1.142.0rc3/tests/rest/admin/test_background_updates.py +374 -0
  741. matrix_synapse-1.142.0rc3/tests/rest/admin/test_device.py +603 -0
  742. matrix_synapse-1.142.0rc3/tests/rest/admin/test_event.py +74 -0
  743. matrix_synapse-1.142.0rc3/tests/rest/admin/test_event_reports.py +781 -0
  744. matrix_synapse-1.142.0rc3/tests/rest/admin/test_federation.py +864 -0
  745. matrix_synapse-1.142.0rc3/tests/rest/admin/test_jwks.py +106 -0
  746. matrix_synapse-1.142.0rc3/tests/rest/admin/test_media.py +1091 -0
  747. matrix_synapse-1.142.0rc3/tests/rest/admin/test_registration_tokens.py +730 -0
  748. matrix_synapse-1.142.0rc3/tests/rest/admin/test_room.py +3512 -0
  749. matrix_synapse-1.142.0rc3/tests/rest/admin/test_scheduled_tasks.py +192 -0
  750. matrix_synapse-1.142.0rc3/tests/rest/admin/test_server_notice.py +753 -0
  751. matrix_synapse-1.142.0rc3/tests/rest/admin/test_statistics.py +524 -0
  752. matrix_synapse-1.142.0rc3/tests/rest/admin/test_user.py +6062 -0
  753. matrix_synapse-1.142.0rc3/tests/rest/admin/test_username_available.py +83 -0
  754. matrix_synapse-1.142.0rc3/tests/rest/client/sliding_sync/__init__.py +13 -0
  755. matrix_synapse-1.142.0rc3/tests/rest/client/sliding_sync/test_connection_tracking.py +397 -0
  756. matrix_synapse-1.142.0rc3/tests/rest/client/sliding_sync/test_extension_account_data.py +1056 -0
  757. matrix_synapse-1.142.0rc3/tests/rest/client/sliding_sync/test_extension_e2ee.py +459 -0
  758. matrix_synapse-1.142.0rc3/tests/rest/client/sliding_sync/test_extension_receipts.py +934 -0
  759. matrix_synapse-1.142.0rc3/tests/rest/client/sliding_sync/test_extension_thread_subscriptions.py +497 -0
  760. matrix_synapse-1.142.0rc3/tests/rest/client/sliding_sync/test_extension_to_device.py +294 -0
  761. matrix_synapse-1.142.0rc3/tests/rest/client/sliding_sync/test_extension_typing.py +500 -0
  762. matrix_synapse-1.142.0rc3/tests/rest/client/sliding_sync/test_extensions.py +306 -0
  763. matrix_synapse-1.142.0rc3/tests/rest/client/sliding_sync/test_lists_filters.py +1975 -0
  764. matrix_synapse-1.142.0rc3/tests/rest/client/sliding_sync/test_room_subscriptions.py +303 -0
  765. matrix_synapse-1.142.0rc3/tests/rest/client/sliding_sync/test_rooms_invites.py +528 -0
  766. matrix_synapse-1.142.0rc3/tests/rest/client/sliding_sync/test_rooms_meta.py +1338 -0
  767. matrix_synapse-1.142.0rc3/tests/rest/client/sliding_sync/test_rooms_required_state.py +1688 -0
  768. matrix_synapse-1.142.0rc3/tests/rest/client/sliding_sync/test_rooms_timeline.py +719 -0
  769. matrix_synapse-1.142.0rc3/tests/rest/client/sliding_sync/test_sliding_sync.py +1670 -0
  770. matrix_synapse-1.142.0rc3/tests/rest/client/test_account.py +1543 -0
  771. matrix_synapse-1.142.0rc3/tests/rest/client/test_auth.py +1508 -0
  772. matrix_synapse-1.142.0rc3/tests/rest/client/test_auth_metadata.py +145 -0
  773. matrix_synapse-1.142.0rc3/tests/rest/client/test_capabilities.py +318 -0
  774. matrix_synapse-1.142.0rc3/tests/rest/client/test_consent.py +138 -0
  775. matrix_synapse-1.142.0rc3/tests/rest/client/test_delayed_events.py +609 -0
  776. matrix_synapse-1.142.0rc3/tests/rest/client/test_devices.py +634 -0
  777. matrix_synapse-1.142.0rc3/tests/rest/client/test_directory.py +249 -0
  778. matrix_synapse-1.142.0rc3/tests/rest/client/test_ephemeral_message.py +113 -0
  779. matrix_synapse-1.142.0rc3/tests/rest/client/test_events.py +165 -0
  780. matrix_synapse-1.142.0rc3/tests/rest/client/test_filter.py +124 -0
  781. matrix_synapse-1.142.0rc3/tests/rest/client/test_identity.py +67 -0
  782. matrix_synapse-1.142.0rc3/tests/rest/client/test_keys.py +516 -0
  783. matrix_synapse-1.142.0rc3/tests/rest/client/test_login.py +1895 -0
  784. matrix_synapse-1.142.0rc3/tests/rest/client/test_login_token_request.py +175 -0
  785. matrix_synapse-1.142.0rc3/tests/rest/client/test_matrixrtc.py +105 -0
  786. matrix_synapse-1.142.0rc3/tests/rest/client/test_media.py +3160 -0
  787. matrix_synapse-1.142.0rc3/tests/rest/client/test_models.py +83 -0
  788. matrix_synapse-1.142.0rc3/tests/rest/client/test_mutual_rooms.py +153 -0
  789. matrix_synapse-1.142.0rc3/tests/rest/client/test_notifications.py +232 -0
  790. matrix_synapse-1.142.0rc3/tests/rest/client/test_owned_state.py +308 -0
  791. matrix_synapse-1.142.0rc3/tests/rest/client/test_password_policy.py +186 -0
  792. matrix_synapse-1.142.0rc3/tests/rest/client/test_power_levels.py +295 -0
  793. matrix_synapse-1.142.0rc3/tests/rest/client/test_presence.py +149 -0
  794. matrix_synapse-1.142.0rc3/tests/rest/client/test_profile.py +925 -0
  795. matrix_synapse-1.142.0rc3/tests/rest/client/test_push_rule_attrs.py +510 -0
  796. matrix_synapse-1.142.0rc3/tests/rest/client/test_read_marker.py +151 -0
  797. matrix_synapse-1.142.0rc3/tests/rest/client/test_receipts.py +288 -0
  798. matrix_synapse-1.142.0rc3/tests/rest/client/test_redactions.py +658 -0
  799. matrix_synapse-1.142.0rc3/tests/rest/client/test_register.py +1314 -0
  800. matrix_synapse-1.142.0rc3/tests/rest/client/test_relations.py +1954 -0
  801. matrix_synapse-1.142.0rc3/tests/rest/client/test_rendezvous.py +468 -0
  802. matrix_synapse-1.142.0rc3/tests/rest/client/test_reporting.py +325 -0
  803. matrix_synapse-1.142.0rc3/tests/rest/client/test_retention.py +389 -0
  804. matrix_synapse-1.142.0rc3/tests/rest/client/test_rooms.py +5484 -0
  805. matrix_synapse-1.142.0rc3/tests/rest/client/test_sendtodevice.py +271 -0
  806. matrix_synapse-1.142.0rc3/tests/rest/client/test_shadow_banned.py +335 -0
  807. matrix_synapse-1.142.0rc3/tests/rest/client/test_sync.py +1147 -0
  808. matrix_synapse-1.142.0rc3/tests/rest/client/test_tags.py +161 -0
  809. matrix_synapse-1.142.0rc3/tests/rest/client/test_third_party_rules.py +1076 -0
  810. matrix_synapse-1.142.0rc3/tests/rest/client/test_thread_subscriptions.py +351 -0
  811. matrix_synapse-1.142.0rc3/tests/rest/client/test_transactions.py +206 -0
  812. matrix_synapse-1.142.0rc3/tests/rest/client/test_typing.py +114 -0
  813. matrix_synapse-1.142.0rc3/tests/rest/client/test_upgrade_room.py +434 -0
  814. matrix_synapse-1.142.0rc3/tests/rest/client/utils.py +988 -0
  815. matrix_synapse-1.142.0rc3/tests/rest/key/v2/test_remote_key_resource.py +282 -0
  816. matrix_synapse-1.142.0rc3/tests/rest/media/test_domain_blocking.py +148 -0
  817. matrix_synapse-1.142.0rc3/tests/rest/media/test_url_preview.py +1445 -0
  818. matrix_synapse-1.142.0rc3/tests/rest/synapse/__init__.py +12 -0
  819. matrix_synapse-1.142.0rc3/tests/rest/synapse/client/__init__.py +12 -0
  820. matrix_synapse-1.142.0rc3/tests/rest/synapse/client/test_federation_whitelist.py +118 -0
  821. matrix_synapse-1.142.0rc3/tests/rest/synapse/mas/__init__.py +12 -0
  822. matrix_synapse-1.142.0rc3/tests/rest/synapse/mas/_base.py +43 -0
  823. matrix_synapse-1.142.0rc3/tests/rest/synapse/mas/test_devices.py +693 -0
  824. matrix_synapse-1.142.0rc3/tests/rest/synapse/mas/test_users.py +1399 -0
  825. matrix_synapse-1.142.0rc3/tests/rest/test_well_known.py +155 -0
  826. matrix_synapse-1.142.0rc3/tests/scripts/test_new_matrix_user.py +173 -0
  827. matrix_synapse-1.142.0rc3/tests/server.py +1334 -0
  828. matrix_synapse-1.142.0rc3/tests/server_notices/__init__.py +240 -0
  829. matrix_synapse-1.142.0rc3/tests/server_notices/test_consent.py +111 -0
  830. matrix_synapse-1.142.0rc3/tests/server_notices/test_resource_limits_server_notices.py +409 -0
  831. matrix_synapse-1.142.0rc3/tests/state/test_v2.py +1096 -0
  832. matrix_synapse-1.142.0rc3/tests/state/test_v21.py +505 -0
  833. matrix_synapse-1.142.0rc3/tests/storage/databases/main/test_deviceinbox.py +323 -0
  834. matrix_synapse-1.142.0rc3/tests/storage/databases/main/test_end_to_end_keys.py +128 -0
  835. matrix_synapse-1.142.0rc3/tests/storage/databases/main/test_events_worker.py +594 -0
  836. matrix_synapse-1.142.0rc3/tests/storage/databases/main/test_lock.py +499 -0
  837. matrix_synapse-1.142.0rc3/tests/storage/databases/main/test_metrics.py +88 -0
  838. matrix_synapse-1.142.0rc3/tests/storage/databases/main/test_receipts.py +218 -0
  839. matrix_synapse-1.142.0rc3/tests/storage/databases/main/test_room.py +192 -0
  840. matrix_synapse-1.142.0rc3/tests/storage/test__base.py +178 -0
  841. matrix_synapse-1.142.0rc3/tests/storage/test_account_data.py +186 -0
  842. matrix_synapse-1.142.0rc3/tests/storage/test_appservice.py +568 -0
  843. matrix_synapse-1.142.0rc3/tests/storage/test_background_update.py +670 -0
  844. matrix_synapse-1.142.0rc3/tests/storage/test_base.py +813 -0
  845. matrix_synapse-1.142.0rc3/tests/storage/test_cleanup_extrems.py +396 -0
  846. matrix_synapse-1.142.0rc3/tests/storage/test_client_ips.py +788 -0
  847. matrix_synapse-1.142.0rc3/tests/storage/test_database.py +288 -0
  848. matrix_synapse-1.142.0rc3/tests/storage/test_devices.py +353 -0
  849. matrix_synapse-1.142.0rc3/tests/storage/test_directory.py +74 -0
  850. matrix_synapse-1.142.0rc3/tests/storage/test_e2e_room_keys.py +87 -0
  851. matrix_synapse-1.142.0rc3/tests/storage/test_end_to_end_keys.py +120 -0
  852. matrix_synapse-1.142.0rc3/tests/storage/test_event_chain.py +826 -0
  853. matrix_synapse-1.142.0rc3/tests/storage/test_event_federation.py +1434 -0
  854. matrix_synapse-1.142.0rc3/tests/storage/test_event_push_actions.py +814 -0
  855. matrix_synapse-1.142.0rc3/tests/storage/test_events.py +592 -0
  856. matrix_synapse-1.142.0rc3/tests/storage/test_events_bg_updates.py +156 -0
  857. matrix_synapse-1.142.0rc3/tests/storage/test_id_generators.py +792 -0
  858. matrix_synapse-1.142.0rc3/tests/storage/test_invite_rule.py +167 -0
  859. matrix_synapse-1.142.0rc3/tests/storage/test_monthly_active_users.py +500 -0
  860. matrix_synapse-1.142.0rc3/tests/storage/test_profile.py +134 -0
  861. matrix_synapse-1.142.0rc3/tests/storage/test_purge.py +459 -0
  862. matrix_synapse-1.142.0rc3/tests/storage/test_receipts.py +309 -0
  863. matrix_synapse-1.142.0rc3/tests/storage/test_redaction.py +462 -0
  864. matrix_synapse-1.142.0rc3/tests/storage/test_registration.py +277 -0
  865. matrix_synapse-1.142.0rc3/tests/storage/test_relations.py +118 -0
  866. matrix_synapse-1.142.0rc3/tests/storage/test_rollback_worker.py +132 -0
  867. matrix_synapse-1.142.0rc3/tests/storage/test_room.py +69 -0
  868. matrix_synapse-1.142.0rc3/tests/storage/test_room_search.py +383 -0
  869. matrix_synapse-1.142.0rc3/tests/storage/test_roommember.py +812 -0
  870. matrix_synapse-1.142.0rc3/tests/storage/test_sliding_sync_tables.py +5119 -0
  871. matrix_synapse-1.142.0rc3/tests/storage/test_state.py +645 -0
  872. matrix_synapse-1.142.0rc3/tests/storage/test_state_deletion.py +475 -0
  873. matrix_synapse-1.142.0rc3/tests/storage/test_stream.py +1533 -0
  874. matrix_synapse-1.142.0rc3/tests/storage/test_thread_subscriptions.py +370 -0
  875. matrix_synapse-1.142.0rc3/tests/storage/test_transactions.py +77 -0
  876. matrix_synapse-1.142.0rc3/tests/storage/test_txn_limit.py +49 -0
  877. matrix_synapse-1.142.0rc3/tests/storage/test_unsafe_locale.py +67 -0
  878. matrix_synapse-1.142.0rc3/tests/storage/test_user_directory.py +691 -0
  879. matrix_synapse-1.142.0rc3/tests/storage/test_user_filters.py +101 -0
  880. matrix_synapse-1.142.0rc3/tests/storage/util/test_partial_state_events_tracker.py +181 -0
  881. matrix_synapse-1.142.0rc3/tests/synapse_rust/__init__.py +11 -0
  882. matrix_synapse-1.142.0rc3/tests/synapse_rust/test_http_client.py +225 -0
  883. matrix_synapse-1.142.0rc3/tests/test_distributor.py +74 -0
  884. matrix_synapse-1.142.0rc3/tests/test_event_auth.py +921 -0
  885. matrix_synapse-1.142.0rc3/tests/test_mau.py +349 -0
  886. matrix_synapse-1.142.0rc3/tests/test_phone_home.py +102 -0
  887. matrix_synapse-1.142.0rc3/tests/test_server.py +496 -0
  888. matrix_synapse-1.142.0rc3/tests/test_state.py +903 -0
  889. matrix_synapse-1.142.0rc3/tests/test_terms_auth.py +128 -0
  890. matrix_synapse-1.142.0rc3/tests/test_types.py +201 -0
  891. matrix_synapse-1.142.0rc3/tests/test_utils/__init__.py +161 -0
  892. matrix_synapse-1.142.0rc3/tests/test_utils/event_injection.py +150 -0
  893. matrix_synapse-1.142.0rc3/tests/test_utils/html_parsers.py +59 -0
  894. matrix_synapse-1.142.0rc3/tests/test_utils/logging_setup.py +74 -0
  895. matrix_synapse-1.142.0rc3/tests/test_utils/oidc.py +370 -0
  896. matrix_synapse-1.142.0rc3/tests/test_visibility.py +710 -0
  897. matrix_synapse-1.142.0rc3/tests/types/test_init.py +51 -0
  898. matrix_synapse-1.142.0rc3/tests/unittest.py +1109 -0
  899. matrix_synapse-1.142.0rc3/tests/util/caches/test_deferred_cache.py +317 -0
  900. matrix_synapse-1.142.0rc3/tests/util/caches/test_descriptors.py +1111 -0
  901. matrix_synapse-1.142.0rc3/tests/util/caches/test_response_cache.py +224 -0
  902. matrix_synapse-1.142.0rc3/tests/util/caches/test_ttlcache.py +90 -0
  903. matrix_synapse-1.142.0rc3/tests/util/test_async_helpers.py +808 -0
  904. matrix_synapse-1.142.0rc3/tests/util/test_batching_queue.py +252 -0
  905. matrix_synapse-1.142.0rc3/tests/util/test_check_dependencies.py +243 -0
  906. matrix_synapse-1.142.0rc3/tests/util/test_dict_cache.py +130 -0
  907. matrix_synapse-1.142.0rc3/tests/util/test_events.py +118 -0
  908. matrix_synapse-1.142.0rc3/tests/util/test_expiring_cache.py +113 -0
  909. matrix_synapse-1.142.0rc3/tests/util/test_itertools.py +190 -0
  910. matrix_synapse-1.142.0rc3/tests/util/test_linearizer.py +264 -0
  911. matrix_synapse-1.142.0rc3/tests/util/test_logcontext.py +710 -0
  912. matrix_synapse-1.142.0rc3/tests/util/test_lrucache.py +479 -0
  913. matrix_synapse-1.142.0rc3/tests/util/test_mutable_overlay_mapping.py +189 -0
  914. matrix_synapse-1.142.0rc3/tests/util/test_ratelimitutils.py +147 -0
  915. matrix_synapse-1.142.0rc3/tests/util/test_retryutils.py +314 -0
  916. matrix_synapse-1.142.0rc3/tests/util/test_rwlock.py +401 -0
  917. matrix_synapse-1.142.0rc3/tests/util/test_stream_change_cache.py +304 -0
  918. matrix_synapse-1.142.0rc3/tests/util/test_stringutils.py +86 -0
  919. matrix_synapse-1.142.0rc3/tests/util/test_task_scheduler.py +227 -0
  920. matrix_synapse-1.142.0rc3/tests/util/test_wheel_timer.py +82 -0
  921. matrix_synapse-1.142.0rc3/tests/utils.py +342 -0
  922. matrix_synapse-1.102.0rc1/CHANGES.md +0 -2425
  923. matrix_synapse-1.102.0rc1/Cargo.lock +0 -482
  924. matrix_synapse-1.102.0rc1/PKG-INFO +0 -333
  925. matrix_synapse-1.102.0rc1/README.rst +0 -250
  926. matrix_synapse-1.102.0rc1/build_rust.py +0 -23
  927. matrix_synapse-1.102.0rc1/demo/start.sh +0 -160
  928. matrix_synapse-1.102.0rc1/docs/README.md +0 -74
  929. matrix_synapse-1.102.0rc1/docs/SUMMARY.md +0 -117
  930. matrix_synapse-1.102.0rc1/docs/admin_api/event_reports.md +0 -185
  931. matrix_synapse-1.102.0rc1/docs/admin_api/experimental_features.md +0 -55
  932. matrix_synapse-1.102.0rc1/docs/admin_api/media_admin_api.md +0 -316
  933. matrix_synapse-1.102.0rc1/docs/admin_api/room_membership.md +0 -35
  934. matrix_synapse-1.102.0rc1/docs/admin_api/rooms.md +0 -1101
  935. matrix_synapse-1.102.0rc1/docs/admin_api/user_admin_api.md +0 -1349
  936. matrix_synapse-1.102.0rc1/docs/code_style.md +0 -121
  937. matrix_synapse-1.102.0rc1/docs/deprecation_policy.md +0 -53
  938. matrix_synapse-1.102.0rc1/docs/development/contributing_guide.md +0 -554
  939. matrix_synapse-1.102.0rc1/docs/development/database_schema.md +0 -404
  940. matrix_synapse-1.102.0rc1/docs/development/dependencies.md +0 -307
  941. matrix_synapse-1.102.0rc1/docs/development/room-dag-concepts.md +0 -113
  942. matrix_synapse-1.102.0rc1/docs/log_contexts.md +0 -364
  943. matrix_synapse-1.102.0rc1/docs/message_retention_policies.md +0 -205
  944. matrix_synapse-1.102.0rc1/docs/modules/spam_checker_callbacks.md +0 -435
  945. matrix_synapse-1.102.0rc1/docs/modules/third_party_rules_callbacks.md +0 -346
  946. matrix_synapse-1.102.0rc1/docs/openid.md +0 -712
  947. matrix_synapse-1.102.0rc1/docs/postgres.md +0 -268
  948. matrix_synapse-1.102.0rc1/docs/reverse_proxy.md +0 -269
  949. matrix_synapse-1.102.0rc1/docs/setup/forward_proxy.md +0 -74
  950. matrix_synapse-1.102.0rc1/docs/setup/installation.md +0 -618
  951. matrix_synapse-1.102.0rc1/docs/setup/turn/coturn.md +0 -188
  952. matrix_synapse-1.102.0rc1/docs/spam_checker.md +0 -122
  953. matrix_synapse-1.102.0rc1/docs/sso_mapping_providers.md +0 -205
  954. matrix_synapse-1.102.0rc1/docs/structured_logging.md +0 -80
  955. matrix_synapse-1.102.0rc1/docs/systemd-with-workers/system/matrix-synapse.service +0 -22
  956. matrix_synapse-1.102.0rc1/docs/upgrade.md +0 -2555
  957. matrix_synapse-1.102.0rc1/docs/usage/administration/admin_api/background_updates.md +0 -109
  958. matrix_synapse-1.102.0rc1/docs/usage/administration/admin_faq.md +0 -287
  959. matrix_synapse-1.102.0rc1/docs/usage/administration/monitoring/reporting_homeserver_usage_statistics.md +0 -77
  960. matrix_synapse-1.102.0rc1/docs/usage/administration/useful_sql_for_admins.md +0 -207
  961. matrix_synapse-1.102.0rc1/docs/usage/configuration/config_documentation.md +0 -4543
  962. matrix_synapse-1.102.0rc1/docs/user_directory.md +0 -133
  963. matrix_synapse-1.102.0rc1/docs/website_files/version-picker.js +0 -127
  964. matrix_synapse-1.102.0rc1/docs/welcome_and_overview.md +0 -67
  965. matrix_synapse-1.102.0rc1/docs/workers.md +0 -851
  966. matrix_synapse-1.102.0rc1/mypy.ini +0 -98
  967. matrix_synapse-1.102.0rc1/pyproject.toml +0 -419
  968. matrix_synapse-1.102.0rc1/rust/Cargo.toml +0 -46
  969. matrix_synapse-1.102.0rc1/rust/src/acl/mod.rs +0 -109
  970. matrix_synapse-1.102.0rc1/rust/src/events/internal_metadata.rs +0 -430
  971. matrix_synapse-1.102.0rc1/rust/src/events/mod.rs +0 -41
  972. matrix_synapse-1.102.0rc1/rust/src/lib.rs +0 -48
  973. matrix_synapse-1.102.0rc1/rust/src/push/base_rules.rs +0 -712
  974. matrix_synapse-1.102.0rc1/rust/src/push/evaluator.rs +0 -590
  975. matrix_synapse-1.102.0rc1/rust/src/push/mod.rs +0 -779
  976. matrix_synapse-1.102.0rc1/rust/src/push/utils.rs +0 -222
  977. matrix_synapse-1.102.0rc1/scripts-dev/build_debian_packages.py +0 -230
  978. matrix_synapse-1.102.0rc1/scripts-dev/check_locked_deps_have_sdists.py +0 -65
  979. matrix_synapse-1.102.0rc1/scripts-dev/check_pydantic_models.py +0 -497
  980. matrix_synapse-1.102.0rc1/scripts-dev/check_schema_delta.py +0 -133
  981. matrix_synapse-1.102.0rc1/scripts-dev/complement.sh +0 -284
  982. matrix_synapse-1.102.0rc1/scripts-dev/federation_client.py +0 -391
  983. matrix_synapse-1.102.0rc1/scripts-dev/lint.sh +0 -144
  984. matrix_synapse-1.102.0rc1/scripts-dev/mypy_synapse_plugin.py +0 -364
  985. matrix_synapse-1.102.0rc1/scripts-dev/release.py +0 -917
  986. matrix_synapse-1.102.0rc1/scripts-dev/schema_versions.py +0 -182
  987. matrix_synapse-1.102.0rc1/scripts-dev/sign_json.py +0 -172
  988. matrix_synapse-1.102.0rc1/setup.py +0 -255
  989. matrix_synapse-1.102.0rc1/synapse/__init__.py +0 -108
  990. matrix_synapse-1.102.0rc1/synapse/_pydantic_compat.py +0 -33
  991. matrix_synapse-1.102.0rc1/synapse/_scripts/generate_workers_map.py +0 -309
  992. matrix_synapse-1.102.0rc1/synapse/_scripts/hash_password.py +0 -83
  993. matrix_synapse-1.102.0rc1/synapse/_scripts/register_new_matrix_user.py +0 -322
  994. matrix_synapse-1.102.0rc1/synapse/_scripts/review_recent_signups.py +0 -197
  995. matrix_synapse-1.102.0rc1/synapse/_scripts/synapse_port_db.py +0 -1448
  996. matrix_synapse-1.102.0rc1/synapse/_scripts/synctl.py +0 -365
  997. matrix_synapse-1.102.0rc1/synapse/_scripts/update_synapse_database.py +0 -123
  998. matrix_synapse-1.102.0rc1/synapse/api/auth/__init__.py +0 -183
  999. matrix_synapse-1.102.0rc1/synapse/api/auth/base.py +0 -406
  1000. matrix_synapse-1.102.0rc1/synapse/api/auth/internal.py +0 -274
  1001. matrix_synapse-1.102.0rc1/synapse/api/auth/msc3861_delegated.py +0 -385
  1002. matrix_synapse-1.102.0rc1/synapse/api/constants.py +0 -296
  1003. matrix_synapse-1.102.0rc1/synapse/api/errors.py +0 -850
  1004. matrix_synapse-1.102.0rc1/synapse/api/filtering.py +0 -542
  1005. matrix_synapse-1.102.0rc1/synapse/api/ratelimiting.py +0 -414
  1006. matrix_synapse-1.102.0rc1/synapse/api/room_versions.py +0 -394
  1007. matrix_synapse-1.102.0rc1/synapse/api/urls.py +0 -67
  1008. matrix_synapse-1.102.0rc1/synapse/app/_base.py +0 -754
  1009. matrix_synapse-1.102.0rc1/synapse/app/admin_cmd.py +0 -341
  1010. matrix_synapse-1.102.0rc1/synapse/app/appservice.py +0 -34
  1011. matrix_synapse-1.102.0rc1/synapse/app/client_reader.py +0 -34
  1012. matrix_synapse-1.102.0rc1/synapse/app/complement_fork_starter.py +0 -206
  1013. matrix_synapse-1.102.0rc1/synapse/app/event_creator.py +0 -33
  1014. matrix_synapse-1.102.0rc1/synapse/app/federation_reader.py +0 -34
  1015. matrix_synapse-1.102.0rc1/synapse/app/federation_sender.py +0 -34
  1016. matrix_synapse-1.102.0rc1/synapse/app/frontend_proxy.py +0 -34
  1017. matrix_synapse-1.102.0rc1/synapse/app/generic_worker.py +0 -344
  1018. matrix_synapse-1.102.0rc1/synapse/app/homeserver.py +0 -405
  1019. matrix_synapse-1.102.0rc1/synapse/app/media_repository.py +0 -34
  1020. matrix_synapse-1.102.0rc1/synapse/app/phone_stats_home.py +0 -232
  1021. matrix_synapse-1.102.0rc1/synapse/app/pusher.py +0 -34
  1022. matrix_synapse-1.102.0rc1/synapse/app/synchrotron.py +0 -34
  1023. matrix_synapse-1.102.0rc1/synapse/app/user_dir.py +0 -34
  1024. matrix_synapse-1.102.0rc1/synapse/appservice/__init__.py +0 -432
  1025. matrix_synapse-1.102.0rc1/synapse/appservice/api.py +0 -561
  1026. matrix_synapse-1.102.0rc1/synapse/appservice/scheduler.py +0 -525
  1027. matrix_synapse-1.102.0rc1/synapse/config/__main__.py +0 -63
  1028. matrix_synapse-1.102.0rc1/synapse/config/_base.py +0 -1046
  1029. matrix_synapse-1.102.0rc1/synapse/config/_base.pyi +0 -209
  1030. matrix_synapse-1.102.0rc1/synapse/config/_util.py +0 -105
  1031. matrix_synapse-1.102.0rc1/synapse/config/api.py +0 -141
  1032. matrix_synapse-1.102.0rc1/synapse/config/appservice.py +0 -198
  1033. matrix_synapse-1.102.0rc1/synapse/config/auth.py +0 -79
  1034. matrix_synapse-1.102.0rc1/synapse/config/cache.py +0 -231
  1035. matrix_synapse-1.102.0rc1/synapse/config/captcha.py +0 -54
  1036. matrix_synapse-1.102.0rc1/synapse/config/cas.py +0 -98
  1037. matrix_synapse-1.102.0rc1/synapse/config/database.py +0 -184
  1038. matrix_synapse-1.102.0rc1/synapse/config/emailconfig.py +0 -354
  1039. matrix_synapse-1.102.0rc1/synapse/config/experimental.py +0 -432
  1040. matrix_synapse-1.102.0rc1/synapse/config/federation.py +0 -94
  1041. matrix_synapse-1.102.0rc1/synapse/config/homeserver.py +0 -108
  1042. matrix_synapse-1.102.0rc1/synapse/config/jwt.py +0 -53
  1043. matrix_synapse-1.102.0rc1/synapse/config/key.py +0 -406
  1044. matrix_synapse-1.102.0rc1/synapse/config/logger.py +0 -367
  1045. matrix_synapse-1.102.0rc1/synapse/config/modules.py +0 -40
  1046. matrix_synapse-1.102.0rc1/synapse/config/oembed.py +0 -180
  1047. matrix_synapse-1.102.0rc1/synapse/config/oidc.py +0 -446
  1048. matrix_synapse-1.102.0rc1/synapse/config/password_auth_providers.py +0 -82
  1049. matrix_synapse-1.102.0rc1/synapse/config/ratelimiting.py +0 -220
  1050. matrix_synapse-1.102.0rc1/synapse/config/redis.py +0 -51
  1051. matrix_synapse-1.102.0rc1/synapse/config/registration.py +0 -286
  1052. matrix_synapse-1.102.0rc1/synapse/config/repository.py +0 -278
  1053. matrix_synapse-1.102.0rc1/synapse/config/retention.py +0 -162
  1054. matrix_synapse-1.102.0rc1/synapse/config/room.py +0 -88
  1055. matrix_synapse-1.102.0rc1/synapse/config/room_directory.py +0 -167
  1056. matrix_synapse-1.102.0rc1/synapse/config/saml2.py +0 -248
  1057. matrix_synapse-1.102.0rc1/synapse/config/server.py +0 -1040
  1058. matrix_synapse-1.102.0rc1/synapse/config/spam_checker.py +0 -66
  1059. matrix_synapse-1.102.0rc1/synapse/config/sso.py +0 -116
  1060. matrix_synapse-1.102.0rc1/synapse/config/tls.py +0 -193
  1061. matrix_synapse-1.102.0rc1/synapse/config/tracer.py +0 -71
  1062. matrix_synapse-1.102.0rc1/synapse/config/user_directory.py +0 -44
  1063. matrix_synapse-1.102.0rc1/synapse/config/voip.py +0 -40
  1064. matrix_synapse-1.102.0rc1/synapse/config/workers.py +0 -603
  1065. matrix_synapse-1.102.0rc1/synapse/crypto/event_signing.py +0 -191
  1066. matrix_synapse-1.102.0rc1/synapse/crypto/keyring.py +0 -910
  1067. matrix_synapse-1.102.0rc1/synapse/event_auth.py +0 -1132
  1068. matrix_synapse-1.102.0rc1/synapse/events/__init__.py +0 -560
  1069. matrix_synapse-1.102.0rc1/synapse/events/builder.py +0 -308
  1070. matrix_synapse-1.102.0rc1/synapse/events/presence_router.py +0 -248
  1071. matrix_synapse-1.102.0rc1/synapse/events/snapshot.py +0 -553
  1072. matrix_synapse-1.102.0rc1/synapse/events/utils.py +0 -816
  1073. matrix_synapse-1.102.0rc1/synapse/events/validator.py +0 -304
  1074. matrix_synapse-1.102.0rc1/synapse/federation/__init__.py +0 -23
  1075. matrix_synapse-1.102.0rc1/synapse/federation/federation_base.py +0 -324
  1076. matrix_synapse-1.102.0rc1/synapse/federation/federation_client.py +0 -1974
  1077. matrix_synapse-1.102.0rc1/synapse/federation/federation_server.py +0 -1507
  1078. matrix_synapse-1.102.0rc1/synapse/federation/persistence.py +0 -71
  1079. matrix_synapse-1.102.0rc1/synapse/federation/send_queue.py +0 -518
  1080. matrix_synapse-1.102.0rc1/synapse/federation/sender/__init__.py +0 -1026
  1081. matrix_synapse-1.102.0rc1/synapse/federation/sender/per_destination_queue.py +0 -843
  1082. matrix_synapse-1.102.0rc1/synapse/federation/sender/transaction_manager.py +0 -196
  1083. matrix_synapse-1.102.0rc1/synapse/federation/transport/client.py +0 -1118
  1084. matrix_synapse-1.102.0rc1/synapse/federation/transport/server/__init__.py +0 -323
  1085. matrix_synapse-1.102.0rc1/synapse/federation/transport/server/_base.py +0 -405
  1086. matrix_synapse-1.102.0rc1/synapse/federation/transport/server/federation.py +0 -821
  1087. matrix_synapse-1.102.0rc1/synapse/federation/units.py +0 -111
  1088. matrix_synapse-1.102.0rc1/synapse/handlers/account.py +0 -162
  1089. matrix_synapse-1.102.0rc1/synapse/handlers/account_data.py +0 -362
  1090. matrix_synapse-1.102.0rc1/synapse/handlers/account_validity.py +0 -360
  1091. matrix_synapse-1.102.0rc1/synapse/handlers/admin.py +0 -418
  1092. matrix_synapse-1.102.0rc1/synapse/handlers/appservice.py +0 -975
  1093. matrix_synapse-1.102.0rc1/synapse/handlers/auth.py +0 -2429
  1094. matrix_synapse-1.102.0rc1/synapse/handlers/cas.py +0 -407
  1095. matrix_synapse-1.102.0rc1/synapse/handlers/deactivate_account.py +0 -307
  1096. matrix_synapse-1.102.0rc1/synapse/handlers/device.py +0 -1574
  1097. matrix_synapse-1.102.0rc1/synapse/handlers/devicemessage.py +0 -401
  1098. matrix_synapse-1.102.0rc1/synapse/handlers/directory.py +0 -558
  1099. matrix_synapse-1.102.0rc1/synapse/handlers/e2e_keys.py +0 -1669
  1100. matrix_synapse-1.102.0rc1/synapse/handlers/e2e_room_keys.py +0 -439
  1101. matrix_synapse-1.102.0rc1/synapse/handlers/event_auth.py +0 -373
  1102. matrix_synapse-1.102.0rc1/synapse/handlers/events.py +0 -198
  1103. matrix_synapse-1.102.0rc1/synapse/handlers/federation.py +0 -2042
  1104. matrix_synapse-1.102.0rc1/synapse/handlers/federation_event.py +0 -2374
  1105. matrix_synapse-1.102.0rc1/synapse/handlers/identity.py +0 -811
  1106. matrix_synapse-1.102.0rc1/synapse/handlers/initial_sync.py +0 -521
  1107. matrix_synapse-1.102.0rc1/synapse/handlers/jwt.py +0 -112
  1108. matrix_synapse-1.102.0rc1/synapse/handlers/message.py +0 -2163
  1109. matrix_synapse-1.102.0rc1/synapse/handlers/oidc.py +0 -1699
  1110. matrix_synapse-1.102.0rc1/synapse/handlers/pagination.py +0 -761
  1111. matrix_synapse-1.102.0rc1/synapse/handlers/presence.py +0 -2559
  1112. matrix_synapse-1.102.0rc1/synapse/handlers/profile.py +0 -475
  1113. matrix_synapse-1.102.0rc1/synapse/handlers/push_rules.py +0 -164
  1114. matrix_synapse-1.102.0rc1/synapse/handlers/read_marker.py +0 -77
  1115. matrix_synapse-1.102.0rc1/synapse/handlers/receipts.py +0 -345
  1116. matrix_synapse-1.102.0rc1/synapse/handlers/register.py +0 -1056
  1117. matrix_synapse-1.102.0rc1/synapse/handlers/relations.py +0 -627
  1118. matrix_synapse-1.102.0rc1/synapse/handlers/room.py +0 -2055
  1119. matrix_synapse-1.102.0rc1/synapse/handlers/room_list.py +0 -622
  1120. matrix_synapse-1.102.0rc1/synapse/handlers/room_member.py +0 -2250
  1121. matrix_synapse-1.102.0rc1/synapse/handlers/room_member_worker.py +0 -146
  1122. matrix_synapse-1.102.0rc1/synapse/handlers/room_summary.py +0 -988
  1123. matrix_synapse-1.102.0rc1/synapse/handlers/saml.py +0 -524
  1124. matrix_synapse-1.102.0rc1/synapse/handlers/search.py +0 -715
  1125. matrix_synapse-1.102.0rc1/synapse/handlers/send_email.py +0 -230
  1126. matrix_synapse-1.102.0rc1/synapse/handlers/set_password.py +0 -75
  1127. matrix_synapse-1.102.0rc1/synapse/handlers/sso.py +0 -1282
  1128. matrix_synapse-1.102.0rc1/synapse/handlers/stats.py +0 -314
  1129. matrix_synapse-1.102.0rc1/synapse/handlers/sync.py +0 -2797
  1130. matrix_synapse-1.102.0rc1/synapse/handlers/typing.py +0 -585
  1131. matrix_synapse-1.102.0rc1/synapse/handlers/ui_auth/checkers.py +0 -332
  1132. matrix_synapse-1.102.0rc1/synapse/handlers/user_directory.py +0 -761
  1133. matrix_synapse-1.102.0rc1/synapse/handlers/worker_lock.py +0 -344
  1134. matrix_synapse-1.102.0rc1/synapse/http/additional_resource.py +0 -62
  1135. matrix_synapse-1.102.0rc1/synapse/http/client.py +0 -1160
  1136. matrix_synapse-1.102.0rc1/synapse/http/connectproxyclient.py +0 -302
  1137. matrix_synapse-1.102.0rc1/synapse/http/federation/matrix_federation_agent.py +0 -459
  1138. matrix_synapse-1.102.0rc1/synapse/http/federation/srv_resolver.py +0 -196
  1139. matrix_synapse-1.102.0rc1/synapse/http/federation/well_known_resolver.py +0 -346
  1140. matrix_synapse-1.102.0rc1/synapse/http/matrixfederationclient.py +0 -1554
  1141. matrix_synapse-1.102.0rc1/synapse/http/proxy.py +0 -289
  1142. matrix_synapse-1.102.0rc1/synapse/http/proxyagent.py +0 -477
  1143. matrix_synapse-1.102.0rc1/synapse/http/replicationagent.py +0 -194
  1144. matrix_synapse-1.102.0rc1/synapse/http/request_metrics.py +0 -263
  1145. matrix_synapse-1.102.0rc1/synapse/http/server.py +0 -1036
  1146. matrix_synapse-1.102.0rc1/synapse/http/servlet.py +0 -927
  1147. matrix_synapse-1.102.0rc1/synapse/http/site.py +0 -692
  1148. matrix_synapse-1.102.0rc1/synapse/logging/_remote.py +0 -261
  1149. matrix_synapse-1.102.0rc1/synapse/logging/_terse_json.py +0 -94
  1150. matrix_synapse-1.102.0rc1/synapse/logging/context.py +0 -979
  1151. matrix_synapse-1.102.0rc1/synapse/logging/filter.py +0 -39
  1152. matrix_synapse-1.102.0rc1/synapse/logging/formatter.py +0 -63
  1153. matrix_synapse-1.102.0rc1/synapse/logging/handlers.py +0 -89
  1154. matrix_synapse-1.102.0rc1/synapse/logging/opentracing.py +0 -1105
  1155. matrix_synapse-1.102.0rc1/synapse/logging/scopecontextmanager.py +0 -178
  1156. matrix_synapse-1.102.0rc1/synapse/media/_base.py +0 -501
  1157. matrix_synapse-1.102.0rc1/synapse/media/filepath.py +0 -417
  1158. matrix_synapse-1.102.0rc1/synapse/media/media_repository.py +0 -1261
  1159. matrix_synapse-1.102.0rc1/synapse/media/media_storage.py +0 -405
  1160. matrix_synapse-1.102.0rc1/synapse/media/oembed.py +0 -277
  1161. matrix_synapse-1.102.0rc1/synapse/media/preview_html.py +0 -540
  1162. matrix_synapse-1.102.0rc1/synapse/media/storage_provider.py +0 -194
  1163. matrix_synapse-1.102.0rc1/synapse/media/thumbnailer.py +0 -233
  1164. matrix_synapse-1.102.0rc1/synapse/media/url_previewer.py +0 -866
  1165. matrix_synapse-1.102.0rc1/synapse/metrics/__init__.py +0 -486
  1166. matrix_synapse-1.102.0rc1/synapse/metrics/_gc.py +0 -211
  1167. matrix_synapse-1.102.0rc1/synapse/metrics/_reactor_metrics.py +0 -168
  1168. matrix_synapse-1.102.0rc1/synapse/metrics/_twisted_exposition.py +0 -45
  1169. matrix_synapse-1.102.0rc1/synapse/metrics/background_process_metrics.py +0 -382
  1170. matrix_synapse-1.102.0rc1/synapse/metrics/common_usage_metrics.py +0 -88
  1171. matrix_synapse-1.102.0rc1/synapse/metrics/jemalloc.py +0 -249
  1172. matrix_synapse-1.102.0rc1/synapse/module_api/__init__.py +0 -1959
  1173. matrix_synapse-1.102.0rc1/synapse/module_api/callbacks/__init__.py +0 -42
  1174. matrix_synapse-1.102.0rc1/synapse/module_api/callbacks/account_validity_callbacks.py +0 -106
  1175. matrix_synapse-1.102.0rc1/synapse/module_api/callbacks/spamchecker_callbacks.py +0 -884
  1176. matrix_synapse-1.102.0rc1/synapse/module_api/callbacks/third_party_event_rules_callbacks.py +0 -604
  1177. matrix_synapse-1.102.0rc1/synapse/notifier.py +0 -872
  1178. matrix_synapse-1.102.0rc1/synapse/push/__init__.py +0 -212
  1179. matrix_synapse-1.102.0rc1/synapse/push/bulk_push_rule_evaluator.py +0 -582
  1180. matrix_synapse-1.102.0rc1/synapse/push/clientformat.py +0 -126
  1181. matrix_synapse-1.102.0rc1/synapse/push/emailpusher.py +0 -331
  1182. matrix_synapse-1.102.0rc1/synapse/push/httppusher.py +0 -536
  1183. matrix_synapse-1.102.0rc1/synapse/push/mailer.py +0 -982
  1184. matrix_synapse-1.102.0rc1/synapse/push/presentable_names.py +0 -216
  1185. matrix_synapse-1.102.0rc1/synapse/push/push_tools.py +0 -105
  1186. matrix_synapse-1.102.0rc1/synapse/push/push_types.py +0 -143
  1187. matrix_synapse-1.102.0rc1/synapse/push/pusher.py +0 -87
  1188. matrix_synapse-1.102.0rc1/synapse/push/pusherpool.py +0 -474
  1189. matrix_synapse-1.102.0rc1/synapse/push/rulekinds.py +0 -29
  1190. matrix_synapse-1.102.0rc1/synapse/replication/http/__init__.py +0 -66
  1191. matrix_synapse-1.102.0rc1/synapse/replication/http/_base.py +0 -446
  1192. matrix_synapse-1.102.0rc1/synapse/replication/http/account_data.py +0 -297
  1193. matrix_synapse-1.102.0rc1/synapse/replication/http/devices.py +0 -170
  1194. matrix_synapse-1.102.0rc1/synapse/replication/http/federation.py +0 -323
  1195. matrix_synapse-1.102.0rc1/synapse/replication/http/login.py +0 -106
  1196. matrix_synapse-1.102.0rc1/synapse/replication/http/membership.py +0 -364
  1197. matrix_synapse-1.102.0rc1/synapse/replication/http/presence.py +0 -133
  1198. matrix_synapse-1.102.0rc1/synapse/replication/http/push.py +0 -81
  1199. matrix_synapse-1.102.0rc1/synapse/replication/http/register.py +0 -170
  1200. matrix_synapse-1.102.0rc1/synapse/replication/http/send_event.py +0 -161
  1201. matrix_synapse-1.102.0rc1/synapse/replication/http/send_events.py +0 -179
  1202. matrix_synapse-1.102.0rc1/synapse/replication/http/state.py +0 -82
  1203. matrix_synapse-1.102.0rc1/synapse/replication/http/streams.py +0 -101
  1204. matrix_synapse-1.102.0rc1/synapse/replication/tcp/client.py +0 -515
  1205. matrix_synapse-1.102.0rc1/synapse/replication/tcp/commands.py +0 -568
  1206. matrix_synapse-1.102.0rc1/synapse/replication/tcp/external_cache.py +0 -143
  1207. matrix_synapse-1.102.0rc1/synapse/replication/tcp/handler.py +0 -894
  1208. matrix_synapse-1.102.0rc1/synapse/replication/tcp/protocol.py +0 -561
  1209. matrix_synapse-1.102.0rc1/synapse/replication/tcp/redis.py +0 -463
  1210. matrix_synapse-1.102.0rc1/synapse/replication/tcp/resource.py +0 -335
  1211. matrix_synapse-1.102.0rc1/synapse/replication/tcp/streams/__init__.py +0 -91
  1212. matrix_synapse-1.102.0rc1/synapse/replication/tcp/streams/_base.py +0 -721
  1213. matrix_synapse-1.102.0rc1/synapse/replication/tcp/streams/events.py +0 -287
  1214. matrix_synapse-1.102.0rc1/synapse/replication/tcp/streams/federation.py +0 -92
  1215. matrix_synapse-1.102.0rc1/synapse/res/providers.json +0 -28
  1216. matrix_synapse-1.102.0rc1/synapse/rest/__init__.py +0 -158
  1217. matrix_synapse-1.102.0rc1/synapse/rest/admin/__init__.py +0 -353
  1218. matrix_synapse-1.102.0rc1/synapse/rest/admin/background_updates.py +0 -171
  1219. matrix_synapse-1.102.0rc1/synapse/rest/admin/devices.py +0 -212
  1220. matrix_synapse-1.102.0rc1/synapse/rest/admin/event_reports.py +0 -170
  1221. matrix_synapse-1.102.0rc1/synapse/rest/admin/experimental_features.py +0 -125
  1222. matrix_synapse-1.102.0rc1/synapse/rest/admin/federation.py +0 -271
  1223. matrix_synapse-1.102.0rc1/synapse/rest/admin/media.py +0 -510
  1224. matrix_synapse-1.102.0rc1/synapse/rest/admin/registration_tokens.py +0 -359
  1225. matrix_synapse-1.102.0rc1/synapse/rest/admin/rooms.py +0 -992
  1226. matrix_synapse-1.102.0rc1/synapse/rest/admin/server_notice_servlet.py +0 -132
  1227. matrix_synapse-1.102.0rc1/synapse/rest/admin/statistics.py +0 -158
  1228. matrix_synapse-1.102.0rc1/synapse/rest/admin/username_available.py +0 -58
  1229. matrix_synapse-1.102.0rc1/synapse/rest/admin/users.py +0 -1368
  1230. matrix_synapse-1.102.0rc1/synapse/rest/client/_base.py +0 -113
  1231. matrix_synapse-1.102.0rc1/synapse/rest/client/account.py +0 -921
  1232. matrix_synapse-1.102.0rc1/synapse/rest/client/account_data.py +0 -336
  1233. matrix_synapse-1.102.0rc1/synapse/rest/client/account_validity.py +0 -105
  1234. matrix_synapse-1.102.0rc1/synapse/rest/client/appservice_ping.py +0 -120
  1235. matrix_synapse-1.102.0rc1/synapse/rest/client/auth.py +0 -192
  1236. matrix_synapse-1.102.0rc1/synapse/rest/client/auth_issuer.py +0 -63
  1237. matrix_synapse-1.102.0rc1/synapse/rest/client/capabilities.py +0 -99
  1238. matrix_synapse-1.102.0rc1/synapse/rest/client/devices.py +0 -582
  1239. matrix_synapse-1.102.0rc1/synapse/rest/client/directory.py +0 -218
  1240. matrix_synapse-1.102.0rc1/synapse/rest/client/events.py +0 -115
  1241. matrix_synapse-1.102.0rc1/synapse/rest/client/filter.py +0 -112
  1242. matrix_synapse-1.102.0rc1/synapse/rest/client/initial_sync.py +0 -65
  1243. matrix_synapse-1.102.0rc1/synapse/rest/client/keys.py +0 -494
  1244. matrix_synapse-1.102.0rc1/synapse/rest/client/knock.py +0 -101
  1245. matrix_synapse-1.102.0rc1/synapse/rest/client/login.py +0 -740
  1246. matrix_synapse-1.102.0rc1/synapse/rest/client/login_token_request.py +0 -127
  1247. matrix_synapse-1.102.0rc1/synapse/rest/client/logout.py +0 -98
  1248. matrix_synapse-1.102.0rc1/synapse/rest/client/models.py +0 -99
  1249. matrix_synapse-1.102.0rc1/synapse/rest/client/mutual_rooms.py +0 -93
  1250. matrix_synapse-1.102.0rc1/synapse/rest/client/notifications.py +0 -121
  1251. matrix_synapse-1.102.0rc1/synapse/rest/client/openid.py +0 -109
  1252. matrix_synapse-1.102.0rc1/synapse/rest/client/password_policy.py +0 -69
  1253. matrix_synapse-1.102.0rc1/synapse/rest/client/presence.py +0 -111
  1254. matrix_synapse-1.102.0rc1/synapse/rest/client/profile.py +0 -219
  1255. matrix_synapse-1.102.0rc1/synapse/rest/client/push_rule.py +0 -318
  1256. matrix_synapse-1.102.0rc1/synapse/rest/client/pusher.py +0 -174
  1257. matrix_synapse-1.102.0rc1/synapse/rest/client/read_marker.py +0 -104
  1258. matrix_synapse-1.102.0rc1/synapse/rest/client/receipts.py +0 -167
  1259. matrix_synapse-1.102.0rc1/synapse/rest/client/register.py +0 -1038
  1260. matrix_synapse-1.102.0rc1/synapse/rest/client/relations.py +0 -142
  1261. matrix_synapse-1.102.0rc1/synapse/rest/client/rendezvous.py +0 -81
  1262. matrix_synapse-1.102.0rc1/synapse/rest/client/report_event.py +0 -99
  1263. matrix_synapse-1.102.0rc1/synapse/rest/client/room.py +0 -1522
  1264. matrix_synapse-1.102.0rc1/synapse/rest/client/room_keys.py +0 -426
  1265. matrix_synapse-1.102.0rc1/synapse/rest/client/room_upgrade_rest_servlet.py +0 -106
  1266. matrix_synapse-1.102.0rc1/synapse/rest/client/sendtodevice.py +0 -85
  1267. matrix_synapse-1.102.0rc1/synapse/rest/client/sync.py +0 -557
  1268. matrix_synapse-1.102.0rc1/synapse/rest/client/tags.py +0 -109
  1269. matrix_synapse-1.102.0rc1/synapse/rest/client/thirdparty.py +0 -130
  1270. matrix_synapse-1.102.0rc1/synapse/rest/client/transactions.py +0 -148
  1271. matrix_synapse-1.102.0rc1/synapse/rest/client/user_directory.py +0 -90
  1272. matrix_synapse-1.102.0rc1/synapse/rest/client/versions.py +0 -148
  1273. matrix_synapse-1.102.0rc1/synapse/rest/client/voip.py +0 -88
  1274. matrix_synapse-1.102.0rc1/synapse/rest/consent/consent_resource.py +0 -210
  1275. matrix_synapse-1.102.0rc1/synapse/rest/key/v2/local_key_resource.py +0 -125
  1276. matrix_synapse-1.102.0rc1/synapse/rest/key/v2/remote_key_resource.py +0 -309
  1277. matrix_synapse-1.102.0rc1/synapse/rest/media/config_resource.py +0 -46
  1278. matrix_synapse-1.102.0rc1/synapse/rest/media/download_resource.py +0 -102
  1279. matrix_synapse-1.102.0rc1/synapse/rest/media/preview_url_resource.py +0 -80
  1280. matrix_synapse-1.102.0rc1/synapse/rest/media/thumbnail_resource.py +0 -580
  1281. matrix_synapse-1.102.0rc1/synapse/rest/media/upload_resource.py +0 -173
  1282. matrix_synapse-1.102.0rc1/synapse/rest/models.py +0 -50
  1283. matrix_synapse-1.102.0rc1/synapse/rest/synapse/client/__init__.py +0 -82
  1284. matrix_synapse-1.102.0rc1/synapse/rest/synapse/client/jwks.py +0 -77
  1285. matrix_synapse-1.102.0rc1/synapse/rest/synapse/client/new_user_consent.py +0 -115
  1286. matrix_synapse-1.102.0rc1/synapse/rest/synapse/client/oidc/backchannel_logout_resource.py +0 -42
  1287. matrix_synapse-1.102.0rc1/synapse/rest/synapse/client/oidc/callback_resource.py +0 -48
  1288. matrix_synapse-1.102.0rc1/synapse/rest/synapse/client/password_reset.py +0 -129
  1289. matrix_synapse-1.102.0rc1/synapse/rest/synapse/client/pick_idp.py +0 -90
  1290. matrix_synapse-1.102.0rc1/synapse/rest/synapse/client/pick_username.py +0 -151
  1291. matrix_synapse-1.102.0rc1/synapse/rest/synapse/client/saml2/response_resource.py +0 -52
  1292. matrix_synapse-1.102.0rc1/synapse/rest/synapse/client/sso_register.py +0 -56
  1293. matrix_synapse-1.102.0rc1/synapse/rest/synapse/client/unsubscribe.py +0 -88
  1294. matrix_synapse-1.102.0rc1/synapse/rest/well_known.py +0 -135
  1295. matrix_synapse-1.102.0rc1/synapse/server.py +0 -929
  1296. matrix_synapse-1.102.0rc1/synapse/server_notices/consent_server_notices.py +0 -136
  1297. matrix_synapse-1.102.0rc1/synapse/server_notices/resource_limits_server_notices.py +0 -213
  1298. matrix_synapse-1.102.0rc1/synapse/server_notices/server_notices_manager.py +0 -387
  1299. matrix_synapse-1.102.0rc1/synapse/state/__init__.py +0 -923
  1300. matrix_synapse-1.102.0rc1/synapse/state/v1.py +0 -374
  1301. matrix_synapse-1.102.0rc1/synapse/state/v2.py +0 -850
  1302. matrix_synapse-1.102.0rc1/synapse/storage/_base.py +0 -224
  1303. matrix_synapse-1.102.0rc1/synapse/storage/background_updates.py +0 -1163
  1304. matrix_synapse-1.102.0rc1/synapse/storage/controllers/persist_events.py +0 -1174
  1305. matrix_synapse-1.102.0rc1/synapse/storage/controllers/purge_events.py +0 -123
  1306. matrix_synapse-1.102.0rc1/synapse/storage/controllers/state.py +0 -818
  1307. matrix_synapse-1.102.0rc1/synapse/storage/controllers/stats.py +0 -119
  1308. matrix_synapse-1.102.0rc1/synapse/storage/database.py +0 -2574
  1309. matrix_synapse-1.102.0rc1/synapse/storage/databases/__init__.py +0 -145
  1310. matrix_synapse-1.102.0rc1/synapse/storage/databases/main/__init__.py +0 -409
  1311. matrix_synapse-1.102.0rc1/synapse/storage/databases/main/account_data.py +0 -990
  1312. matrix_synapse-1.102.0rc1/synapse/storage/databases/main/appservice.py +0 -469
  1313. matrix_synapse-1.102.0rc1/synapse/storage/databases/main/cache.py +0 -768
  1314. matrix_synapse-1.102.0rc1/synapse/storage/databases/main/censor_events.py +0 -225
  1315. matrix_synapse-1.102.0rc1/synapse/storage/databases/main/client_ips.py +0 -811
  1316. matrix_synapse-1.102.0rc1/synapse/storage/databases/main/deviceinbox.py +0 -1099
  1317. matrix_synapse-1.102.0rc1/synapse/storage/databases/main/devices.py +0 -2345
  1318. matrix_synapse-1.102.0rc1/synapse/storage/databases/main/directory.py +0 -212
  1319. matrix_synapse-1.102.0rc1/synapse/storage/databases/main/e2e_room_keys.py +0 -689
  1320. matrix_synapse-1.102.0rc1/synapse/storage/databases/main/end_to_end_keys.py +0 -1729
  1321. matrix_synapse-1.102.0rc1/synapse/storage/databases/main/event_federation.py +0 -2207
  1322. matrix_synapse-1.102.0rc1/synapse/storage/databases/main/event_push_actions.py +0 -1907
  1323. matrix_synapse-1.102.0rc1/synapse/storage/databases/main/events.py +0 -2510
  1324. matrix_synapse-1.102.0rc1/synapse/storage/databases/main/events_bg_updates.py +0 -1508
  1325. matrix_synapse-1.102.0rc1/synapse/storage/databases/main/events_forward_extremities.py +0 -126
  1326. matrix_synapse-1.102.0rc1/synapse/storage/databases/main/events_worker.py +0 -2472
  1327. matrix_synapse-1.102.0rc1/synapse/storage/databases/main/experimental_features.py +0 -84
  1328. matrix_synapse-1.102.0rc1/synapse/storage/databases/main/filtering.py +0 -231
  1329. matrix_synapse-1.102.0rc1/synapse/storage/databases/main/keys.py +0 -291
  1330. matrix_synapse-1.102.0rc1/synapse/storage/databases/main/lock.py +0 -512
  1331. matrix_synapse-1.102.0rc1/synapse/storage/databases/main/media_repository.py +0 -922
  1332. matrix_synapse-1.102.0rc1/synapse/storage/databases/main/metrics.py +0 -456
  1333. matrix_synapse-1.102.0rc1/synapse/storage/databases/main/monthly_active_users.py +0 -444
  1334. matrix_synapse-1.102.0rc1/synapse/storage/databases/main/presence.py +0 -519
  1335. matrix_synapse-1.102.0rc1/synapse/storage/databases/main/profile.py +0 -227
  1336. matrix_synapse-1.102.0rc1/synapse/storage/databases/main/purge_events.py +0 -508
  1337. matrix_synapse-1.102.0rc1/synapse/storage/databases/main/push_rule.py +0 -946
  1338. matrix_synapse-1.102.0rc1/synapse/storage/databases/main/pusher.py +0 -786
  1339. matrix_synapse-1.102.0rc1/synapse/storage/databases/main/receipts.py +0 -1152
  1340. matrix_synapse-1.102.0rc1/synapse/storage/databases/main/registration.py +0 -2944
  1341. matrix_synapse-1.102.0rc1/synapse/storage/databases/main/relations.py +0 -1132
  1342. matrix_synapse-1.102.0rc1/synapse/storage/databases/main/room.py +0 -2568
  1343. matrix_synapse-1.102.0rc1/synapse/storage/databases/main/roommember.py +0 -1558
  1344. matrix_synapse-1.102.0rc1/synapse/storage/databases/main/search.py +0 -926
  1345. matrix_synapse-1.102.0rc1/synapse/storage/databases/main/session.py +0 -151
  1346. matrix_synapse-1.102.0rc1/synapse/storage/databases/main/signatures.py +0 -94
  1347. matrix_synapse-1.102.0rc1/synapse/storage/databases/main/state.py +0 -789
  1348. matrix_synapse-1.102.0rc1/synapse/storage/databases/main/state_deltas.py +0 -158
  1349. matrix_synapse-1.102.0rc1/synapse/storage/databases/main/stats.py +0 -793
  1350. matrix_synapse-1.102.0rc1/synapse/storage/databases/main/stream.py +0 -1642
  1351. matrix_synapse-1.102.0rc1/synapse/storage/databases/main/tags.py +0 -304
  1352. matrix_synapse-1.102.0rc1/synapse/storage/databases/main/task_scheduler.py +0 -225
  1353. matrix_synapse-1.102.0rc1/synapse/storage/databases/main/transactions.py +0 -621
  1354. matrix_synapse-1.102.0rc1/synapse/storage/databases/main/ui_auth.py +0 -419
  1355. matrix_synapse-1.102.0rc1/synapse/storage/databases/main/user_directory.py +0 -1315
  1356. matrix_synapse-1.102.0rc1/synapse/storage/databases/main/user_erasure_store.py +0 -115
  1357. matrix_synapse-1.102.0rc1/synapse/storage/databases/state/bg_updates.py +0 -526
  1358. matrix_synapse-1.102.0rc1/synapse/storage/databases/state/store.py +0 -898
  1359. matrix_synapse-1.102.0rc1/synapse/storage/engines/_base.py +0 -162
  1360. matrix_synapse-1.102.0rc1/synapse/storage/engines/postgres.py +0 -253
  1361. matrix_synapse-1.102.0rc1/synapse/storage/engines/sqlite.py +0 -198
  1362. matrix_synapse-1.102.0rc1/synapse/storage/prepare_database.py +0 -733
  1363. matrix_synapse-1.102.0rc1/synapse/storage/roommember.py +0 -61
  1364. matrix_synapse-1.102.0rc1/synapse/storage/schema/__init__.py +0 -146
  1365. matrix_synapse-1.102.0rc1/synapse/storage/schema/main/delta/25/fts.py +0 -82
  1366. matrix_synapse-1.102.0rc1/synapse/storage/schema/main/delta/27/ts.py +0 -62
  1367. matrix_synapse-1.102.0rc1/synapse/storage/schema/main/delta/30/as_users.py +0 -79
  1368. matrix_synapse-1.102.0rc1/synapse/storage/schema/main/delta/31/search_update.py +0 -66
  1369. matrix_synapse-1.102.0rc1/synapse/storage/schema/main/delta/33/event_fields.py +0 -62
  1370. matrix_synapse-1.102.0rc1/synapse/storage/schema/main/delta/42/current_state_delta.sql +0 -45
  1371. matrix_synapse-1.102.0rc1/synapse/storage/schema/main/delta/56/unique_user_filter_index.py +0 -48
  1372. matrix_synapse-1.102.0rc1/synapse/storage/schema/main/delta/61/03recreate_min_depth.py +0 -73
  1373. matrix_synapse-1.102.0rc1/synapse/storage/schema/main/delta/68/05partial_state_rooms_triggers.py +0 -79
  1374. matrix_synapse-1.102.0rc1/synapse/storage/schema/main/delta/72/07force_update_current_state_events_membership.py +0 -66
  1375. matrix_synapse-1.102.0rc1/synapse/storage/schema/main/delta/74/04_membership_tables_event_stream_ordering_triggers.py +0 -86
  1376. matrix_synapse-1.102.0rc1/synapse/storage/schema/main/delta/78/03event_extremities_constraints.py +0 -64
  1377. matrix_synapse-1.102.0rc1/synapse/storage/types.py +0 -211
  1378. matrix_synapse-1.102.0rc1/synapse/storage/util/id_generators.py +0 -1007
  1379. matrix_synapse-1.102.0rc1/synapse/storage/util/partial_state_events_tracker.py +0 -194
  1380. matrix_synapse-1.102.0rc1/synapse/storage/util/sequence.py +0 -298
  1381. matrix_synapse-1.102.0rc1/synapse/streams/__init__.py +0 -43
  1382. matrix_synapse-1.102.0rc1/synapse/streams/config.py +0 -95
  1383. matrix_synapse-1.102.0rc1/synapse/streams/events.py +0 -129
  1384. matrix_synapse-1.102.0rc1/synapse/synapse_rust/acl.pyi +0 -22
  1385. matrix_synapse-1.102.0rc1/synapse/synapse_rust/events.pyi +0 -106
  1386. matrix_synapse-1.102.0rc1/synapse/synapse_rust/push.pyi +0 -77
  1387. matrix_synapse-1.102.0rc1/synapse/types/__init__.py +0 -1225
  1388. matrix_synapse-1.102.0rc1/synapse/types/state.py +0 -618
  1389. matrix_synapse-1.102.0rc1/synapse/util/__init__.py +0 -215
  1390. matrix_synapse-1.102.0rc1/synapse/util/async_helpers.py +0 -903
  1391. matrix_synapse-1.102.0rc1/synapse/util/batching_queue.py +0 -184
  1392. matrix_synapse-1.102.0rc1/synapse/util/caches/__init__.py +0 -269
  1393. matrix_synapse-1.102.0rc1/synapse/util/caches/deferred_cache.py +0 -521
  1394. matrix_synapse-1.102.0rc1/synapse/util/caches/descriptors.py +0 -663
  1395. matrix_synapse-1.102.0rc1/synapse/util/caches/dictionary_cache.py +0 -330
  1396. matrix_synapse-1.102.0rc1/synapse/util/caches/expiringcache.py +0 -232
  1397. matrix_synapse-1.102.0rc1/synapse/util/caches/lrucache.py +0 -938
  1398. matrix_synapse-1.102.0rc1/synapse/util/caches/response_cache.py +0 -284
  1399. matrix_synapse-1.102.0rc1/synapse/util/caches/stream_change_cache.py +0 -323
  1400. matrix_synapse-1.102.0rc1/synapse/util/caches/ttlcache.py +0 -177
  1401. matrix_synapse-1.102.0rc1/synapse/util/check_dependencies.py +0 -216
  1402. matrix_synapse-1.102.0rc1/synapse/util/daemonize.py +0 -149
  1403. matrix_synapse-1.102.0rc1/synapse/util/distributor.py +0 -149
  1404. matrix_synapse-1.102.0rc1/synapse/util/gai_resolver.py +0 -183
  1405. matrix_synapse-1.102.0rc1/synapse/util/httpresourcetree.py +0 -109
  1406. matrix_synapse-1.102.0rc1/synapse/util/iterutils.py +0 -195
  1407. matrix_synapse-1.102.0rc1/synapse/util/linked_list.py +0 -157
  1408. matrix_synapse-1.102.0rc1/synapse/util/macaroons.py +0 -325
  1409. matrix_synapse-1.102.0rc1/synapse/util/manhole.py +0 -191
  1410. matrix_synapse-1.102.0rc1/synapse/util/metrics.py +0 -247
  1411. matrix_synapse-1.102.0rc1/synapse/util/module_loader.py +0 -116
  1412. matrix_synapse-1.102.0rc1/synapse/util/msisdn.py +0 -51
  1413. matrix_synapse-1.102.0rc1/synapse/util/patch_inline_callbacks.py +0 -243
  1414. matrix_synapse-1.102.0rc1/synapse/util/ratelimitutils.py +0 -397
  1415. matrix_synapse-1.102.0rc1/synapse/util/retryutils.py +0 -321
  1416. matrix_synapse-1.102.0rc1/synapse/util/rust.py +0 -91
  1417. matrix_synapse-1.102.0rc1/synapse/util/stringutils.py +0 -264
  1418. matrix_synapse-1.102.0rc1/synapse/util/task_scheduler.py +0 -405
  1419. matrix_synapse-1.102.0rc1/synapse/util/wheel_timer.py +0 -114
  1420. matrix_synapse-1.102.0rc1/synapse/visibility.py +0 -820
  1421. matrix_synapse-1.102.0rc1/synmark/__init__.py +0 -45
  1422. matrix_synapse-1.102.0rc1/synmark/__main__.py +0 -121
  1423. matrix_synapse-1.102.0rc1/synmark/suites/logging.py +0 -152
  1424. matrix_synapse-1.102.0rc1/synmark/suites/lrucache.py +0 -41
  1425. matrix_synapse-1.102.0rc1/synmark/suites/lrucache_evict.py +0 -42
  1426. matrix_synapse-1.102.0rc1/tests/api/test_auth.py +0 -536
  1427. matrix_synapse-1.102.0rc1/tests/api/test_errors.py +0 -50
  1428. matrix_synapse-1.102.0rc1/tests/api/test_filtering.py +0 -623
  1429. matrix_synapse-1.102.0rc1/tests/api/test_ratelimiting.py +0 -443
  1430. matrix_synapse-1.102.0rc1/tests/app/test_homeserver_start.py +0 -40
  1431. matrix_synapse-1.102.0rc1/tests/app/test_openid_listener.py +0 -140
  1432. matrix_synapse-1.102.0rc1/tests/app/test_phone_stats_home.py +0 -248
  1433. matrix_synapse-1.102.0rc1/tests/appservice/test_api.py +0 -255
  1434. matrix_synapse-1.102.0rc1/tests/appservice/test_appservice.py +0 -258
  1435. matrix_synapse-1.102.0rc1/tests/appservice/test_scheduler.py +0 -432
  1436. matrix_synapse-1.102.0rc1/tests/config/test_api.py +0 -145
  1437. matrix_synapse-1.102.0rc1/tests/config/test_appservice.py +0 -47
  1438. matrix_synapse-1.102.0rc1/tests/config/test_cache.py +0 -174
  1439. matrix_synapse-1.102.0rc1/tests/config/test_database.py +0 -39
  1440. matrix_synapse-1.102.0rc1/tests/config/test_load.py +0 -118
  1441. matrix_synapse-1.102.0rc1/tests/config/test_oauth_delegation.py +0 -277
  1442. matrix_synapse-1.102.0rc1/tests/config/test_registration_config.py +0 -115
  1443. matrix_synapse-1.102.0rc1/tests/config/test_room_directory.py +0 -202
  1444. matrix_synapse-1.102.0rc1/tests/config/test_server.py +0 -194
  1445. matrix_synapse-1.102.0rc1/tests/config/test_workers.py +0 -332
  1446. matrix_synapse-1.102.0rc1/tests/config/utils.py +0 -66
  1447. matrix_synapse-1.102.0rc1/tests/crypto/test_event_signing.py +0 -111
  1448. matrix_synapse-1.102.0rc1/tests/crypto/test_keyring.py +0 -726
  1449. matrix_synapse-1.102.0rc1/tests/events/test_presence_router.py +0 -528
  1450. matrix_synapse-1.102.0rc1/tests/events/test_snapshot.py +0 -121
  1451. matrix_synapse-1.102.0rc1/tests/events/test_utils.py +0 -845
  1452. matrix_synapse-1.102.0rc1/tests/federation/test_complexity.py +0 -255
  1453. matrix_synapse-1.102.0rc1/tests/federation/test_federation_catch_up.py +0 -582
  1454. matrix_synapse-1.102.0rc1/tests/federation/test_federation_client.py +0 -316
  1455. matrix_synapse-1.102.0rc1/tests/federation/test_federation_sender.py +0 -771
  1456. matrix_synapse-1.102.0rc1/tests/federation/test_federation_server.py +0 -350
  1457. matrix_synapse-1.102.0rc1/tests/federation/transport/server/test__base.py +0 -149
  1458. matrix_synapse-1.102.0rc1/tests/federation/transport/test_client.py +0 -158
  1459. matrix_synapse-1.102.0rc1/tests/federation/transport/test_knocking.py +0 -323
  1460. matrix_synapse-1.102.0rc1/tests/federation/transport/test_server.py +0 -67
  1461. matrix_synapse-1.102.0rc1/tests/handlers/test_admin.py +0 -361
  1462. matrix_synapse-1.102.0rc1/tests/handlers/test_appservice.py +0 -1298
  1463. matrix_synapse-1.102.0rc1/tests/handlers/test_auth.py +0 -249
  1464. matrix_synapse-1.102.0rc1/tests/handlers/test_cas.py +0 -239
  1465. matrix_synapse-1.102.0rc1/tests/handlers/test_deactivate_account.py +0 -343
  1466. matrix_synapse-1.102.0rc1/tests/handlers/test_device.py +0 -639
  1467. matrix_synapse-1.102.0rc1/tests/handlers/test_directory.py +0 -612
  1468. matrix_synapse-1.102.0rc1/tests/handlers/test_e2e_keys.py +0 -1657
  1469. matrix_synapse-1.102.0rc1/tests/handlers/test_e2e_room_keys.py +0 -570
  1470. matrix_synapse-1.102.0rc1/tests/handlers/test_federation.py +0 -794
  1471. matrix_synapse-1.102.0rc1/tests/handlers/test_federation_event.py +0 -1148
  1472. matrix_synapse-1.102.0rc1/tests/handlers/test_message.py +0 -339
  1473. matrix_synapse-1.102.0rc1/tests/handlers/test_oauth_delegation.py +0 -795
  1474. matrix_synapse-1.102.0rc1/tests/handlers/test_oidc.py +0 -1405
  1475. matrix_synapse-1.102.0rc1/tests/handlers/test_password_providers.py +0 -987
  1476. matrix_synapse-1.102.0rc1/tests/handlers/test_presence.py +0 -1968
  1477. matrix_synapse-1.102.0rc1/tests/handlers/test_profile.py +0 -400
  1478. matrix_synapse-1.102.0rc1/tests/handlers/test_receipts.py +0 -343
  1479. matrix_synapse-1.102.0rc1/tests/handlers/test_register.py +0 -822
  1480. matrix_synapse-1.102.0rc1/tests/handlers/test_room_list.py +0 -88
  1481. matrix_synapse-1.102.0rc1/tests/handlers/test_room_member.py +0 -405
  1482. matrix_synapse-1.102.0rc1/tests/handlers/test_room_summary.py +0 -1139
  1483. matrix_synapse-1.102.0rc1/tests/handlers/test_saml.py +0 -381
  1484. matrix_synapse-1.102.0rc1/tests/handlers/test_send_email.py +0 -230
  1485. matrix_synapse-1.102.0rc1/tests/handlers/test_sso.py +0 -152
  1486. matrix_synapse-1.102.0rc1/tests/handlers/test_stats.py +0 -594
  1487. matrix_synapse-1.102.0rc1/tests/handlers/test_sync.py +0 -304
  1488. matrix_synapse-1.102.0rc1/tests/handlers/test_typing.py +0 -503
  1489. matrix_synapse-1.102.0rc1/tests/handlers/test_user_directory.py +0 -1297
  1490. matrix_synapse-1.102.0rc1/tests/handlers/test_worker_lock.py +0 -81
  1491. matrix_synapse-1.102.0rc1/tests/http/__init__.py +0 -197
  1492. matrix_synapse-1.102.0rc1/tests/http/federation/test_matrix_federation_agent.py +0 -1837
  1493. matrix_synapse-1.102.0rc1/tests/http/federation/test_srv_resolver.py +0 -223
  1494. matrix_synapse-1.102.0rc1/tests/http/server/_base.py +0 -568
  1495. matrix_synapse-1.102.0rc1/tests/http/test_client.py +0 -258
  1496. matrix_synapse-1.102.0rc1/tests/http/test_matrixfederationclient.py +0 -943
  1497. matrix_synapse-1.102.0rc1/tests/http/test_proxy.py +0 -60
  1498. matrix_synapse-1.102.0rc1/tests/http/test_proxyagent.py +0 -896
  1499. matrix_synapse-1.102.0rc1/tests/http/test_servlet.py +0 -145
  1500. matrix_synapse-1.102.0rc1/tests/http/test_simple_client.py +0 -188
  1501. matrix_synapse-1.102.0rc1/tests/http/test_site.py +0 -92
  1502. matrix_synapse-1.102.0rc1/tests/logging/test_opentracing.py +0 -307
  1503. matrix_synapse-1.102.0rc1/tests/logging/test_remote_handler.py +0 -185
  1504. matrix_synapse-1.102.0rc1/tests/logging/test_terse_json.py +0 -242
  1505. matrix_synapse-1.102.0rc1/tests/media/test_media_retention.py +0 -301
  1506. matrix_synapse-1.102.0rc1/tests/media/test_media_storage.py +0 -881
  1507. matrix_synapse-1.102.0rc1/tests/media/test_oembed.py +0 -169
  1508. matrix_synapse-1.102.0rc1/tests/media/test_url_previewer.py +0 -120
  1509. matrix_synapse-1.102.0rc1/tests/metrics/test_background_process_metrics.py +0 -19
  1510. matrix_synapse-1.102.0rc1/tests/metrics/test_metrics.py +0 -214
  1511. matrix_synapse-1.102.0rc1/tests/module_api/test_account_data_manager.py +0 -169
  1512. matrix_synapse-1.102.0rc1/tests/module_api/test_api.py +0 -1035
  1513. matrix_synapse-1.102.0rc1/tests/module_api/test_event_unsigned_addition.py +0 -66
  1514. matrix_synapse-1.102.0rc1/tests/push/test_bulk_push_rule_evaluator.py +0 -446
  1515. matrix_synapse-1.102.0rc1/tests/push/test_email.py +0 -546
  1516. matrix_synapse-1.102.0rc1/tests/push/test_http.py +0 -1007
  1517. matrix_synapse-1.102.0rc1/tests/push/test_presentable_names.py +0 -238
  1518. matrix_synapse-1.102.0rc1/tests/push/test_push_rule_evaluator.py +0 -957
  1519. matrix_synapse-1.102.0rc1/tests/replication/_base.py +0 -609
  1520. matrix_synapse-1.102.0rc1/tests/replication/http/test__base.py +0 -113
  1521. matrix_synapse-1.102.0rc1/tests/replication/storage/_base.py +0 -85
  1522. matrix_synapse-1.102.0rc1/tests/replication/storage/test_events.py +0 -414
  1523. matrix_synapse-1.102.0rc1/tests/replication/tcp/streams/test_account_data.py +0 -116
  1524. matrix_synapse-1.102.0rc1/tests/replication/tcp/streams/test_events.py +0 -528
  1525. matrix_synapse-1.102.0rc1/tests/replication/tcp/streams/test_federation.py +0 -85
  1526. matrix_synapse-1.102.0rc1/tests/replication/tcp/streams/test_receipts.py +0 -100
  1527. matrix_synapse-1.102.0rc1/tests/replication/tcp/streams/test_to_device.py +0 -96
  1528. matrix_synapse-1.102.0rc1/tests/replication/tcp/streams/test_typing.py +0 -171
  1529. matrix_synapse-1.102.0rc1/tests/replication/test_auth.py +0 -120
  1530. matrix_synapse-1.102.0rc1/tests/replication/test_federation_ack.py +0 -88
  1531. matrix_synapse-1.102.0rc1/tests/replication/test_federation_sender_shard.py +0 -277
  1532. matrix_synapse-1.102.0rc1/tests/replication/test_module_cache_invalidation.py +0 -86
  1533. matrix_synapse-1.102.0rc1/tests/replication/test_multi_media_repo.py +0 -260
  1534. matrix_synapse-1.102.0rc1/tests/replication/test_pusher_shard.py +0 -192
  1535. matrix_synapse-1.102.0rc1/tests/replication/test_sharded_event_persister.py +0 -332
  1536. matrix_synapse-1.102.0rc1/tests/replication/test_sharded_receipts.py +0 -250
  1537. matrix_synapse-1.102.0rc1/tests/rest/admin/test_admin.py +0 -482
  1538. matrix_synapse-1.102.0rc1/tests/rest/admin/test_background_updates.py +0 -374
  1539. matrix_synapse-1.102.0rc1/tests/rest/admin/test_device.py +0 -545
  1540. matrix_synapse-1.102.0rc1/tests/rest/admin/test_event_reports.py +0 -747
  1541. matrix_synapse-1.102.0rc1/tests/rest/admin/test_federation.py +0 -803
  1542. matrix_synapse-1.102.0rc1/tests/rest/admin/test_jwks.py +0 -107
  1543. matrix_synapse-1.102.0rc1/tests/rest/admin/test_media.py +0 -875
  1544. matrix_synapse-1.102.0rc1/tests/rest/admin/test_registration_tokens.py +0 -730
  1545. matrix_synapse-1.102.0rc1/tests/rest/admin/test_room.py +0 -2918
  1546. matrix_synapse-1.102.0rc1/tests/rest/admin/test_server_notice.py +0 -759
  1547. matrix_synapse-1.102.0rc1/tests/rest/admin/test_statistics.py +0 -524
  1548. matrix_synapse-1.102.0rc1/tests/rest/admin/test_user.py +0 -4957
  1549. matrix_synapse-1.102.0rc1/tests/rest/admin/test_username_available.py +0 -83
  1550. matrix_synapse-1.102.0rc1/tests/rest/client/test_account.py +0 -1520
  1551. matrix_synapse-1.102.0rc1/tests/rest/client/test_auth.py +0 -1508
  1552. matrix_synapse-1.102.0rc1/tests/rest/client/test_auth_issuer.py +0 -59
  1553. matrix_synapse-1.102.0rc1/tests/rest/client/test_capabilities.py +0 -222
  1554. matrix_synapse-1.102.0rc1/tests/rest/client/test_consent.py +0 -138
  1555. matrix_synapse-1.102.0rc1/tests/rest/client/test_devices.py +0 -597
  1556. matrix_synapse-1.102.0rc1/tests/rest/client/test_directory.py +0 -249
  1557. matrix_synapse-1.102.0rc1/tests/rest/client/test_ephemeral_message.py +0 -113
  1558. matrix_synapse-1.102.0rc1/tests/rest/client/test_events.py +0 -165
  1559. matrix_synapse-1.102.0rc1/tests/rest/client/test_filter.py +0 -124
  1560. matrix_synapse-1.102.0rc1/tests/rest/client/test_identity.py +0 -67
  1561. matrix_synapse-1.102.0rc1/tests/rest/client/test_keys.py +0 -446
  1562. matrix_synapse-1.102.0rc1/tests/rest/client/test_login.py +0 -1542
  1563. matrix_synapse-1.102.0rc1/tests/rest/client/test_login_token_request.py +0 -175
  1564. matrix_synapse-1.102.0rc1/tests/rest/client/test_models.py +0 -89
  1565. matrix_synapse-1.102.0rc1/tests/rest/client/test_mutual_rooms.py +0 -153
  1566. matrix_synapse-1.102.0rc1/tests/rest/client/test_notifications.py +0 -97
  1567. matrix_synapse-1.102.0rc1/tests/rest/client/test_password_policy.py +0 -186
  1568. matrix_synapse-1.102.0rc1/tests/rest/client/test_power_levels.py +0 -295
  1569. matrix_synapse-1.102.0rc1/tests/rest/client/test_presence.py +0 -97
  1570. matrix_synapse-1.102.0rc1/tests/rest/client/test_profile.py +0 -626
  1571. matrix_synapse-1.102.0rc1/tests/rest/client/test_push_rule_attrs.py +0 -488
  1572. matrix_synapse-1.102.0rc1/tests/rest/client/test_read_marker.py +0 -151
  1573. matrix_synapse-1.102.0rc1/tests/rest/client/test_receipts.py +0 -288
  1574. matrix_synapse-1.102.0rc1/tests/rest/client/test_redactions.py +0 -658
  1575. matrix_synapse-1.102.0rc1/tests/rest/client/test_register.py +0 -1250
  1576. matrix_synapse-1.102.0rc1/tests/rest/client/test_relations.py +0 -1957
  1577. matrix_synapse-1.102.0rc1/tests/rest/client/test_rendezvous.py +0 -51
  1578. matrix_synapse-1.102.0rc1/tests/rest/client/test_report_event.py +0 -141
  1579. matrix_synapse-1.102.0rc1/tests/rest/client/test_retention.py +0 -385
  1580. matrix_synapse-1.102.0rc1/tests/rest/client/test_rooms.py +0 -3688
  1581. matrix_synapse-1.102.0rc1/tests/rest/client/test_sendtodevice.py +0 -248
  1582. matrix_synapse-1.102.0rc1/tests/rest/client/test_shadow_banned.py +0 -335
  1583. matrix_synapse-1.102.0rc1/tests/rest/client/test_sync.py +0 -827
  1584. matrix_synapse-1.102.0rc1/tests/rest/client/test_third_party_rules.py +0 -1076
  1585. matrix_synapse-1.102.0rc1/tests/rest/client/test_transactions.py +0 -197
  1586. matrix_synapse-1.102.0rc1/tests/rest/client/test_typing.py +0 -114
  1587. matrix_synapse-1.102.0rc1/tests/rest/client/test_upgrade_room.py +0 -413
  1588. matrix_synapse-1.102.0rc1/tests/rest/client/utils.py +0 -939
  1589. matrix_synapse-1.102.0rc1/tests/rest/key/v2/test_remote_key_resource.py +0 -282
  1590. matrix_synapse-1.102.0rc1/tests/rest/media/test_domain_blocking.py +0 -146
  1591. matrix_synapse-1.102.0rc1/tests/rest/media/test_url_preview.py +0 -1442
  1592. matrix_synapse-1.102.0rc1/tests/rest/test_well_known.py +0 -139
  1593. matrix_synapse-1.102.0rc1/tests/scripts/test_new_matrix_user.py +0 -173
  1594. matrix_synapse-1.102.0rc1/tests/server.py +0 -1153
  1595. matrix_synapse-1.102.0rc1/tests/server_notices/test_consent.py +0 -111
  1596. matrix_synapse-1.102.0rc1/tests/server_notices/test_resource_limits_server_notices.py +0 -410
  1597. matrix_synapse-1.102.0rc1/tests/state/test_v2.py +0 -938
  1598. matrix_synapse-1.102.0rc1/tests/storage/databases/main/test_deviceinbox.py +0 -174
  1599. matrix_synapse-1.102.0rc1/tests/storage/databases/main/test_end_to_end_keys.py +0 -128
  1600. matrix_synapse-1.102.0rc1/tests/storage/databases/main/test_events_worker.py +0 -542
  1601. matrix_synapse-1.102.0rc1/tests/storage/databases/main/test_lock.py +0 -512
  1602. matrix_synapse-1.102.0rc1/tests/storage/databases/main/test_receipts.py +0 -218
  1603. matrix_synapse-1.102.0rc1/tests/storage/databases/main/test_room.py +0 -192
  1604. matrix_synapse-1.102.0rc1/tests/storage/test__base.py +0 -160
  1605. matrix_synapse-1.102.0rc1/tests/storage/test_account_data.py +0 -171
  1606. matrix_synapse-1.102.0rc1/tests/storage/test_appservice.py +0 -536
  1607. matrix_synapse-1.102.0rc1/tests/storage/test_background_update.py +0 -670
  1608. matrix_synapse-1.102.0rc1/tests/storage/test_base.py +0 -813
  1609. matrix_synapse-1.102.0rc1/tests/storage/test_cleanup_extrems.py +0 -396
  1610. matrix_synapse-1.102.0rc1/tests/storage/test_client_ips.py +0 -788
  1611. matrix_synapse-1.102.0rc1/tests/storage/test_database.py +0 -288
  1612. matrix_synapse-1.102.0rc1/tests/storage/test_devices.py +0 -345
  1613. matrix_synapse-1.102.0rc1/tests/storage/test_directory.py +0 -74
  1614. matrix_synapse-1.102.0rc1/tests/storage/test_e2e_room_keys.py +0 -87
  1615. matrix_synapse-1.102.0rc1/tests/storage/test_end_to_end_keys.py +0 -120
  1616. matrix_synapse-1.102.0rc1/tests/storage/test_event_chain.py +0 -776
  1617. matrix_synapse-1.102.0rc1/tests/storage/test_event_federation.py +0 -1219
  1618. matrix_synapse-1.102.0rc1/tests/storage/test_event_metrics.py +0 -89
  1619. matrix_synapse-1.102.0rc1/tests/storage/test_event_push_actions.py +0 -814
  1620. matrix_synapse-1.102.0rc1/tests/storage/test_events.py +0 -483
  1621. matrix_synapse-1.102.0rc1/tests/storage/test_id_generators.py +0 -951
  1622. matrix_synapse-1.102.0rc1/tests/storage/test_monthly_active_users.py +0 -500
  1623. matrix_synapse-1.102.0rc1/tests/storage/test_profile.py +0 -134
  1624. matrix_synapse-1.102.0rc1/tests/storage/test_purge.py +0 -130
  1625. matrix_synapse-1.102.0rc1/tests/storage/test_receipts.py +0 -309
  1626. matrix_synapse-1.102.0rc1/tests/storage/test_redaction.py +0 -457
  1627. matrix_synapse-1.102.0rc1/tests/storage/test_registration.py +0 -277
  1628. matrix_synapse-1.102.0rc1/tests/storage/test_relations.py +0 -118
  1629. matrix_synapse-1.102.0rc1/tests/storage/test_rollback_worker.py +0 -130
  1630. matrix_synapse-1.102.0rc1/tests/storage/test_room.py +0 -69
  1631. matrix_synapse-1.102.0rc1/tests/storage/test_room_search.py +0 -381
  1632. matrix_synapse-1.102.0rc1/tests/storage/test_roommember.py +0 -273
  1633. matrix_synapse-1.102.0rc1/tests/storage/test_state.py +0 -645
  1634. matrix_synapse-1.102.0rc1/tests/storage/test_stream.py +0 -270
  1635. matrix_synapse-1.102.0rc1/tests/storage/test_transactions.py +0 -77
  1636. matrix_synapse-1.102.0rc1/tests/storage/test_txn_limit.py +0 -49
  1637. matrix_synapse-1.102.0rc1/tests/storage/test_unsafe_locale.py +0 -55
  1638. matrix_synapse-1.102.0rc1/tests/storage/test_user_directory.py +0 -721
  1639. matrix_synapse-1.102.0rc1/tests/storage/test_user_filters.py +0 -101
  1640. matrix_synapse-1.102.0rc1/tests/storage/util/test_partial_state_events_tracker.py +0 -181
  1641. matrix_synapse-1.102.0rc1/tests/test_distributor.py +0 -73
  1642. matrix_synapse-1.102.0rc1/tests/test_event_auth.py +0 -919
  1643. matrix_synapse-1.102.0rc1/tests/test_federation.py +0 -376
  1644. matrix_synapse-1.102.0rc1/tests/test_mau.py +0 -349
  1645. matrix_synapse-1.102.0rc1/tests/test_phone_home.py +0 -102
  1646. matrix_synapse-1.102.0rc1/tests/test_server.py +0 -536
  1647. matrix_synapse-1.102.0rc1/tests/test_state.py +0 -897
  1648. matrix_synapse-1.102.0rc1/tests/test_terms_auth.py +0 -135
  1649. matrix_synapse-1.102.0rc1/tests/test_test_utils.py +0 -79
  1650. matrix_synapse-1.102.0rc1/tests/test_types.py +0 -129
  1651. matrix_synapse-1.102.0rc1/tests/test_utils/__init__.py +0 -139
  1652. matrix_synapse-1.102.0rc1/tests/test_utils/event_injection.py +0 -141
  1653. matrix_synapse-1.102.0rc1/tests/test_utils/html_parsers.py +0 -59
  1654. matrix_synapse-1.102.0rc1/tests/test_utils/logging_setup.py +0 -74
  1655. matrix_synapse-1.102.0rc1/tests/test_utils/oidc.py +0 -355
  1656. matrix_synapse-1.102.0rc1/tests/test_visibility.py +0 -365
  1657. matrix_synapse-1.102.0rc1/tests/types/__init__.py +0 -0
  1658. matrix_synapse-1.102.0rc1/tests/unittest.py +0 -1032
  1659. matrix_synapse-1.102.0rc1/tests/util/caches/test_deferred_cache.py +0 -286
  1660. matrix_synapse-1.102.0rc1/tests/util/caches/test_descriptors.py +0 -1035
  1661. matrix_synapse-1.102.0rc1/tests/util/caches/test_response_cache.py +0 -222
  1662. matrix_synapse-1.102.0rc1/tests/util/caches/test_ttlcache.py +0 -88
  1663. matrix_synapse-1.102.0rc1/tests/util/test_async_helpers.py +0 -590
  1664. matrix_synapse-1.102.0rc1/tests/util/test_batching_queue.py +0 -251
  1665. matrix_synapse-1.102.0rc1/tests/util/test_check_dependencies.py +0 -186
  1666. matrix_synapse-1.102.0rc1/tests/util/test_dict_cache.py +0 -128
  1667. matrix_synapse-1.102.0rc1/tests/util/test_expiring_cache.py +0 -98
  1668. matrix_synapse-1.102.0rc1/tests/util/test_itertools.py +0 -190
  1669. matrix_synapse-1.102.0rc1/tests/util/test_linearizer.py +0 -263
  1670. matrix_synapse-1.102.0rc1/tests/util/test_logcontext.py +0 -206
  1671. matrix_synapse-1.102.0rc1/tests/util/test_lrucache.py +0 -416
  1672. matrix_synapse-1.102.0rc1/tests/util/test_ratelimitutils.py +0 -147
  1673. matrix_synapse-1.102.0rc1/tests/util/test_retryutils.py +0 -243
  1674. matrix_synapse-1.102.0rc1/tests/util/test_rwlock.py +0 -401
  1675. matrix_synapse-1.102.0rc1/tests/util/test_stream_change_cache.py +0 -242
  1676. matrix_synapse-1.102.0rc1/tests/util/test_stringutils.py +0 -60
  1677. matrix_synapse-1.102.0rc1/tests/util/test_task_scheduler.py +0 -215
  1678. matrix_synapse-1.102.0rc1/tests/util/test_wheel_timer.py +0 -80
  1679. matrix_synapse-1.102.0rc1/tests/utils.py +0 -383
  1680. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/AUTHORS.rst +0 -0
  1681. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/CONTRIBUTING.md +0 -0
  1682. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/Cargo.toml +0 -0
  1683. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/INSTALL.md +0 -0
  1684. /matrix_synapse-1.102.0rc1/LICENSE → /matrix_synapse-1.142.0rc3/LICENSE-AGPL-3.0 +0 -0
  1685. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/UPGRADE.rst +0 -0
  1686. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/book.toml +0 -0
  1687. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/changelog.d/.gitignore +0 -0
  1688. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/demo/.gitignore +0 -0
  1689. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/demo/clean.sh +0 -0
  1690. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/demo/stop.sh +0 -0
  1691. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/.sample_config_header.yaml +0 -0
  1692. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/CAPTCHA_SETUP.md +0 -0
  1693. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/admin_api/README.rst +0 -0
  1694. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/admin_api/account_validity.md +0 -0
  1695. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/admin_api/purge_history_api.md +0 -0
  1696. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/admin_api/register_api.md +0 -0
  1697. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/admin_api/server_notices.md +0 -0
  1698. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/admin_api/statistics.md +0 -0
  1699. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/admin_api/version_api.md +0 -0
  1700. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/ancient_architecture_notes.md +0 -0
  1701. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/application_services.md +0 -0
  1702. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/architecture.md +0 -0
  1703. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/auth_chain_diff.dot +0 -0
  1704. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/auth_chain_diff.dot.png +0 -0
  1705. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/auth_chain_difference_algorithm.md +0 -0
  1706. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/changelogs/CHANGES-2019.md +0 -0
  1707. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/changelogs/CHANGES-2020.md +0 -0
  1708. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/changelogs/CHANGES-2021.md +0 -0
  1709. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/changelogs/CHANGES-2022.md +0 -0
  1710. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/changelogs/CHANGES-pre-1.0.md +0 -0
  1711. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/changelogs/README.md +0 -0
  1712. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/consent_tracking.md +0 -0
  1713. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/delegate.md +0 -0
  1714. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/development/cas.md +0 -0
  1715. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/development/demo.md +0 -0
  1716. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/development/experimental_features.md +0 -0
  1717. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/development/git.md +0 -0
  1718. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/development/img/git/branches.jpg +0 -0
  1719. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/development/img/git/clean.png +0 -0
  1720. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/development/img/git/squash.png +0 -0
  1721. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/development/internal_documentation/README.md +0 -0
  1722. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/development/releases.md +0 -0
  1723. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/development/reviews.md +0 -0
  1724. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/development/saml.md +0 -0
  1725. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/development/synapse_architecture/cancellation.md +0 -0
  1726. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/development/synapse_architecture/faster_joins.md +0 -0
  1727. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/development/synapse_architecture/streams.md +0 -0
  1728. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/favicon.png +0 -0
  1729. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/favicon.svg +0 -0
  1730. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/federate.md +0 -0
  1731. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/jwt.md +0 -0
  1732. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/manhole.md +0 -0
  1733. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/media_repository.md +0 -0
  1734. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/metrics-howto.md +0 -0
  1735. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/modules/account_data_callbacks.md +0 -0
  1736. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/modules/account_validity_callbacks.md +0 -0
  1737. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/modules/add_extra_fields_to_client_events_unsigned.md +0 -0
  1738. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/modules/background_update_controller_callbacks.md +0 -0
  1739. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/modules/index.md +0 -0
  1740. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/modules/password_auth_provider_callbacks.md +0 -0
  1741. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/modules/porting_legacy_module.md +0 -0
  1742. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/modules/presence_router_callbacks.md +0 -0
  1743. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/modules/writing_a_module.md +0 -0
  1744. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/opentracing.md +0 -0
  1745. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/other/running_synapse_on_single_board_computers.md +0 -0
  1746. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/password_auth_providers.md +0 -0
  1747. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/presence_router_module.md +0 -0
  1748. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/privacy_policy_templates/en/1.0.html +0 -0
  1749. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/privacy_policy_templates/en/success.html +0 -0
  1750. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/replication.md +0 -0
  1751. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/room_and_user_statistics.md +0 -0
  1752. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/sample_config.yaml +0 -0
  1753. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/sample_log_config.yaml +0 -0
  1754. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/server_notices.md +0 -0
  1755. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/setup/turn/eturnal.md +0 -0
  1756. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/synctl_workers.md +0 -0
  1757. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/systemd-with-workers/README.md +0 -0
  1758. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/systemd-with-workers/system/matrix-synapse-worker@.service +0 -0
  1759. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/systemd-with-workers/system/matrix-synapse.target +0 -0
  1760. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/systemd-with-workers/workers/background_worker.yaml +0 -0
  1761. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/systemd-with-workers/workers/event_persister.yaml +0 -0
  1762. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/systemd-with-workers/workers/federation_sender.yaml +0 -0
  1763. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/systemd-with-workers/workers/generic_worker.yaml +0 -0
  1764. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/systemd-with-workers/workers/media_worker.yaml +0 -0
  1765. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/systemd-with-workers/workers/pusher_worker.yaml +0 -0
  1766. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/tcp_replication.md +0 -0
  1767. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/templates.md +0 -0
  1768. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/turn-howto.md +0 -0
  1769. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/usage/administration/README.md +0 -0
  1770. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/usage/administration/admin_api/README.md +0 -0
  1771. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/usage/administration/admin_api/federation.md +0 -0
  1772. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/usage/administration/admin_api/registration_tokens.md +0 -0
  1773. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/usage/administration/database_maintenance_tools.md +0 -0
  1774. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/usage/administration/monthly_active_users.md +0 -0
  1775. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/usage/administration/request_log.md +0 -0
  1776. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/usage/administration/state_groups.md +0 -0
  1777. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/usage/administration/understanding_synapse_through_grafana_graphs.md +0 -0
  1778. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/usage/configuration/README.md +0 -0
  1779. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/usage/configuration/homeserver_sample_config.md +0 -0
  1780. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/usage/configuration/logging_sample_config.md +0 -0
  1781. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/usage/configuration/user_authentication/README.md +0 -0
  1782. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/usage/configuration/user_authentication/refresh_tokens.md +0 -0
  1783. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/usage/configuration/user_authentication/single_sign_on/README.md +0 -0
  1784. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/usage/configuration/user_authentication/single_sign_on/cas.md +0 -0
  1785. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/usage/configuration/user_authentication/single_sign_on/saml.md +0 -0
  1786. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/website_files/README.md +0 -0
  1787. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/website_files/indent-section-headers.css +0 -0
  1788. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/website_files/remove-nav-buttons.css +0 -0
  1789. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/website_files/table-of-contents.css +0 -0
  1790. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/website_files/table-of-contents.js +0 -0
  1791. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/website_files/theme/index.hbs +0 -0
  1792. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/website_files/version-picker.css +0 -0
  1793. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/docs/website_files/version.js +0 -0
  1794. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/rust/build.rs +0 -0
  1795. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/scripts-dev/check-newsfragment.sh +0 -0
  1796. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/scripts-dev/check_line_terminators.sh +0 -0
  1797. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/scripts-dev/config-lint.sh +0 -0
  1798. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/scripts-dev/database-save.sh +0 -0
  1799. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/scripts-dev/docker_update_debian_changelog.sh +0 -0
  1800. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/scripts-dev/dump_macaroon.py +0 -0
  1801. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/scripts-dev/generate_sample_config.sh +0 -0
  1802. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/scripts-dev/make_full_schema.sh +0 -0
  1803. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/scripts-dev/next_github_number.sh +0 -0
  1804. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/_scripts/__init__.py +0 -0
  1805. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/_scripts/export_signing_key.py +0 -0
  1806. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/_scripts/generate_config.py +0 -0
  1807. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/_scripts/generate_log_config.py +0 -0
  1808. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/_scripts/generate_signing_key.py +0 -0
  1809. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/_scripts/move_remote_media_to_new_store.py +0 -0
  1810. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/api/__init__.py +0 -0
  1811. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/api/auth_blocking.py +0 -0
  1812. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/api/presence.py +0 -0
  1813. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/app/__init__.py +0 -0
  1814. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/config/__init__.py +0 -0
  1815. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/config/account_validity.py +0 -0
  1816. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/config/background_updates.py +0 -0
  1817. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/config/consent.py +0 -0
  1818. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/config/metrics.py +0 -0
  1819. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/config/push.py +0 -0
  1820. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/config/server_notices.py +0 -0
  1821. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/config/stats.py +0 -0
  1822. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/config/third_party_event_rules.py +0 -0
  1823. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/crypto/__init__.py +0 -0
  1824. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/crypto/context_factory.py +0 -0
  1825. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/federation/transport/__init__.py +0 -0
  1826. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/handlers/__init__.py +0 -0
  1827. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/handlers/password_policy.py +0 -0
  1828. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/handlers/state_deltas.py +0 -0
  1829. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/handlers/ui_auth/__init__.py +0 -0
  1830. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/http/__init__.py +0 -0
  1831. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/http/federation/__init__.py +0 -0
  1832. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/http/types.py +0 -0
  1833. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/logging/__init__.py +0 -0
  1834. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/metrics/_types.py +0 -0
  1835. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/module_api/errors.py +0 -0
  1836. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/py.typed +0 -0
  1837. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/replication/__init__.py +0 -0
  1838. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/replication/tcp/__init__.py +0 -0
  1839. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/replication/tcp/context.py +0 -0
  1840. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/replication/tcp/streams/partial_state.py +0 -0
  1841. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/res/templates/_base.html +0 -0
  1842. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/res/templates/account_previously_renewed.html +0 -0
  1843. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/res/templates/account_renewed.html +0 -0
  1844. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/res/templates/add_threepid.html +0 -0
  1845. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/res/templates/add_threepid.txt +0 -0
  1846. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/res/templates/add_threepid_failure.html +0 -0
  1847. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/res/templates/add_threepid_success.html +0 -0
  1848. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/res/templates/auth_success.html +0 -0
  1849. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/res/templates/invalid_token.html +0 -0
  1850. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/res/templates/mail-Element.css +0 -0
  1851. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/res/templates/mail-Vector.css +0 -0
  1852. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/res/templates/mail-expiry.css +0 -0
  1853. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/res/templates/mail.css +0 -0
  1854. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/res/templates/notice_expiry.html +0 -0
  1855. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/res/templates/notice_expiry.txt +0 -0
  1856. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/res/templates/notif.html +0 -0
  1857. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/res/templates/notif.txt +0 -0
  1858. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/res/templates/notif_mail.html +0 -0
  1859. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/res/templates/notif_mail.txt +0 -0
  1860. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/res/templates/password_reset.html +0 -0
  1861. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/res/templates/password_reset.txt +0 -0
  1862. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/res/templates/password_reset_confirmation.html +0 -0
  1863. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/res/templates/password_reset_failure.html +0 -0
  1864. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/res/templates/password_reset_success.html +0 -0
  1865. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/res/templates/recaptcha.html +0 -0
  1866. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/res/templates/registration.html +0 -0
  1867. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/res/templates/registration.txt +0 -0
  1868. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/res/templates/registration_failure.html +0 -0
  1869. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/res/templates/registration_success.html +0 -0
  1870. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/res/templates/registration_token.html +0 -0
  1871. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/res/templates/room.html +0 -0
  1872. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/res/templates/room.txt +0 -0
  1873. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/res/templates/sso.css +0 -0
  1874. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/res/templates/sso_account_deactivated.html +0 -0
  1875. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/res/templates/sso_auth_account_details.html +0 -0
  1876. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/res/templates/sso_auth_account_details.js +0 -0
  1877. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/res/templates/sso_auth_bad_user.html +0 -0
  1878. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/res/templates/sso_auth_confirm.html +0 -0
  1879. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/res/templates/sso_auth_success.html +0 -0
  1880. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/res/templates/sso_error.html +0 -0
  1881. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/res/templates/sso_footer.html +0 -0
  1882. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/res/templates/sso_login_idp_picker.html +0 -0
  1883. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/res/templates/sso_new_user_consent.html +0 -0
  1884. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/res/templates/sso_partial_profile.html +0 -0
  1885. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/res/templates/sso_redirect_confirm.html +0 -0
  1886. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/res/templates/style.css +0 -0
  1887. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/res/templates/terms.html +0 -0
  1888. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/rest/admin/_base.py +0 -0
  1889. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/rest/client/__init__.py +0 -0
  1890. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/rest/client/tokenrefresh.py +0 -0
  1891. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/rest/consent/__init__.py +0 -0
  1892. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/rest/health.py +0 -0
  1893. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/rest/key/__init__.py +0 -0
  1894. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/rest/key/v2/__init__.py +0 -0
  1895. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/rest/media/__init__.py +0 -0
  1896. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/rest/media/create_resource.py +0 -0
  1897. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/rest/media/media_repository_resource.py +0 -0
  1898. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/rest/media/v1/__init__.py +0 -0
  1899. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/rest/media/v1/_base.py +0 -0
  1900. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/rest/media/v1/media_storage.py +0 -0
  1901. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/rest/media/v1/storage_provider.py +0 -0
  1902. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/rest/synapse/__init__.py +0 -0
  1903. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/rest/synapse/client/oidc/__init__.py +0 -0
  1904. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/rest/synapse/client/saml2/__init__.py +0 -0
  1905. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/rest/synapse/client/saml2/metadata_resource.py +0 -0
  1906. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/server_notices/__init__.py +0 -0
  1907. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/server_notices/server_notices_sender.py +0 -0
  1908. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/server_notices/worker_server_notices_sender.py +0 -0
  1909. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/spam_checker_api/__init__.py +0 -0
  1910. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/static/client/login/index.html +0 -0
  1911. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/static/client/login/js/jquery-3.4.1.min.js +0 -0
  1912. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/static/client/login/js/login.js +0 -0
  1913. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/static/client/login/spinner.gif +0 -0
  1914. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/static/client/login/style.css +0 -0
  1915. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/static/index.html +0 -0
  1916. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/__init__.py +0 -0
  1917. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/controllers/__init__.py +0 -0
  1918. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/databases/main/openid.py +0 -0
  1919. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/databases/main/rejections.py +0 -0
  1920. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/databases/state/__init__.py +0 -0
  1921. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/engines/__init__.py +0 -0
  1922. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/keys.py +0 -0
  1923. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/push_rule.py +0 -0
  1924. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/README.md +0 -0
  1925. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/common/delta/25/00background_updates.sql +0 -0
  1926. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/common/delta/35/00background_updates_add_col.sql +0 -0
  1927. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/common/delta/58/00background_update_ordering.sql +0 -0
  1928. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/common/full_schemas/72/full.sql.postgres +0 -0
  1929. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/common/full_schemas/72/full.sql.sqlite +0 -0
  1930. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/common/schema_version.sql +0 -0
  1931. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/12/v12.sql +0 -0
  1932. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/13/v13.sql +0 -0
  1933. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/14/v14.sql +0 -0
  1934. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/15/appservice_txns.sql +0 -0
  1935. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/15/presence_indices.sql +0 -0
  1936. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/15/v15.sql +0 -0
  1937. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/16/events_order_index.sql +0 -0
  1938. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/16/remote_media_cache_index.sql +0 -0
  1939. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/16/remove_duplicates.sql +0 -0
  1940. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/16/room_alias_index.sql +0 -0
  1941. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/16/unique_constraints.sql +0 -0
  1942. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/16/users.sql +0 -0
  1943. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/17/drop_indexes.sql +0 -0
  1944. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/17/server_keys.sql +0 -0
  1945. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/17/user_threepids.sql +0 -0
  1946. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/18/server_keys_bigger_ints.sql +0 -0
  1947. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/19/event_index.sql +0 -0
  1948. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/20/dummy.sql +0 -0
  1949. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/20/pushers.py +0 -0
  1950. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/21/end_to_end_keys.sql +0 -0
  1951. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/21/receipts.sql +0 -0
  1952. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/22/receipts_index.sql +0 -0
  1953. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/22/user_threepids_unique.sql +0 -0
  1954. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/24/stats_reporting.sql +0 -0
  1955. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/25/guest_access.sql +0 -0
  1956. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/25/history_visibility.sql +0 -0
  1957. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/25/tags.sql +0 -0
  1958. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/26/account_data.sql +0 -0
  1959. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/27/account_data.sql +0 -0
  1960. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/27/forgotten_memberships.sql +0 -0
  1961. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/28/event_push_actions.sql +0 -0
  1962. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/28/events_room_stream.sql +0 -0
  1963. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/28/public_roms_index.sql +0 -0
  1964. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/28/receipts_user_id_index.sql +0 -0
  1965. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/28/upgrade_times.sql +0 -0
  1966. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/28/users_is_guest.sql +0 -0
  1967. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/29/push_actions.sql +0 -0
  1968. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/30/alias_creator.sql +0 -0
  1969. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/30/deleted_pushers.sql +0 -0
  1970. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/30/presence_stream.sql +0 -0
  1971. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/30/public_rooms.sql +0 -0
  1972. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/30/push_rule_stream.sql +0 -0
  1973. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/30/threepid_guest_access_tokens.sql +0 -0
  1974. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/31/invites.sql +0 -0
  1975. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/31/local_media_repository_url_cache.sql +0 -0
  1976. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/31/pushers_0.py +0 -0
  1977. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/31/pushers_index.sql +0 -0
  1978. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/32/events.sql +0 -0
  1979. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/32/openid.sql +0 -0
  1980. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/32/pusher_throttle.sql +0 -0
  1981. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/32/remove_indices.sql +0 -0
  1982. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/32/reports.sql +0 -0
  1983. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/33/access_tokens_device_index.sql +0 -0
  1984. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/33/devices.sql +0 -0
  1985. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/33/devices_for_e2e_keys.sql +0 -0
  1986. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/33/devices_for_e2e_keys_clear_unknown_device.sql +0 -0
  1987. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/33/remote_media_ts.py +0 -0
  1988. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/33/user_ips_index.sql +0 -0
  1989. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/34/appservice_stream.sql +0 -0
  1990. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/34/cache_stream.py +0 -0
  1991. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/34/device_inbox.sql +0 -0
  1992. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/34/push_display_name_rename.sql +0 -0
  1993. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/34/received_txn_purge.py +0 -0
  1994. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/35/contains_url.sql +0 -0
  1995. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/35/device_outbox.sql +0 -0
  1996. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/35/device_stream_id.sql +0 -0
  1997. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/35/event_push_actions_index.sql +0 -0
  1998. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/35/public_room_list_change_stream.sql +0 -0
  1999. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/35/stream_order_to_extrem.sql +0 -0
  2000. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/36/readd_public_rooms.sql +0 -0
  2001. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/37/remove_auth_idx.py +0 -0
  2002. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/37/user_threepids.sql +0 -0
  2003. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/38/postgres_fts_gist.sql +0 -0
  2004. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/39/appservice_room_list.sql +0 -0
  2005. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/39/device_federation_stream_idx.sql +0 -0
  2006. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/39/event_push_index.sql +0 -0
  2007. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/39/federation_out_position.sql +0 -0
  2008. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/39/membership_profile.sql +0 -0
  2009. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/40/current_state_idx.sql +0 -0
  2010. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/40/device_inbox.sql +0 -0
  2011. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/40/device_list_streams.sql +0 -0
  2012. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/40/event_push_summary.sql +0 -0
  2013. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/40/pushers.sql +0 -0
  2014. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/41/device_list_stream_idx.sql +0 -0
  2015. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/41/device_outbound_index.sql +0 -0
  2016. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/41/event_search_event_id_idx.sql +0 -0
  2017. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/41/ratelimit.sql +0 -0
  2018. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/42/device_list_last_id.sql +0 -0
  2019. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/42/event_auth_state_only.sql +0 -0
  2020. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/42/user_dir.py +0 -0
  2021. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/43/blocked_rooms.sql +0 -0
  2022. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/43/quarantine_media.sql +0 -0
  2023. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/43/url_cache.sql +0 -0
  2024. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/43/user_share.sql +0 -0
  2025. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/44/expire_url_cache.sql +0 -0
  2026. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/45/group_server.sql +0 -0
  2027. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/45/profile_cache.sql +0 -0
  2028. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/46/drop_refresh_tokens.sql +0 -0
  2029. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/46/drop_unique_deleted_pushers.sql +0 -0
  2030. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/46/group_server.sql +0 -0
  2031. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/46/local_media_repository_url_idx.sql +0 -0
  2032. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/46/user_dir_null_room_ids.sql +0 -0
  2033. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/46/user_dir_typos.sql +0 -0
  2034. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/47/last_access_media.sql +0 -0
  2035. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/47/postgres_fts_gin.sql +0 -0
  2036. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/47/push_actions_staging.sql +0 -0
  2037. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/48/add_user_consent.sql +0 -0
  2038. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/48/add_user_ips_last_seen_index.sql +0 -0
  2039. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/48/deactivated_users.sql +0 -0
  2040. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/48/group_unique_indexes.py +0 -0
  2041. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/48/groups_joinable.sql +0 -0
  2042. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/49/add_user_consent_server_notice_sent.sql +0 -0
  2043. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/49/add_user_daily_visits.sql +0 -0
  2044. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/49/add_user_ips_last_seen_only_index.sql +0 -0
  2045. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/50/add_creation_ts_users_index.sql +0 -0
  2046. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/50/erasure_store.sql +0 -0
  2047. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/50/make_event_content_nullable.py +0 -0
  2048. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/51/e2e_room_keys.sql +0 -0
  2049. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/51/monthly_active_users.sql +0 -0
  2050. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/52/add_event_to_state_group_index.sql +0 -0
  2051. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/52/device_list_streams_unique_idx.sql +0 -0
  2052. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/52/e2e_room_keys.sql +0 -0
  2053. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/53/add_user_type_to_users.sql +0 -0
  2054. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/53/drop_sent_transactions.sql +0 -0
  2055. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/53/event_format_version.sql +0 -0
  2056. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/53/user_dir_populate.sql +0 -0
  2057. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/53/user_ips_index.sql +0 -0
  2058. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/53/user_share.sql +0 -0
  2059. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/53/user_threepid_id.sql +0 -0
  2060. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/53/users_in_public_rooms.sql +0 -0
  2061. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/54/account_validity_with_renewal.sql +0 -0
  2062. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/54/add_validity_to_server_keys.sql +0 -0
  2063. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/54/delete_forward_extremities.sql +0 -0
  2064. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/54/drop_legacy_tables.sql +0 -0
  2065. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/54/drop_presence_list.sql +0 -0
  2066. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/54/relations.sql +0 -0
  2067. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/54/stats.sql +0 -0
  2068. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/54/stats2.sql +0 -0
  2069. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/55/access_token_expiry.sql +0 -0
  2070. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/55/track_threepid_validations.sql +0 -0
  2071. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/55/users_alter_deactivated.sql +0 -0
  2072. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/56/add_spans_to_device_lists.sql +0 -0
  2073. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/56/current_state_events_membership.sql +0 -0
  2074. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/56/current_state_events_membership_mk2.sql +0 -0
  2075. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/56/delete_keys_from_deleted_backups.sql +0 -0
  2076. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/56/destinations_failure_ts.sql +0 -0
  2077. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/56/destinations_retry_interval_type.sql.postgres +0 -0
  2078. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/56/device_stream_id_insert.sql +0 -0
  2079. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/56/devices_last_seen.sql +0 -0
  2080. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/56/drop_unused_event_tables.sql +0 -0
  2081. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/56/event_expiry.sql +0 -0
  2082. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/56/event_labels.sql +0 -0
  2083. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/56/event_labels_background_update.sql +0 -0
  2084. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/56/fix_room_keys_index.sql +0 -0
  2085. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/56/hidden_devices.sql +0 -0
  2086. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/56/hidden_devices_fix.sql.sqlite +0 -0
  2087. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/56/nuke_empty_communities_from_db.sql +0 -0
  2088. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/56/public_room_list_idx.sql +0 -0
  2089. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/56/redaction_censor.sql +0 -0
  2090. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/56/redaction_censor2.sql +0 -0
  2091. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/56/redaction_censor3_fix_update.sql.postgres +0 -0
  2092. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/56/redaction_censor4.sql +0 -0
  2093. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/56/remove_tombstoned_rooms_from_directory.sql +0 -0
  2094. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/56/room_key_etag.sql +0 -0
  2095. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/56/room_membership_idx.sql +0 -0
  2096. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/56/room_retention.sql +0 -0
  2097. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/56/signing_keys.sql +0 -0
  2098. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/56/signing_keys_nonunique_signatures.sql +0 -0
  2099. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/56/stats_separated.sql +0 -0
  2100. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/56/user_external_ids.sql +0 -0
  2101. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/56/users_in_public_rooms_idx.sql +0 -0
  2102. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/57/delete_old_current_state_events.sql +0 -0
  2103. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/57/device_list_remote_cache_stale.sql +0 -0
  2104. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/57/local_current_membership.py +0 -0
  2105. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/57/remove_sent_outbound_pokes.sql +0 -0
  2106. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/57/rooms_version_column.sql +0 -0
  2107. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/57/rooms_version_column_2.sql.postgres +0 -0
  2108. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/57/rooms_version_column_2.sql.sqlite +0 -0
  2109. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/57/rooms_version_column_3.sql.postgres +0 -0
  2110. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/57/rooms_version_column_3.sql.sqlite +0 -0
  2111. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/58/02remove_dup_outbound_pokes.sql +0 -0
  2112. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/58/03persist_ui_auth.sql +0 -0
  2113. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/58/05cache_instance.sql.postgres +0 -0
  2114. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/58/06dlols_unique_idx.py +0 -0
  2115. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/58/07add_method_to_thumbnail_constraint.sql.postgres +0 -0
  2116. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/58/07add_method_to_thumbnail_constraint.sql.sqlite +0 -0
  2117. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/58/07persist_ui_auth_ips.sql +0 -0
  2118. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/58/08_media_safe_from_quarantine.sql.postgres +0 -0
  2119. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/58/08_media_safe_from_quarantine.sql.sqlite +0 -0
  2120. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/58/09shadow_ban.sql +0 -0
  2121. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/58/10_pushrules_enabled_delete_obsolete.sql +0 -0
  2122. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/58/10drop_local_rejections_stream.sql +0 -0
  2123. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/58/10federation_pos_instance_name.sql +0 -0
  2124. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/58/11dehydration.sql +0 -0
  2125. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/58/11fallback.sql +0 -0
  2126. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/58/11user_id_seq.py +0 -0
  2127. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/58/12room_stats.sql +0 -0
  2128. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/58/13remove_presence_allow_inbound.sql +0 -0
  2129. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/58/14events_instance_name.sql +0 -0
  2130. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/58/14events_instance_name.sql.postgres +0 -0
  2131. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/58/15_catchup_destination_rooms.sql +0 -0
  2132. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/58/15unread_count.sql +0 -0
  2133. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/58/16populate_stats_process_rooms_fix.sql +0 -0
  2134. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/58/17_catchup_last_successful.sql +0 -0
  2135. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/58/18stream_positions.sql +0 -0
  2136. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/58/19instance_map.sql.postgres +0 -0
  2137. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/58/19txn_id.sql +0 -0
  2138. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/58/20instance_name_event_tables.sql +0 -0
  2139. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/58/20user_daily_visits.sql +0 -0
  2140. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/58/21as_device_stream.sql +0 -0
  2141. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/58/21drop_device_max_stream_id.sql +0 -0
  2142. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/58/22puppet_token.sql +0 -0
  2143. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/58/22users_have_local_media.sql +0 -0
  2144. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/58/23e2e_cross_signing_keys_idx.sql +0 -0
  2145. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/58/24drop_event_json_index.sql +0 -0
  2146. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/58/25user_external_ids_user_id_idx.sql +0 -0
  2147. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/58/26access_token_last_validated.sql +0 -0
  2148. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/58/27local_invites.sql +0 -0
  2149. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/58/28drop_last_used_column.sql.postgres +0 -0
  2150. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/58/28drop_last_used_column.sql.sqlite +0 -0
  2151. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/59/01ignored_user.py +0 -0
  2152. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/59/02shard_send_to_device.sql +0 -0
  2153. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/59/03shard_send_to_device_sequence.sql.postgres +0 -0
  2154. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/59/04_event_auth_chains.sql +0 -0
  2155. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/59/04_event_auth_chains.sql.postgres +0 -0
  2156. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/59/04drop_account_data.sql +0 -0
  2157. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/59/05cache_invalidation.sql +0 -0
  2158. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/59/06chain_cover_index.sql +0 -0
  2159. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/59/06shard_account_data.sql +0 -0
  2160. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/59/06shard_account_data.sql.postgres +0 -0
  2161. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/59/07shard_account_data_fix.sql +0 -0
  2162. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/59/08delete_pushers_for_deactivated_accounts.sql +0 -0
  2163. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/59/08delete_stale_pushers.sql +0 -0
  2164. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/59/09rejected_events_metadata.sql +0 -0
  2165. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/59/10delete_purged_chain_cover.sql +0 -0
  2166. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/59/11add_knock_members_to_stats.sql +0 -0
  2167. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/59/11drop_thumbnail_constraint.sql.postgres +0 -0
  2168. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/59/12account_validity_token_used_ts_ms.sql +0 -0
  2169. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/59/12presence_stream_instance.sql +0 -0
  2170. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/59/12presence_stream_instance_seq.sql.postgres +0 -0
  2171. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/59/13users_to_send_full_presence_to.sql +0 -0
  2172. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/59/14refresh_tokens.sql +0 -0
  2173. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/59/15locks.sql +0 -0
  2174. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/59/16federation_inbound_staging.sql +0 -0
  2175. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/60/01recreate_stream_ordering.sql.postgres +0 -0
  2176. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/60/02change_stream_ordering_columns.sql.postgres +0 -0
  2177. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/61/01change_appservices_txns.sql.postgres +0 -0
  2178. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/61/01insertion_event_lookups.sql +0 -0
  2179. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/61/02drop_redundant_room_depth_index.sql +0 -0
  2180. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/62/01insertion_event_extremities.sql +0 -0
  2181. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/63/01create_registration_tokens.sql +0 -0
  2182. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/63/02delete_unlinked_email_pushers.sql +0 -0
  2183. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/63/02populate-rooms-creator.sql +0 -0
  2184. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/63/03session_store.sql +0 -0
  2185. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/63/04add_presence_stream_not_offline_index.sql +0 -0
  2186. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/64/01msc2716_chunk_to_batch_rename.sql.postgres +0 -0
  2187. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/64/01msc2716_chunk_to_batch_rename.sql.sqlite +0 -0
  2188. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/65/01msc2716_insertion_event_edges.sql +0 -0
  2189. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/65/03remove_hidden_devices_from_device_inbox.sql +0 -0
  2190. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/65/04_local_group_updates.sql +0 -0
  2191. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/65/05_remove_room_stats_historical_and_user_stats_historical.sql +0 -0
  2192. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/65/06remove_deleted_devices_from_device_inbox.sql +0 -0
  2193. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/65/07_arbitrary_relations.sql +0 -0
  2194. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/65/08_device_inbox_background_updates.sql +0 -0
  2195. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/65/10_expirable_refresh_tokens.sql +0 -0
  2196. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/65/11_devices_auth_provider_session.sql +0 -0
  2197. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/67/01drop_public_room_list_stream.sql +0 -0
  2198. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/68/01event_columns.sql +0 -0
  2199. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/68/02_msc2409_add_device_id_appservice_stream_type.sql +0 -0
  2200. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/68/03_delete_account_data_for_deactivated_accounts.sql +0 -0
  2201. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/68/04_refresh_tokens_index_next_token_id.sql +0 -0
  2202. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/68/04partial_state_rooms.sql +0 -0
  2203. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/68/05_delete_non_strings_from_event_search.sql.sqlite +0 -0
  2204. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/68/06_msc3202_add_device_list_appservice_stream_type.sql +0 -0
  2205. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/69/01as_txn_seq.py +0 -0
  2206. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/69/01device_list_oubound_by_room.sql +0 -0
  2207. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/69/02cache_invalidation_index.sql +0 -0
  2208. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/70/01clean_table_purged_rooms.sql +0 -0
  2209. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/71/01rebuild_event_edges.sql.postgres +0 -0
  2210. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/71/01rebuild_event_edges.sql.sqlite +0 -0
  2211. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/71/01remove_noop_background_updates.sql +0 -0
  2212. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/71/02event_push_summary_unique.sql +0 -0
  2213. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/72/01add_room_type_to_state_stats.sql +0 -0
  2214. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/72/01event_push_summary_receipt.sql +0 -0
  2215. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/72/02event_push_actions_index.sql +0 -0
  2216. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/72/03bg_populate_events_columns.py +0 -0
  2217. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/72/03drop_event_reference_hashes.sql +0 -0
  2218. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/72/03remove_groups.sql +0 -0
  2219. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/72/04drop_column_application_services_state_last_txn.sql.postgres +0 -0
  2220. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/72/04drop_column_application_services_state_last_txn.sql.sqlite +0 -0
  2221. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/72/05receipts_event_stream_ordering.sql +0 -0
  2222. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/72/05remove_unstable_private_read_receipts.sql +0 -0
  2223. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/72/06add_consent_ts_to_users.sql +0 -0
  2224. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/72/06thread_notifications.sql +0 -0
  2225. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/72/07thread_receipts.sql.postgres +0 -0
  2226. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/72/07thread_receipts.sql.sqlite +0 -0
  2227. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/72/08begin_cache_invalidation_seq_at_2.sql.postgres +0 -0
  2228. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/72/08thread_receipts.sql +0 -0
  2229. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/72/09partial_indices.sql.sqlite +0 -0
  2230. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/73/01event_failed_pull_attempts.sql +0 -0
  2231. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/73/02add_pusher_enabled.sql +0 -0
  2232. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/73/02room_id_indexes_for_purging.sql +0 -0
  2233. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/73/03pusher_device_id.sql +0 -0
  2234. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/73/03users_approved_column.sql +0 -0
  2235. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/73/04partial_join_details.sql +0 -0
  2236. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/73/04pending_device_list_updates.sql +0 -0
  2237. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/73/05old_push_actions.sql.postgres +0 -0
  2238. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/73/05old_push_actions.sql.sqlite +0 -0
  2239. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/73/06thread_notifications_thread_id_idx.sql +0 -0
  2240. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/73/08thread_receipts_non_null.sql.postgres +0 -0
  2241. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/73/08thread_receipts_non_null.sql.sqlite +0 -0
  2242. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/73/09partial_joined_via_destination.sql +0 -0
  2243. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/73/09threads_table.sql +0 -0
  2244. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/73/10_update_sqlite_fts4_tokenizer.py +0 -0
  2245. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/73/10login_tokens.sql +0 -0
  2246. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/73/11event_search_room_id_n_distinct.sql.postgres +0 -0
  2247. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/73/12refactor_device_list_outbound_pokes.sql +0 -0
  2248. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/73/13add_device_lists_index.sql +0 -0
  2249. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/73/20_un_partial_stated_room_stream.sql +0 -0
  2250. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/73/21_un_partial_stated_room_stream_seq.sql.postgres +0 -0
  2251. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/73/22_rebuild_user_dir_stats.sql +0 -0
  2252. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/73/22_un_partial_stated_event_stream.sql +0 -0
  2253. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/73/23_fix_thread_index.sql +0 -0
  2254. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/73/23_un_partial_stated_room_stream_seq.sql.postgres +0 -0
  2255. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/73/24_events_jump_to_date_index.sql +0 -0
  2256. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/73/25drop_presence.sql +0 -0
  2257. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/74/01_user_directory_stale_remote_users.sql +0 -0
  2258. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/74/02_set_device_id_for_pushers_bg_update.sql +0 -0
  2259. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/74/03_membership_tables_event_stream_ordering.sql.postgres +0 -0
  2260. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/74/03_membership_tables_event_stream_ordering.sql.sqlite +0 -0
  2261. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/74/03_room_membership_index.sql +0 -0
  2262. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/74/04_delete_e2e_backup_keys_for_deactivated_users.sql +0 -0
  2263. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/74/05_events_txn_id_device_id.sql +0 -0
  2264. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/74/90COMMENTS_destinations.sql.postgres +0 -0
  2265. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/76/01_add_profiles_full_user_id_column.sql +0 -0
  2266. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/76/02_add_user_filters_full_user_id_column.sql +0 -0
  2267. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/76/03_per_user_experimental_features.sql +0 -0
  2268. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/76/04_add_room_forgetter.sql +0 -0
  2269. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/77/01_add_profiles_not_valid_check.sql.postgres +0 -0
  2270. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/77/02_add_user_filters_not_valid_check.sql.postgres +0 -0
  2271. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/77/03bg_populate_full_user_id_profiles.sql +0 -0
  2272. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/77/04bg_populate_full_user_id_user_filters.sql +0 -0
  2273. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/77/05thread_notifications_backfill.sql +0 -0
  2274. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/77/06thread_notifications_not_null.sql.sqlite +0 -0
  2275. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/77/06thread_notifications_not_null_event_push_actions.sql.postgres +0 -0
  2276. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/77/06thread_notifications_not_null_event_push_actions_staging.sql.postgres +0 -0
  2277. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/77/06thread_notifications_not_null_event_push_summary.sql.postgres +0 -0
  2278. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/77/14bg_indices_event_stream_ordering.sql +0 -0
  2279. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/78/01_validate_and_update_profiles.py +0 -0
  2280. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/78/02_validate_and_update_user_filters.py +0 -0
  2281. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/78/03_remove_unused_indexes_user_filters.py +0 -0
  2282. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/78/04_add_full_user_id_index_user_filters.py +0 -0
  2283. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/79/03_read_write_locks_triggers.sql.postgres +0 -0
  2284. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/79/03_read_write_locks_triggers.sql.sqlite +0 -0
  2285. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/79/04_mitigate_stream_ordering_update_race.py +0 -0
  2286. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/79/05_read_write_locks_triggers.sql.postgres +0 -0
  2287. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/79/05_read_write_locks_triggers.sql.sqlite +0 -0
  2288. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/80/01_users_alter_locked.sql +0 -0
  2289. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/80/02_read_write_locks_unlogged.sql.postgres +0 -0
  2290. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/80/02_scheduled_tasks.sql +0 -0
  2291. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/80/03_read_write_locks_triggers.sql.postgres +0 -0
  2292. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/80/04_read_write_locks_deadlock.sql.postgres +0 -0
  2293. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/82/02_scheduled_tasks_index.sql +0 -0
  2294. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/82/04_add_indices_for_purging_rooms.sql +0 -0
  2295. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/82/05gaps.sql +0 -0
  2296. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/83/01_drop_old_tables.sql +0 -0
  2297. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/83/03_instance_name_receipts.sql.sqlite +0 -0
  2298. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/83/05_cross_signing_key_update_grant.sql +0 -0
  2299. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/83/06_event_push_summary_room.sql +0 -0
  2300. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/84/01_auth_links_stats.sql.postgres +0 -0
  2301. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/84/02_auth_links_index.sql +0 -0
  2302. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/delta/84/03_auth_links_analyze.sql.postgres +0 -0
  2303. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/full_schemas/72/full.sql.postgres +0 -0
  2304. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/main/full_schemas/72/full.sql.sqlite +0 -0
  2305. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/state/delta/23/drop_state_index.sql +0 -0
  2306. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/state/delta/32/remove_state_indices.sql +0 -0
  2307. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/state/delta/35/add_state_index.sql +0 -0
  2308. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/state/delta/35/state.sql +0 -0
  2309. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/state/delta/35/state_dedupe.sql +0 -0
  2310. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/state/delta/47/state_group_seq.py +0 -0
  2311. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/state/delta/56/state_group_room_idx.sql +0 -0
  2312. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/state/delta/61/02state_groups_state_n_distinct.sql.postgres +0 -0
  2313. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/state/delta/70/08_state_group_edges_unique.sql +0 -0
  2314. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/state/full_schemas/72/full.sql.postgres +0 -0
  2315. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/schema/state/full_schemas/72/full.sql.sqlite +0 -0
  2316. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/storage/util/__init__.py +0 -0
  2317. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/synapse_rust/__init__.pyi +0 -0
  2318. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/util/caches/cached_call.py +0 -0
  2319. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/util/caches/treecache.py +0 -0
  2320. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/util/cancellation.py +0 -0
  2321. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/util/file_consumer.py +0 -0
  2322. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/util/frozenutils.py +0 -0
  2323. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/util/hash.py +0 -0
  2324. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/util/logcontext.py +0 -0
  2325. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/util/logformatter.py +0 -0
  2326. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/util/rlimit.py +0 -0
  2327. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/util/templates.py +0 -0
  2328. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synapse/util/threepids.py +0 -0
  2329. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/synmark/suites/__init__.py +0 -0
  2330. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/sytest-blacklist +0 -0
  2331. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/tests/__init__.py +0 -0
  2332. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/tests/api/__init__.py +0 -0
  2333. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/tests/app/__init__.py +0 -0
  2334. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/tests/appservice/__init__.py +0 -0
  2335. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/tests/config/__init__.py +0 -0
  2336. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/tests/config/test___main__.py +0 -0
  2337. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/tests/config/test_background_update.py +0 -0
  2338. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/tests/config/test_base.py +0 -0
  2339. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/tests/config/test_generate.py +0 -0
  2340. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/tests/config/test_ratelimiting.py +0 -0
  2341. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/tests/config/test_tls.py +0 -0
  2342. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/tests/config/test_util.py +0 -0
  2343. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/tests/crypto/__init__.py +0 -0
  2344. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/tests/events/__init__.py +0 -0
  2345. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/tests/federation/__init__.py +0 -0
  2346. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/tests/federation/transport/__init__.py +0 -0
  2347. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/tests/federation/transport/server/__init__.py +0 -0
  2348. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/tests/handlers/__init__.py +0 -0
  2349. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/tests/handlers/oidc_test_key.p8 +0 -0
  2350. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/tests/handlers/oidc_test_key.pub.pem +0 -0
  2351. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/tests/handlers/test_room.py +0 -0
  2352. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/tests/http/ca.crt +0 -0
  2353. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/tests/http/ca.key +0 -0
  2354. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/tests/http/federation/__init__.py +0 -0
  2355. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/tests/http/server/__init__.py +0 -0
  2356. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/tests/http/server.key +0 -0
  2357. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/tests/http/test_additional_resource.py +0 -0
  2358. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/tests/http/test_endpoint.py +0 -0
  2359. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/tests/logging/__init__.py +0 -0
  2360. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/tests/media/__init__.py +0 -0
  2361. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/tests/media/test_base.py +0 -0
  2362. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/tests/media/test_filepath.py +0 -0
  2363. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/tests/media/test_html_preview.py +0 -0
  2364. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/tests/metrics/__init__.py +0 -0
  2365. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/tests/module_api/__init__.py +0 -0
  2366. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/tests/push/__init__.py +0 -0
  2367. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/tests/replication/__init__.py +0 -0
  2368. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/tests/replication/http/__init__.py +0 -0
  2369. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/tests/replication/storage/__init__.py +0 -0
  2370. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/tests/replication/tcp/__init__.py +0 -0
  2371. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/tests/replication/tcp/streams/__init__.py +0 -0
  2372. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/tests/replication/tcp/streams/test_partial_state.py +0 -0
  2373. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/tests/replication/tcp/test_commands.py +0 -0
  2374. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/tests/replication/tcp/test_handler.py +0 -0
  2375. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/tests/replication/test_client_reader_shard.py +0 -0
  2376. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/tests/rest/__init__.py +0 -0
  2377. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/tests/rest/admin/__init__.py +0 -0
  2378. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/tests/rest/client/__init__.py +0 -0
  2379. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/tests/rest/client/test_account_data.py +0 -0
  2380. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/tests/rest/key/__init__.py +0 -0
  2381. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/tests/rest/key/v2/__init__.py +0 -0
  2382. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/tests/rest/media/__init__.py +0 -0
  2383. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/tests/rest/test_health.py +0 -0
  2384. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/tests/scripts/__init__.py +0 -0
  2385. {matrix_synapse-1.102.0rc1/tests/server_notices → matrix_synapse-1.142.0rc3/tests/state}/__init__.py +0 -0
  2386. {matrix_synapse-1.102.0rc1/tests/state → matrix_synapse-1.142.0rc3/tests/storage}/__init__.py +0 -0
  2387. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/tests/storage/databases/__init__.py +0 -0
  2388. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/tests/storage/databases/main/__init__.py +0 -0
  2389. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/tests/storage/databases/main/test_cache.py +0 -0
  2390. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/tests/storage/test_main.py +0 -0
  2391. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/tests/storage/util/__init__.py +0 -0
  2392. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/tests/test_rust.py +0 -0
  2393. {matrix_synapse-1.102.0rc1/tests/storage → matrix_synapse-1.142.0rc3/tests/types}/__init__.py +0 -0
  2394. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/tests/types/test_state.py +0 -0
  2395. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/tests/util/__init__.py +0 -0
  2396. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/tests/util/caches/__init__.py +0 -0
  2397. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/tests/util/caches/test_cached_call.py +0 -0
  2398. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/tests/util/test_file_consumer.py +0 -0
  2399. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/tests/util/test_logformatter.py +0 -0
  2400. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/tests/util/test_macaroons.py +0 -0
  2401. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/tests/util/test_threepids.py +0 -0
  2402. {matrix_synapse-1.102.0rc1 → matrix_synapse-1.142.0rc3}/tests/util/test_treecache.py +0 -0
@@ -0,0 +1,1470 @@
1
+ # Synapse 1.142.0rc3 (2025-11-04)
2
+
3
+ ## Dropped support for Python 3.9
4
+
5
+ This release drops support for Python 3.9, in line with our [dependency
6
+ deprecation
7
+ policy](https://element-hq.github.io/synapse/latest/deprecation_policy.html#platform-dependencies),
8
+ as it is now [end of life](https://endoflife.date/python).
9
+
10
+ ## SQLite 3.40.0+ is now required
11
+
12
+ The minimum supported SQLite version has been increased from 3.27.0 to 3.40.0.
13
+
14
+ If you use current versions of the
15
+ [matrixorg/synapse](setup/installation.html#docker-images-and-ansible-playbooks)
16
+ Docker images, no action is required.
17
+
18
+
19
+ ## Deprecation of MacOS Python wheels
20
+
21
+ The team has decided to deprecate and eventually stop publishing python wheels
22
+ for MacOS. This is a burden on the team, and we're not aware of any parties
23
+ that use them. Synapse docker images will continue to work on MacOS, as will
24
+ building Synapse from source (though note this requires a Rust compiler).
25
+
26
+ At present, publishing MacOS Python wheels will continue for the next release
27
+ (1.143.0), but will not be available after that (1.144.0+). If you do make use
28
+ of these wheels downstream, please reach out to us in
29
+ [#synapse-dev:matrix.org](https://matrix.to/#/#synapse-dev:matrix.org). We'd
30
+ love to hear from you!
31
+
32
+
33
+ ## Internal Changes
34
+
35
+ - Update release scripts to prevent building wheels for free-threaded Python, as Synapse does not currently support it. ([\#19140](https://github.com/element-hq/synapse/issues/19140))
36
+
37
+
38
+ # Synapse 1.142.0rc2 (2025-11-04)
39
+
40
+
41
+ ## Internal Changes
42
+
43
+ - Manually skip building Python 3.9 wheels, to prevent errors in the release workflow. ([\#19119](https://github.com/element-hq/synapse/issues/19119))
44
+
45
+
46
+
47
+
48
+ # Synapse 1.142.0rc1 (2025-11-04)
49
+
50
+ ## Features
51
+
52
+ - Add support for Python 3.14. ([\#19055](https://github.com/element-hq/synapse/issues/19055), [\#19134](https://github.com/element-hq/synapse/issues/19134))
53
+ - Add an [Admin API](https://element-hq.github.io/synapse/latest/usage/administration/admin_api/index.html)
54
+ to allow an admin to fetch the space/room hierarchy for a given space. ([\#19021](https://github.com/element-hq/synapse/issues/19021))
55
+
56
+ ## Bugfixes
57
+
58
+ - Fix a bug introduced in 1.111.0 where failed attempts to download authenticated remote media would not be handled correctly. ([\#19062](https://github.com/element-hq/synapse/issues/19062))
59
+ - Update the `oidc_session_no_samesite` cookie to have the `Secure` attribute, so the only difference between it and the paired `oidc_session` cookie, is the configuration of the `SameSite` attribute as described in the comments / cookie names. Contributed by @kieranlane. ([\#19079](https://github.com/element-hq/synapse/issues/19079))
60
+ - Fix a bug introduced in 1.140.0 where lost logcontext warnings would be emitted from timeouts in sync and requests made by Synapse itself. ([\#19090](https://github.com/element-hq/synapse/issues/19090))
61
+ - Fix a bug introdued in 1.140.0 where lost logcontext warning were emitted when using `HomeServer.shutdown()`. ([\#19108](https://github.com/element-hq/synapse/issues/19108))
62
+
63
+ ## Improved Documentation
64
+
65
+ - Update the link to the Debian oldstable package for SQLite. ([\#19047](https://github.com/element-hq/synapse/issues/19047))
66
+ - Point out additional Redis configuration options available in the worker docs. Contributed by @servisbryce. ([\#19073](https://github.com/element-hq/synapse/issues/19073))
67
+ - Update the list of Debian releases that the downstream Debian package is maintained for. ([\#19100](https://github.com/element-hq/synapse/issues/19100))
68
+ - Add [a page](https://element-hq.github.io/synapse/latest/development/internal_documentation/release_notes_review_checklist.html) to the documentation describing the steps the Synapse team takes to review the release notes before publishing them. ([\#19109](https://github.com/element-hq/synapse/issues/19109))
69
+
70
+ ## Deprecations and Removals
71
+
72
+ - Drop support for Python 3.9. ([\#19099](https://github.com/element-hq/synapse/issues/19099))
73
+ - Remove support for SQLite < 3.37.2. ([\#19047](https://github.com/element-hq/synapse/issues/19047))
74
+
75
+ ## Internal Changes
76
+
77
+ - Fix CI linter for schema delta files to correctly handle all types of `CREATE TABLE` syntax. ([\#19020](https://github.com/element-hq/synapse/issues/19020))
78
+ - Use type hinting generics in standard collections, as per [PEP 585](https://peps.python.org/pep-0585/), added in Python 3.9. ([\#19046](https://github.com/element-hq/synapse/issues/19046))
79
+ - Always treat `RETURNING` as supported by SQL engines, now that the minimum-supported versions of both SQLite and PostgreSQL support it. ([\#19047](https://github.com/element-hq/synapse/issues/19047))
80
+ - Move `oidc.load_metadata()` startup into `_base.start()`. ([\#19056](https://github.com/element-hq/synapse/issues/19056))
81
+ - Remove logcontext problems caused by awaiting raw `deferLater(...)`. ([\#19058](https://github.com/element-hq/synapse/issues/19058))
82
+ - Prevent duplicate logging setup when running multiple Synapse instances. ([\#19067](https://github.com/element-hq/synapse/issues/19067))
83
+ - Be mindful of other logging context filters in 3rd-party code and avoid overwriting log record fields unless we know the log record is relevant to Synapse. ([\#19068](https://github.com/element-hq/synapse/issues/19068))
84
+ - Update pydantic to v2. ([\#19071](https://github.com/element-hq/synapse/issues/19071))
85
+ - Update deprecated code in the release script to prevent a warning message from being printed. ([\#19080](https://github.com/element-hq/synapse/issues/19080))
86
+ - Update the deprecated poetry development dependencies group name in `pyproject.toml`. ([\#19081](https://github.com/element-hq/synapse/issues/19081))
87
+ - Remove `pp38*` skip selector from cibuildwheel to silence warning. ([\#19085](https://github.com/element-hq/synapse/issues/19085))
88
+ - Don't immediately exit the release script if the checkout is dirty. Instead, allow the user to clear the dirty changes and retry. ([\#19088](https://github.com/element-hq/synapse/issues/19088))
89
+ - Update the release script's generated announcement text to include a title and extra text for RC's. ([\#19089](https://github.com/element-hq/synapse/issues/19089))
90
+ - Fix lints on main branch. ([\#19092](https://github.com/element-hq/synapse/issues/19092))
91
+ - Use cheaper random string function in logcontext utilities. ([\#19094](https://github.com/element-hq/synapse/issues/19094))
92
+ - Avoid clobbering other `SIGHUP` handlers in 3rd-party code. ([\#19095](https://github.com/element-hq/synapse/issues/19095))
93
+ - Prevent duplicate GitHub draft releases being created during the Synapse release process. ([\#19096](https://github.com/element-hq/synapse/issues/19096))
94
+ - Use Pillow's `Image.getexif` method instead of the experimental `Image._getexif`. ([\#19098](https://github.com/element-hq/synapse/issues/19098))
95
+ - Prevent uv `/usr/local/.lock` file from appearing in built Synapse docker images. ([\#19107](https://github.com/element-hq/synapse/issues/19107))
96
+ - Allow Synapse's runtime dependency checking code to take packaging markers (i.e. `python <= 3.14`) into account when checking dependencies. ([\#19110](https://github.com/element-hq/synapse/issues/19110))
97
+ - Move exception handling up the stack (avoid `exit(1)` in our composable functions). ([\#19116](https://github.com/element-hq/synapse/issues/19116))
98
+ - Fix a lint error related to lifetimes in Rust 1.90. ([\#19118](https://github.com/element-hq/synapse/issues/19118))
99
+ - Refactor and align app entrypoints (avoid `exit(1)` in our composable functions). ([\#19121](https://github.com/element-hq/synapse/issues/19121), [\#19131](https://github.com/element-hq/synapse/issues/19131))
100
+ - Speed up pruning of ratelimiters. ([\#19129](https://github.com/element-hq/synapse/issues/19129))
101
+
102
+
103
+
104
+ ### Updates to locked dependencies
105
+
106
+ * Bump actions/download-artifact from 5.0.0 to 6.0.0. ([\#19102](https://github.com/element-hq/synapse/issues/19102))
107
+ * Bump actions/upload-artifact from 4 to 5. ([\#19106](https://github.com/element-hq/synapse/issues/19106))
108
+ * Bump hiredis from 3.2.1 to 3.3.0. ([\#19103](https://github.com/element-hq/synapse/issues/19103))
109
+ * Bump icu_segmenter from 2.0.0 to 2.0.1. ([\#19126](https://github.com/element-hq/synapse/issues/19126))
110
+ * Bump idna from 3.10 to 3.11. ([\#19053](https://github.com/element-hq/synapse/issues/19053))
111
+ * Bump ijson from 3.4.0 to 3.4.0.post0. ([\#19051](https://github.com/element-hq/synapse/issues/19051))
112
+ * Bump markdown-it-py from 3.0.0 to 4.0.0. ([\#19123](https://github.com/element-hq/synapse/issues/19123))
113
+ * Bump msgpack from 1.1.1 to 1.1.2. ([\#19050](https://github.com/element-hq/synapse/issues/19050))
114
+ * Bump psycopg2 from 2.9.10 to 2.9.11. ([\#19125](https://github.com/element-hq/synapse/issues/19125))
115
+ * Bump pyyaml from 6.0.2 to 6.0.3. ([\#19105](https://github.com/element-hq/synapse/issues/19105))
116
+ * Bump regex from 1.11.3 to 1.12.2. ([\#19074](https://github.com/element-hq/synapse/issues/19074))
117
+ * Bump reqwest from 0.12.23 to 0.12.24. ([\#19077](https://github.com/element-hq/synapse/issues/19077))
118
+ * Bump ruff from 0.12.10 to 0.14.3. ([\#19124](https://github.com/element-hq/synapse/issues/19124))
119
+ * Bump sigstore/cosign-installer from 3.10.0 to 4.0.0. ([\#19075](https://github.com/element-hq/synapse/issues/19075))
120
+ * Bump stefanzweifel/git-auto-commit-action from 6.0.1 to 7.0.0. ([\#19052](https://github.com/element-hq/synapse/issues/19052))
121
+ * Bump tokio from 1.47.1 to 1.48.0. ([\#19076](https://github.com/element-hq/synapse/issues/19076))
122
+ * Bump types-psycopg2 from 2.9.21.20250915 to 2.9.21.20251012. ([\#19054](https://github.com/element-hq/synapse/issues/19054))
123
+
124
+ # Synapse 1.141.0 (2025-10-29)
125
+
126
+ ## Deprecation of MacOS Python wheels
127
+
128
+ The team has decided to deprecate and eventually stop publishing python wheels
129
+ for MacOS. This is a burden on the team, and we're not aware of any parties
130
+ that use them. Synapse docker images will continue to work on MacOS, as will
131
+ building Synapse from source (though note this requires a Rust compiler).
132
+
133
+ Publishing MacOS Python wheels will continue for the next few releases. If you
134
+ do make use of these wheels downstream, please reach out to us in
135
+ [#synapse-dev:matrix.org](https://matrix.to/#/#synapse-dev:matrix.org). We'd
136
+ love to hear from you!
137
+
138
+
139
+ ## Docker images now based on Debian `trixie` with Python 3.13
140
+
141
+ The Docker images are now based on Debian `trixie` and use Python 3.13. If you
142
+ are using the Docker images as a base image you may need to e.g. adjust the
143
+ paths you mount any additional Python packages at.
144
+
145
+ No significant changes since 1.141.0rc2.
146
+
147
+
148
+
149
+
150
+ # Synapse 1.141.0rc2 (2025-10-28)
151
+
152
+ ## Bugfixes
153
+
154
+ - Fix users being unable to log in if their password, or the server's configured pepper, was too long. ([\#19101](https://github.com/element-hq/synapse/issues/19101))
155
+
156
+
157
+
158
+
159
+ # Synapse 1.141.0rc1 (2025-10-21)
160
+
161
+ ## Features
162
+
163
+ - Allow using [MSC4190](https://github.com/matrix-org/matrix-spec-proposals/pull/4190) behavior without the opt-in registration flag. Contributed by @tulir @ Beeper. ([\#19031](https://github.com/element-hq/synapse/issues/19031))
164
+ - Stabilized support for [MSC4326](https://github.com/matrix-org/matrix-spec-proposals/pull/4326): Device masquerading for appservices. Contributed by @tulir @ Beeper. ([\#19033](https://github.com/element-hq/synapse/issues/19033))
165
+
166
+ ## Bugfixes
167
+
168
+ - Fix a bug introduced in 1.136.0 that would prevent Synapse from being able to be `reload`-ed more than once when running under systemd. ([\#19060](https://github.com/element-hq/synapse/issues/19060))
169
+ - Fix a bug introduced in 1.140.0 where an internal server error could be raised when hashing user passwords that are too long. ([\#19078](https://github.com/element-hq/synapse/issues/19078))
170
+
171
+ ## Updates to the Docker image
172
+
173
+ - Update docker image to use Debian trixie as the base and thus Python 3.13. ([\#19064](https://github.com/element-hq/synapse/issues/19064))
174
+
175
+ ## Internal Changes
176
+
177
+ - Move unique snowflake homeserver background tasks to `start_background_tasks` (the standard pattern for this kind of thing). ([\#19037](https://github.com/element-hq/synapse/issues/19037))
178
+ - Drop a deprecated field of the `PyGitHub` dependency in the release script and raise the dependency's minimum version to `1.59.0`. ([\#19039](https://github.com/element-hq/synapse/issues/19039))
179
+ - Update TODO list of conflicting areas where we encounter metrics being clobbered (`ApplicationService`). ([\#19040](https://github.com/element-hq/synapse/issues/19040))
180
+
181
+
182
+
183
+
184
+ # Synapse 1.140.0 (2025-10-14)
185
+
186
+ ## Compatibility notice for users of `synapse-s3-storage-provider`
187
+
188
+ Deployments that make use of the
189
+ [synapse-s3-storage-provider](https://github.com/matrix-org/synapse-s3-storage-provider)
190
+ module must upgrade to
191
+ [v1.6.0](https://github.com/matrix-org/synapse-s3-storage-provider/releases/tag/v1.6.0).
192
+ Using older versions of the module with this release of Synapse will prevent
193
+ users from being able to upload or download media.
194
+
195
+
196
+ No significant changes since 1.140.0rc1.
197
+
198
+
199
+
200
+
201
+ # Synapse 1.140.0rc1 (2025-10-10)
202
+
203
+ ## Features
204
+
205
+ - Add [a new Media Query by ID Admin API](https://element-hq.github.io/synapse/v1.140/admin_api/media_admin_api.html#query-a-piece-of-media-by-id) that allows server admins to query and investigate the metadata of local or cached remote media via
206
+ the `origin/media_id` identifier found in a [Matrix Content URI](https://spec.matrix.org/v1.14/client-server-api/#matrix-content-mxc-uris). ([\#18911](https://github.com/element-hq/synapse/issues/18911))
207
+ - Add [a new Fetch Event Admin API](https://element-hq.github.io/synapse/v1.140/admin_api/fetch_event.html) to fetch an event by ID. ([\#18963](https://github.com/element-hq/synapse/issues/18963))
208
+ - Update [MSC4284: Policy Servers](https://github.com/matrix-org/matrix-spec-proposals/pull/4284) implementation to support signatures when available. ([\#18934](https://github.com/element-hq/synapse/issues/18934))
209
+ - Add experimental implementation of the `GET /_matrix/client/v1/rtc/transports` endpoint for the latest draft of [MSC4143: MatrixRTC](https://github.com/matrix-org/matrix-spec-proposals/pull/4143). ([\#18967](https://github.com/element-hq/synapse/issues/18967))
210
+ - Expose a `defer_to_threadpool` function in the Synapse Module API that allows modules to run a function on a separate thread in a custom threadpool. ([\#19032](https://github.com/element-hq/synapse/issues/19032))
211
+
212
+ ## Bugfixes
213
+
214
+ - Fix room upgrade `room_config` argument and documentation for `user_may_create_room` spam-checker callback. ([\#18721](https://github.com/element-hq/synapse/issues/18721))
215
+ - Compute a user's last seen timestamp from their devices' last seen timestamps instead of IPs, because the latter are automatically cleared according to `user_ips_max_age`. ([\#18948](https://github.com/element-hq/synapse/issues/18948))
216
+ - Fix bug where ephemeral events were not filtered by room ID. Contributed by @frastefanini. ([\#19002](https://github.com/element-hq/synapse/issues/19002))
217
+ - Update Synapse main process version string to include git info. ([\#19011](https://github.com/element-hq/synapse/issues/19011))
218
+
219
+ ## Improved Documentation
220
+
221
+ - Explain how `Deferred` callbacks interact with logcontexts. ([\#18914](https://github.com/element-hq/synapse/issues/18914))
222
+ - Fix documentation for `rc_room_creation` and `rc_reports` to clarify that a `per_user` rate limit is not supported. ([\#18998](https://github.com/element-hq/synapse/issues/18998))
223
+
224
+ ## Deprecations and Removals
225
+
226
+ - Remove deprecated `LoggingContext.set_current_context`/`LoggingContext.current_context` methods which already have equivalent bare methods in `synapse.logging.context`. ([\#18989](https://github.com/element-hq/synapse/issues/18989))
227
+ - Drop support for unstable field names from the long-accepted [MSC2732](https://github.com/matrix-org/matrix-spec-proposals/pull/2732) (Olm fallback keys) proposal. ([\#18996](https://github.com/element-hq/synapse/issues/18996))
228
+
229
+ ## Internal Changes
230
+
231
+ - Cleanly shutdown `SynapseHomeServer` object, allowing artifacts of embedded small hosts to be properly garbage collected. ([\#18828](https://github.com/element-hq/synapse/issues/18828))
232
+ - Update OEmbed providers to use 'X' instead of 'Twitter' in URL previews, following a rebrand. Contributed by @HammyHavoc. ([\#18767](https://github.com/element-hq/synapse/issues/18767))
233
+ - Fix `server_name` in logging context for multiple Synapse instances in one process. ([\#18868](https://github.com/element-hq/synapse/issues/18868))
234
+ - Wrap the Rust HTTP client with `make_deferred_yieldable` so it follows Synapse logcontext rules. ([\#18903](https://github.com/element-hq/synapse/issues/18903))
235
+ - Fix the GitHub Actions workflow that moves issues labeled "X-Needs-Info" to the "Needs info" column on the team's internal triage board. ([\#18913](https://github.com/element-hq/synapse/issues/18913))
236
+ - Disconnect background process work from request trace. ([\#18932](https://github.com/element-hq/synapse/issues/18932))
237
+ - Reduce overall number of calls to `_get_e2e_cross_signing_signatures_for_devices` by increasing the batch size of devices the query is called with, reducing DB load. ([\#18939](https://github.com/element-hq/synapse/issues/18939))
238
+ - Update error code used when an appservice tries to masquerade as an unknown device using [MSC4326](https://github.com/matrix-org/matrix-spec-proposals/pull/4326). Contributed by @tulir @ Beeper. ([\#18947](https://github.com/element-hq/synapse/issues/18947))
239
+ - Fix `no active span when trying to log` tracing error on startup (when OpenTracing is enabled). ([\#18959](https://github.com/element-hq/synapse/issues/18959))
240
+ - Fix `run_coroutine_in_background(...)` incorrectly handling logcontext. ([\#18964](https://github.com/element-hq/synapse/issues/18964))
241
+ - Add debug logs wherever we change current logcontext. ([\#18966](https://github.com/element-hq/synapse/issues/18966))
242
+ - Update dockerfile metadata to fix broken link; point to documentation website. ([\#18971](https://github.com/element-hq/synapse/issues/18971))
243
+ - Note that the code is additionally licensed under the [Element Commercial license](https://github.com/element-hq/synapse/blob/develop/LICENSE-COMMERCIAL) in SPDX expression field configs. ([\#18973](https://github.com/element-hq/synapse/issues/18973))
244
+ - Fix logcontext handling in `timeout_deferred` tests. ([\#18974](https://github.com/element-hq/synapse/issues/18974))
245
+ - Remove internal `ReplicationUploadKeysForUserRestServlet` as a follow-up to the work in https://github.com/element-hq/synapse/pull/18581 that moved device changes off the main process. ([\#18988](https://github.com/element-hq/synapse/issues/18988))
246
+ - Switch task scheduler from raw logcontext manipulation to using the dedicated logcontext utils. ([\#18990](https://github.com/element-hq/synapse/issues/18990))
247
+ - Remove `MockClock()` in tests. ([\#18992](https://github.com/element-hq/synapse/issues/18992))
248
+ - Switch back to our own custom `LogContextScopeManager` instead of OpenTracing's `ContextVarsScopeManager` which was causing problems when using the experimental `SYNAPSE_ASYNC_IO_REACTOR` option with tracing enabled. ([\#19007](https://github.com/element-hq/synapse/issues/19007))
249
+ - Remove `version_string` argument from `HomeServer` since it's always the same. ([\#19012](https://github.com/element-hq/synapse/issues/19012))
250
+ - Remove duplicate call to `hs.start_background_tasks()` introduced from a bad merge. ([\#19013](https://github.com/element-hq/synapse/issues/19013))
251
+ - Split homeserver creation (`create_homeserver`) and setup (`setup`). ([\#19015](https://github.com/element-hq/synapse/issues/19015))
252
+ - Swap near-end-of-life `macos-13` GitHub Actions runner for the `macos-15-intel` variant. ([\#19025](https://github.com/element-hq/synapse/issues/19025))
253
+ - Introduce `RootConfig.validate_config()` which can be subclassed in `HomeServerConfig` to do cross-config class validation. ([\#19027](https://github.com/element-hq/synapse/issues/19027))
254
+ - Allow any command of the `release.py` script to accept a `--gh-token` argument. ([\#19035](https://github.com/element-hq/synapse/issues/19035))
255
+
256
+
257
+
258
+ ### Updates to locked dependencies
259
+
260
+ * Bump Swatinem/rust-cache from 2.8.0 to 2.8.1. ([\#18949](https://github.com/element-hq/synapse/issues/18949))
261
+ * Bump actions/cache from 4.2.4 to 4.3.0. ([\#18983](https://github.com/element-hq/synapse/issues/18983))
262
+ * Bump anyhow from 1.0.99 to 1.0.100. ([\#18950](https://github.com/element-hq/synapse/issues/18950))
263
+ * Bump authlib from 1.6.3 to 1.6.4. ([\#18957](https://github.com/element-hq/synapse/issues/18957))
264
+ * Bump authlib from 1.6.4 to 1.6.5. ([\#19019](https://github.com/element-hq/synapse/issues/19019))
265
+ * Bump bcrypt from 4.3.0 to 5.0.0. ([\#18984](https://github.com/element-hq/synapse/issues/18984))
266
+ * Bump docker/login-action from 3.5.0 to 3.6.0. ([\#18978](https://github.com/element-hq/synapse/issues/18978))
267
+ * Bump lxml from 6.0.0 to 6.0.2. ([\#18979](https://github.com/element-hq/synapse/issues/18979))
268
+ * Bump phonenumbers from 9.0.13 to 9.0.14. ([\#18954](https://github.com/element-hq/synapse/issues/18954))
269
+ * Bump phonenumbers from 9.0.14 to 9.0.15. ([\#18991](https://github.com/element-hq/synapse/issues/18991))
270
+ * Bump prometheus-client from 0.22.1 to 0.23.1. ([\#19016](https://github.com/element-hq/synapse/issues/19016))
271
+ * Bump pydantic from 2.11.9 to 2.11.10. ([\#19017](https://github.com/element-hq/synapse/issues/19017))
272
+ * Bump pygithub from 2.7.0 to 2.8.1. ([\#18952](https://github.com/element-hq/synapse/issues/18952))
273
+ * Bump regex from 1.11.2 to 1.11.3. ([\#18981](https://github.com/element-hq/synapse/issues/18981))
274
+ * Bump serde from 1.0.224 to 1.0.226. ([\#18953](https://github.com/element-hq/synapse/issues/18953))
275
+ * Bump serde from 1.0.226 to 1.0.228. ([\#18982](https://github.com/element-hq/synapse/issues/18982))
276
+ * Bump setuptools-rust from 1.11.1 to 1.12.0. ([\#18980](https://github.com/element-hq/synapse/issues/18980))
277
+ * Bump twine from 6.1.0 to 6.2.0. ([\#18985](https://github.com/element-hq/synapse/issues/18985))
278
+ * Bump types-pyyaml from 6.0.12.20250809 to 6.0.12.20250915. ([\#19018](https://github.com/element-hq/synapse/issues/19018))
279
+ * Bump types-requests from 2.32.4.20250809 to 2.32.4.20250913. ([\#18951](https://github.com/element-hq/synapse/issues/18951))
280
+ * Bump typing-extensions from 4.14.1 to 4.15.0. ([\#18956](https://github.com/element-hq/synapse/issues/18956))
281
+
282
+ # Synapse 1.139.2 (2025-10-07)
283
+
284
+ ## Bugfixes
285
+
286
+ - Fix a bug introduced in 1.139.1 where a client could receive an Internal Server Error if they set `device_keys: null` in the request to [`POST /_matrix/client/v3/keys/upload`](https://spec.matrix.org/v1.16/client-server-api/#post_matrixclientv3keysupload). ([\#19023](https://github.com/element-hq/synapse/issues/19023))
287
+
288
+
289
+
290
+
291
+ # Synapse 1.139.1 (2025-10-07)
292
+
293
+ ## Security Fixes
294
+
295
+ - Fix [CVE-2025-61672](https://www.cve.org/CVERecord?id=CVE-2025-61672) / [GHSA-fh66-fcv5-jjfr](https://github.com/element-hq/synapse/security/advisories/GHSA-fh66-fcv5-jjfr). Lack of validation for device keys in Synapse before 1.139.1 allows an attacker registered on the victim homeserver to degrade federation functionality, unpredictably breaking outbound federation to other homeservers. ([\#17097](https://github.com/element-hq/synapse/issues/17097))
296
+
297
+ ## Deprecations and Removals
298
+
299
+ - Drop support for unstable field names from the long-accepted [MSC2732](https://github.com/matrix-org/matrix-spec-proposals/pull/2732) (Olm fallback keys) proposal. This change allows unit tests to pass following the security patch above. ([\#18996](https://github.com/element-hq/synapse/issues/18996))
300
+
301
+
302
+
303
+ # Synapse 1.138.4 (2025-10-07)
304
+
305
+ ## Bugfixes
306
+
307
+ - Fix a bug introduced in 1.138.3 where a client could receive an Internal Server Error if they set `device_keys: null` in the request to [`POST /_matrix/client/v3/keys/upload`](https://spec.matrix.org/v1.16/client-server-api/#post_matrixclientv3keysupload). ([\#19023](https://github.com/element-hq/synapse/issues/19023))
308
+
309
+
310
+
311
+
312
+ # Synapse 1.138.3 (2025-10-07)
313
+
314
+ ## Security Fixes
315
+
316
+ - Fix [CVE-2025-61672](https://www.cve.org/CVERecord?id=CVE-2025-61672) / [GHSA-fh66-fcv5-jjfr](https://github.com/element-hq/synapse/security/advisories/GHSA-fh66-fcv5-jjfr). Lack of validation for device keys in Synapse before 1.139.1 allows an attacker registered on the victim homeserver to degrade federation functionality, unpredictably breaking outbound federation to other homeservers. ([\#17097](https://github.com/element-hq/synapse/issues/17097))
317
+
318
+ ## Deprecations and Removals
319
+
320
+ - Drop support for unstable field names from the long-accepted [MSC2732](https://github.com/matrix-org/matrix-spec-proposals/pull/2732) (Olm fallback keys) proposal. This change allows unit tests to pass following the security patch above. ([\#18996](https://github.com/element-hq/synapse/issues/18996))
321
+
322
+ # Synapse 1.139.0 (2025-09-30)
323
+
324
+ ### `/register` requests from old application service implementations may break when using MAS
325
+
326
+ If you are using Matrix Authentication Service (MAS), as of this release any
327
+ Application Services that do not set `inhibit_login=true` when calling `POST
328
+ /_matrix/client/v3/register` will receive the error
329
+ `IO.ELEMENT.MSC4190.M_APPSERVICE_LOGIN_UNSUPPORTED` in response. Please see [the
330
+ upgrade
331
+ notes](https://element-hq.github.io/synapse/develop/upgrade.html#register-requests-from-old-application-service-implementations-may-break-when-using-mas)
332
+ for more information.
333
+
334
+ No significant changes since 1.139.0rc3.
335
+
336
+
337
+ # Synapse 1.139.0rc3 (2025-09-25)
338
+
339
+ ## Bugfixes
340
+
341
+ - Fix a bug introduced in 1.139.0rc1 where `run_coroutine_in_background(...)` incorrectly handled logcontexts, resulting in partially broken logging. ([\#18964](https://github.com/element-hq/synapse/issues/18964))
342
+
343
+
344
+
345
+
346
+ # Synapse 1.139.0rc2 (2025-09-23)
347
+
348
+ ## Internal Changes
349
+
350
+ - Drop support for Ubuntu 24.10 Oracular Oriole, and add support for Ubuntu 25.04 Plucky Puffin. This change was applied on top of 1.139.0rc1. ([\#18962](https://github.com/element-hq/synapse/issues/18962))
351
+
352
+
353
+
354
+ # Synapse 1.139.0rc1 (2025-09-23)
355
+
356
+ ## Features
357
+
358
+ - Add experimental support for [MSC4308: Thread Subscriptions extension to Sliding Sync](https://github.com/matrix-org/matrix-spec-proposals/pull/4308) when [MSC4306: Thread Subscriptions](https://github.com/matrix-org/matrix-spec-proposals/pull/4306) and [MSC4186: Simplified Sliding Sync](https://github.com/matrix-org/matrix-spec-proposals/pull/4186) are enabled. ([\#18695](https://github.com/element-hq/synapse/issues/18695))
359
+ - Update push rules for experimental [MSC4306: Thread Subscriptions](https://github.com/matrix-org/matrix-doc/issues/4306) to follow a newer draft. ([\#18846](https://github.com/element-hq/synapse/issues/18846))
360
+ - Add `get_media_upload_limits_for_user` and `on_media_upload_limit_exceeded` module API callbacks to the media repository. ([\#18848](https://github.com/element-hq/synapse/issues/18848))
361
+ - Support [MSC4169](https://github.com/matrix-org/matrix-spec-proposals/pull/4169) for backwards-compatible redaction sending using the `/send` endpoint. Contributed by @SpiritCroc @ Beeper. ([\#18898](https://github.com/element-hq/synapse/issues/18898))
362
+ - Add an in-memory cache to `_get_e2e_cross_signing_signatures_for_devices` to reduce DB load. ([\#18899](https://github.com/element-hq/synapse/issues/18899))
363
+ - Update [MSC4190](https://github.com/matrix-org/matrix-spec-proposals/pull/4190) support to return correct errors and allow appservices to reset cross-signing keys without user-interactive authentication. Contributed by @tulir @ Beeper. ([\#18946](https://github.com/element-hq/synapse/issues/18946))
364
+
365
+ ## Bugfixes
366
+
367
+ - Ensure all PDUs sent via `/send` pass canonical JSON checks. ([\#18641](https://github.com/element-hq/synapse/issues/18641))
368
+ - Fix bug where we did not send invite revocations over federation. ([\#18823](https://github.com/element-hq/synapse/issues/18823))
369
+ - Fix prefixed support for [MSC4133](https://github.com/matrix-org/matrix-spec-proposals/pull/4133). ([\#18875](https://github.com/element-hq/synapse/issues/18875))
370
+ - Fix open redirect in legacy SSO flow with the `idp` query parameter. ([\#18909](https://github.com/element-hq/synapse/issues/18909))
371
+ - Fix a performance regression related to the experimental Delayed Events ([MSC4140](https://github.com/matrix-org/matrix-spec-proposals/pull/4140)) feature. ([\#18926](https://github.com/element-hq/synapse/issues/18926))
372
+
373
+ ## Updates to the Docker image
374
+
375
+ - Suppress "Applying schema" log noise bulk when `SYNAPSE_LOG_TESTING` is set. ([\#18878](https://github.com/element-hq/synapse/issues/18878))
376
+
377
+ ## Improved Documentation
378
+
379
+ - Clarify Python dependency constraints in our deprecation policy. ([\#18856](https://github.com/element-hq/synapse/issues/18856))
380
+ - Clarify necessary `jwt_config` parameter in OIDC documentation for authentik. Contributed by @maxkratz. ([\#18931](https://github.com/element-hq/synapse/issues/18931))
381
+
382
+ ## Deprecations and Removals
383
+
384
+ - Remove obsolete and experimental `/sync/e2ee` endpoint. ([\#18583](https://github.com/element-hq/synapse/issues/18583))
385
+
386
+ ## Internal Changes
387
+
388
+ - Fix `LaterGauge` metrics to collect from all servers. ([\#18791](https://github.com/element-hq/synapse/issues/18791))
389
+ - Configure Synapse to run [MSC4306: Thread Subscriptions](https://github.com/matrix-org/matrix-spec-proposals/pull/4306) Complement tests. ([\#18819](https://github.com/element-hq/synapse/issues/18819))
390
+ - Remove `sentinel` logcontext usage where we log in `setup`, `start` and `exit`. ([\#18870](https://github.com/element-hq/synapse/issues/18870))
391
+ - Use the `Enum`'s value for the dictionary key when responding to an admin request for experimental features. ([\#18874](https://github.com/element-hq/synapse/issues/18874))
392
+ - Start background tasks after we fork the process (daemonize). ([\#18886](https://github.com/element-hq/synapse/issues/18886))
393
+ - Better explain how we manage the logcontext in `run_in_background(...)` and `run_as_background_process(...)`. ([\#18900](https://github.com/element-hq/synapse/issues/18900), [\#18906](https://github.com/element-hq/synapse/issues/18906))
394
+ - Remove `sentinel` logcontext usage in `Clock` utilities like `looping_call` and `call_later`. ([\#18907](https://github.com/element-hq/synapse/issues/18907))
395
+ - Replace usages of the deprecated `pkg_resources` interface in preparation of setuptools dropping it soon. ([\#18910](https://github.com/element-hq/synapse/issues/18910))
396
+ - Split loading config from homeserver `setup`. ([\#18933](https://github.com/element-hq/synapse/issues/18933))
397
+ - Fix `run_in_background` not being awaited properly in some tests causing `LoggingContext` problems. ([\#18937](https://github.com/element-hq/synapse/issues/18937))
398
+ - Fix `run_as_background_process` not being awaited properly causing `LoggingContext` problems in experimental [MSC4140](https://github.com/matrix-org/matrix-spec-proposals/pull/4140): Delayed events implementation. ([\#18938](https://github.com/element-hq/synapse/issues/18938))
399
+ - Introduce `Clock.call_when_running(...)` to wrap startup code in a logcontext, ensuring we can identify which server generated the logs. ([\#18944](https://github.com/element-hq/synapse/issues/18944))
400
+ - Introduce `Clock.add_system_event_trigger(...)` to wrap system event callback code in a logcontext, ensuring we can identify which server generated the logs. ([\#18945](https://github.com/element-hq/synapse/issues/18945))
401
+
402
+
403
+
404
+ ### Updates to locked dependencies
405
+
406
+ * Bump actions/setup-go from 5.5.0 to 6.0.0. ([\#18891](https://github.com/element-hq/synapse/issues/18891))
407
+ * Bump actions/setup-python from 5.6.0 to 6.0.0. ([\#18890](https://github.com/element-hq/synapse/issues/18890))
408
+ * Bump authlib from 1.6.1 to 1.6.3. ([\#18921](https://github.com/element-hq/synapse/issues/18921))
409
+ * Bump jsonschema from 4.25.0 to 4.25.1. ([\#18897](https://github.com/element-hq/synapse/issues/18897))
410
+ * Bump log from 0.4.27 to 0.4.28. ([\#18892](https://github.com/element-hq/synapse/issues/18892))
411
+ * Bump phonenumbers from 9.0.12 to 9.0.13. ([\#18893](https://github.com/element-hq/synapse/issues/18893))
412
+ * Bump pydantic from 2.11.7 to 2.11.9. ([\#18922](https://github.com/element-hq/synapse/issues/18922))
413
+ * Bump serde from 1.0.219 to 1.0.223. ([\#18920](https://github.com/element-hq/synapse/issues/18920))
414
+ * Bump serde_json from 1.0.143 to 1.0.145. ([\#18919](https://github.com/element-hq/synapse/issues/18919))
415
+ * Bump sigstore/cosign-installer from 3.9.2 to 3.10.0. ([\#18917](https://github.com/element-hq/synapse/issues/18917))
416
+ * Bump towncrier from 24.8.0 to 25.8.0. ([\#18894](https://github.com/element-hq/synapse/issues/18894))
417
+ * Bump types-psycopg2 from 2.9.21.20250809 to 2.9.21.20250915. ([\#18918](https://github.com/element-hq/synapse/issues/18918))
418
+ * Bump types-requests from 2.32.4.20250611 to 2.32.4.20250809. ([\#18895](https://github.com/element-hq/synapse/issues/18895))
419
+ * Bump types-setuptools from 80.9.0.20250809 to 80.9.0.20250822. ([\#18924](https://github.com/element-hq/synapse/issues/18924))
420
+
421
+ # Synapse 1.138.2 (2025-09-24)
422
+
423
+ ## Internal Changes
424
+
425
+ - Drop support for Ubuntu 24.10 Oracular Oriole, and add support for Ubuntu 25.04 Plucky Puffin. This change was applied on top of 1.138.1. ([\#18962](https://github.com/element-hq/synapse/issues/18962))
426
+
427
+
428
+
429
+ # Synapse 1.138.1 (2025-09-24)
430
+
431
+ ## Bugfixes
432
+
433
+ - Fix a performance regression related to the experimental Delayed Events ([MSC4140](https://github.com/matrix-org/matrix-spec-proposals/pull/4140)) feature. ([\#18926](https://github.com/element-hq/synapse/issues/18926))
434
+
435
+
436
+
437
+
438
+ # Synapse 1.138.0 (2025-09-09)
439
+
440
+ No significant changes since 1.138.0rc1.
441
+
442
+
443
+
444
+
445
+ # Synapse 1.138.0rc1 (2025-09-02)
446
+
447
+ ### Features
448
+
449
+ - Support for the stable endpoint and scopes of [MSC3861](https://github.com/matrix-org/matrix-spec-proposals/pull/3861) & co. ([\#18549](https://github.com/element-hq/synapse/issues/18549))
450
+
451
+ ### Bugfixes
452
+
453
+ - Improve database performance of [MSC4293](https://github.com/matrix-org/matrix-spec-proposals/pull/4293) - Redact on Kick/Ban. ([\#18851](https://github.com/element-hq/synapse/issues/18851))
454
+ - Do not throw an error when fetching a rejected delayed state event on startup. ([\#18858](https://github.com/element-hq/synapse/issues/18858))
455
+
456
+ ### Improved Documentation
457
+
458
+ - Fix worker documentation incorrectly indicating all room Admin API requests were capable of being handled by workers. ([\#18853](https://github.com/element-hq/synapse/issues/18853))
459
+
460
+ ### Internal Changes
461
+
462
+ - Instrument `_ByteProducer` with tracing to measure potential dead time while writing bytes to the request. ([\#18804](https://github.com/element-hq/synapse/issues/18804))
463
+ - Switch to OpenTracing's `ContextVarsScopeManager` instead of our own custom `LogContextScopeManager`. ([\#18849](https://github.com/element-hq/synapse/issues/18849))
464
+ - Trace how much work is being done while "recursively fetching redactions". ([\#18854](https://github.com/element-hq/synapse/issues/18854))
465
+ - Link [upstream Twisted bug](https://github.com/twisted/twisted/issues/12498) tracking the problem that explains why we have to use a `Producer` to write bytes to the request. ([\#18855](https://github.com/element-hq/synapse/issues/18855))
466
+ - Introduce `EventPersistencePair` type. ([\#18857](https://github.com/element-hq/synapse/issues/18857))
467
+
468
+
469
+
470
+ ### Updates to locked dependencies
471
+
472
+ * Bump actions/add-to-project from c0c5949b017d0d4a39f7ba888255881bdac2a823 to 4515659e2b458b27365e167605ac44f219494b66. ([\#18863](https://github.com/element-hq/synapse/issues/18863))
473
+ * Bump actions/checkout from 4.3.0 to 5.0.0. ([\#18834](https://github.com/element-hq/synapse/issues/18834))
474
+ * Bump anyhow from 1.0.98 to 1.0.99. ([\#18841](https://github.com/element-hq/synapse/issues/18841))
475
+ * Bump docker/login-action from 3.4.0 to 3.5.0. ([\#18835](https://github.com/element-hq/synapse/issues/18835))
476
+ * Bump dtolnay/rust-toolchain from b3b07ba8b418998c39fb20f53e8b695cdcc8de1b to e97e2d8cc328f1b50210efc529dca0028893a2d9. ([\#18862](https://github.com/element-hq/synapse/issues/18862))
477
+ * Bump phonenumbers from 9.0.11 to 9.0.12. ([\#18837](https://github.com/element-hq/synapse/issues/18837))
478
+ * Bump regex from 1.11.1 to 1.11.2. ([\#18864](https://github.com/element-hq/synapse/issues/18864))
479
+ * Bump reqwest from 0.12.22 to 0.12.23. ([\#18842](https://github.com/element-hq/synapse/issues/18842))
480
+ * Bump ruff from 0.12.7 to 0.12.10. ([\#18865](https://github.com/element-hq/synapse/issues/18865))
481
+ * Bump serde_json from 1.0.142 to 1.0.143. ([\#18866](https://github.com/element-hq/synapse/issues/18866))
482
+ * Bump types-bleach from 6.2.0.20250514 to 6.2.0.20250809. ([\#18838](https://github.com/element-hq/synapse/issues/18838))
483
+ * Bump types-jsonschema from 4.25.0.20250720 to 4.25.1.20250822. ([\#18867](https://github.com/element-hq/synapse/issues/18867))
484
+ * Bump types-psycopg2 from 2.9.21.20250718 to 2.9.21.20250809. ([\#18836](https://github.com/element-hq/synapse/issues/18836))
485
+
486
+ # Synapse 1.137.0 (2025-08-26)
487
+
488
+ No significant changes since 1.137.0rc1.
489
+
490
+
491
+
492
+
493
+ # Synapse 1.137.0rc1 (2025-08-19)
494
+
495
+ ### Bugfixes
496
+
497
+ - Fix a bug which could corrupt auth chains making it impossible to perform state resolution. ([\#18746](https://github.com/element-hq/synapse/issues/18746))
498
+ - Fix error message in `register_new_matrix_user` utility script for empty `registration_shared_secret`. ([\#18780](https://github.com/element-hq/synapse/issues/18780))
499
+ - Allow enabling [MSC4108](https://github.com/matrix-org/matrix-spec-proposals/pull/4108) when the stable Matrix Authentication Service integration is enabled. ([\#18832](https://github.com/element-hq/synapse/issues/18832))
500
+
501
+ ### Improved Documentation
502
+
503
+ - Include IPv6 networks in `denied-peer-ips` of coturn setup. Contributed by @litetex. ([\#18781](https://github.com/element-hq/synapse/issues/18781))
504
+
505
+ ### Internal Changes
506
+
507
+ - Update tests to ensure all database tables are emptied when purging a room. ([\#18794](https://github.com/element-hq/synapse/issues/18794))
508
+ - Instrument the `encode_response` part of Sliding Sync requests for more complete traces in Jaeger. ([\#18815](https://github.com/element-hq/synapse/issues/18815))
509
+ - Tag Sliding Sync traces when we `wait_for_events`. ([\#18816](https://github.com/element-hq/synapse/issues/18816))
510
+ - Fix `portdb` CI by hardcoding the new `pg_dump` restrict key that was added due to [CVE-2025-8714](https://nvd.nist.gov/vuln/detail/cve-2025-8714). ([\#18824](https://github.com/element-hq/synapse/issues/18824))
511
+
512
+
513
+
514
+ ### Updates to locked dependencies
515
+
516
+ * Bump actions/add-to-project from 5b1a254a3546aef88e0a7724a77a623fa2e47c36 to 0c37450c4be3b6a7582b2fb013c9ebfd9c8e9300. ([\#18557](https://github.com/element-hq/synapse/issues/18557))
517
+ * Bump actions/cache from 4.2.3 to 4.2.4. ([\#18799](https://github.com/element-hq/synapse/issues/18799))
518
+ * Bump actions/checkout from 4.2.2 to 4.3.0. ([\#18800](https://github.com/element-hq/synapse/issues/18800))
519
+ * Bump actions/download-artifact from 4.3.0 to 5.0.0. ([\#18801](https://github.com/element-hq/synapse/issues/18801))
520
+ * Bump docker/metadata-action from 5.7.0 to 5.8.0. ([\#18773](https://github.com/element-hq/synapse/issues/18773))
521
+ * Bump mypy from 1.16.1 to 1.17.1. ([\#18775](https://github.com/element-hq/synapse/issues/18775))
522
+ * Bump phonenumbers from 9.0.10 to 9.0.11. ([\#18797](https://github.com/element-hq/synapse/issues/18797))
523
+ * Bump pygithub from 2.6.1 to 2.7.0. ([\#18779](https://github.com/element-hq/synapse/issues/18779))
524
+ * Bump serde_json from 1.0.141 to 1.0.142. ([\#18776](https://github.com/element-hq/synapse/issues/18776))
525
+ * Bump slab from 0.4.10 to 0.4.11. ([\#18809](https://github.com/element-hq/synapse/issues/18809))
526
+ * Bump tokio from 1.47.0 to 1.47.1. ([\#18774](https://github.com/element-hq/synapse/issues/18774))
527
+ * Bump types-pyyaml from 6.0.12.20250516 to 6.0.12.20250809. ([\#18798](https://github.com/element-hq/synapse/issues/18798))
528
+ * Bump types-setuptools from 80.9.0.20250529 to 80.9.0.20250809. ([\#18796](https://github.com/element-hq/synapse/issues/18796))
529
+
530
+ # Synapse 1.136.0 (2025-08-12)
531
+
532
+ Note: This release includes the security fixes from `1.135.2` and `1.136.0rc2`, detailed below.
533
+
534
+ ### Bugfixes
535
+
536
+ - Fix bug introduced in 1.135.2 and 1.136.0rc2 where the [Make Room Admin API](https://element-hq.github.io/synapse/latest/admin_api/rooms.html#make-room-admin-api) would not treat a room v12's creator power level as the highest in room. ([\#18805](https://github.com/element-hq/synapse/issues/18805))
537
+
538
+
539
+ # Synapse 1.135.2 (2025-08-11)
540
+
541
+ This is the Synapse portion of the [Matrix coordinated security release](https://matrix.org/blog/2025/07/security-predisclosure/). This release includes support for [room version](https://spec.matrix.org/v1.15/rooms/) 12 which fixes a number of security vulnerabilities, including [CVE-2025-49090](https://www.cve.org/CVERecord?id=CVE-2025-49090).
542
+
543
+ The default room version is not changed. Not all clients will support room version 12 immediately, and not all users will be using the latest version of their clients. Large, public rooms are advised to wait a few weeks before upgrading to room version 12 to allow users throughout the Matrix ecosystem to update their clients.
544
+
545
+ Note: release 1.135.1 was skipped due to issues discovered during the release process.
546
+
547
+ Two patched Synapse releases are now available:
548
+
549
+ * `1.135.2`: stable release comprised of `1.135.0` + security patches
550
+ * Upgrade to this release **if you are currently running 1.135.0 or below**.
551
+ * `1.136.0rc2`: unstable release candidate comprised of `1.136.0rc1` + security patches.
552
+ * Upgrade to this release **only if you are on 1.136.0rc1**.
553
+
554
+ ### Bugfixes
555
+
556
+ - Fix invalidation of storage cache that was broken in 1.135.0. ([\#18786](https://github.com/element-hq/synapse/issues/18786))
557
+
558
+ ### Internal Changes
559
+
560
+ - Add a parameter to `upgrade_rooms(..)` to allow auto join local users. ([\#82](https://github.com/element-hq/synapse/issues/82))
561
+ - Speed up upgrading a room with large numbers of banned users. ([\#18574](https://github.com/element-hq/synapse/issues/18574))
562
+
563
+
564
+ # Synapse 1.136.0rc2 (2025-08-11)
565
+
566
+ - Update MSC4293 redaction logic for room v12. ([\#80](https://github.com/element-hq/synapse/issues/80))
567
+
568
+ ### Internal Changes
569
+
570
+ - Add a parameter to `upgrade_rooms(..)` to allow auto join local users. ([\#83](https://github.com/element-hq/synapse/issues/83))
571
+
572
+
573
+ # Synapse 1.136.0rc1 (2025-08-05)
574
+
575
+ Please check [the relevant section in the upgrade notes](https://github.com/element-hq/synapse/blob/develop/docs/upgrade.md#upgrading-to-v11360) as this release contains changes to MAS support, metrics labels and the module API which may require your attention when upgrading.
576
+
577
+ ### Features
578
+
579
+ - Add configurable rate limiting for the creation of rooms. ([\#18514](https://github.com/element-hq/synapse/issues/18514))
580
+ - Add support for [MSC4293](https://github.com/matrix-org/matrix-spec-proposals/pull/4293) - Redact on Kick/Ban. ([\#18540](https://github.com/element-hq/synapse/issues/18540))
581
+ - When admins enable themselves to see soft-failed events, they will also see if the cause is due to the policy server flagging them as spam via `unsigned`. ([\#18585](https://github.com/element-hq/synapse/issues/18585))
582
+ - Add ability to configure forward/outbound proxy via homeserver config instead of environment variables. See `http_proxy`, `https_proxy`, `no_proxy_hosts`. ([\#18686](https://github.com/element-hq/synapse/issues/18686))
583
+ - Advertise experimental support for [MSC4306](https://github.com/matrix-org/matrix-spec-proposals/pull/4306) (Thread Subscriptions) through `/_matrix/clients/versions` if enabled. ([\#18722](https://github.com/element-hq/synapse/issues/18722))
584
+ - Stabilise support for delegating authentication to [Matrix Authentication Service](https://github.com/element-hq/matrix-authentication-service/). ([\#18759](https://github.com/element-hq/synapse/issues/18759))
585
+ - Implement the push rules for experimental [MSC4306: Thread Subscriptions](https://github.com/matrix-org/matrix-doc/issues/4306). ([\#18762](https://github.com/element-hq/synapse/issues/18762))
586
+
587
+ ### Bugfixes
588
+
589
+ - Allow return code 403 (allowed by C2S Spec since v1.2) when fetching profiles via federation. ([\#18696](https://github.com/element-hq/synapse/issues/18696))
590
+ - Register the MSC4306 (Thread Subscriptions) endpoints in the CS API when the experimental feature is enabled. ([\#18726](https://github.com/element-hq/synapse/issues/18726))
591
+ - Fix a long-standing bug where suspended users could not have server notices sent to them (a 403 was returned to the admin). ([\#18750](https://github.com/element-hq/synapse/issues/18750))
592
+ - Fix an issue that could cause logcontexts to be lost on rate-limited requests. Found by @realtyem. ([\#18763](https://github.com/element-hq/synapse/issues/18763))
593
+ - Fix invalidation of storage cache that was broken in 1.135.0. ([\#18786](https://github.com/element-hq/synapse/issues/18786))
594
+
595
+ ### Improved Documentation
596
+
597
+ - Minor improvements to README. ([\#18700](https://github.com/element-hq/synapse/issues/18700))
598
+ - Document that there can be multiple workers handling the `receipts` stream. ([\#18760](https://github.com/element-hq/synapse/issues/18760))
599
+ - Improve worker documentation for some device paths. ([\#18761](https://github.com/element-hq/synapse/issues/18761))
600
+
601
+ ### Deprecations and Removals
602
+
603
+ - Deprecate `run_as_background_process` exported as part of the module API interface in favor of `ModuleApi.run_as_background_process`. See [the relevant section in the upgrade notes](https://github.com/element-hq/synapse/blob/develop/docs/upgrade.md#upgrading-to-v11360) for more information. ([\#18737](https://github.com/element-hq/synapse/issues/18737))
604
+
605
+ ### Internal Changes
606
+
607
+ - Add debug logging for HMAC digest verification failures when using the admin API to register users. ([\#18474](https://github.com/element-hq/synapse/issues/18474))
608
+ - Speed up upgrading a room with large numbers of banned users. ([\#18574](https://github.com/element-hq/synapse/issues/18574))
609
+ - Fix config documentation generation script on Windows by enforcing UTF-8. ([\#18580](https://github.com/element-hq/synapse/issues/18580))
610
+ - Refactor cache, background process, `Counter`, `LaterGauge`, `GaugeBucketCollector`, `Histogram`, and `Gauge` metrics to be homeserver-scoped. ([\#18656](https://github.com/element-hq/synapse/issues/18656), [\#18714](https://github.com/element-hq/synapse/issues/18714), [\#18715](https://github.com/element-hq/synapse/issues/18715), [\#18724](https://github.com/element-hq/synapse/issues/18724), [\#18753](https://github.com/element-hq/synapse/issues/18753), [\#18725](https://github.com/element-hq/synapse/issues/18725), [\#18670](https://github.com/element-hq/synapse/issues/18670), [\#18748](https://github.com/element-hq/synapse/issues/18748), [\#18751](https://github.com/element-hq/synapse/issues/18751))
611
+ - Reduce database usage in Sliding Sync by not querying for background update completion after the update is known to be complete. ([\#18718](https://github.com/element-hq/synapse/issues/18718))
612
+ - Improve order of validation and ratelimiting in room creation. ([\#18723](https://github.com/element-hq/synapse/issues/18723))
613
+ - Bump minimum version bound on Twisted to 21.2.0. ([\#18727](https://github.com/element-hq/synapse/issues/18727), [\#18729](https://github.com/element-hq/synapse/issues/18729))
614
+ - Use `twisted.internet.testing` module in tests instead of deprecated `twisted.test.proto_helpers`. ([\#18728](https://github.com/element-hq/synapse/issues/18728))
615
+ - Remove obsolete `/send_event` replication endpoint. ([\#18730](https://github.com/element-hq/synapse/issues/18730))
616
+ - Update metrics linting to be able to handle custom metrics. ([\#18733](https://github.com/element-hq/synapse/issues/18733))
617
+ - Work around `twisted.protocols.amp.TooLong` error by reducing logging in some tests. ([\#18736](https://github.com/element-hq/synapse/issues/18736))
618
+ - Prevent "Move labelled issues to correct projects" GitHub Actions workflow from failing when an issue is already on the project board. ([\#18755](https://github.com/element-hq/synapse/issues/18755))
619
+ - Bump minimum supported Rust version (MSRV) to 1.82.0. Missed in [#18553](https://github.com/element-hq/synapse/pull/18553) (released in Synapse 1.134.0). ([\#18757](https://github.com/element-hq/synapse/issues/18757))
620
+ - Make `Clock.sleep(...)` return a coroutine, so that mypy can catch places where we don't await on it. ([\#18772](https://github.com/element-hq/synapse/issues/18772))
621
+ - Update implementation of [MSC4306: Thread Subscriptions](https://github.com/matrix-org/matrix-doc/issues/4306) to include automatic subscription conflict prevention as introduced in later drafts. ([\#18756](https://github.com/element-hq/synapse/issues/18756))
622
+
623
+
624
+
625
+ ### Updates to locked dependencies
626
+
627
+ * Bump gitpython from 3.1.44 to 3.1.45. ([\#18743](https://github.com/element-hq/synapse/issues/18743))
628
+ * Bump mypy-zope from 1.0.12 to 1.0.13. ([\#18744](https://github.com/element-hq/synapse/issues/18744))
629
+ * Bump phonenumbers from 9.0.9 to 9.0.10. ([\#18741](https://github.com/element-hq/synapse/issues/18741))
630
+ * Bump ruff from 0.12.4 to 0.12.5. ([\#18742](https://github.com/element-hq/synapse/issues/18742))
631
+ * Bump sentry-sdk from 2.32.0 to 2.33.2. ([\#18745](https://github.com/element-hq/synapse/issues/18745))
632
+ * Bump tokio from 1.46.1 to 1.47.0. ([\#18740](https://github.com/element-hq/synapse/issues/18740))
633
+ * Bump types-jsonschema from 4.24.0.20250708 to 4.25.0.20250720. ([\#18703](https://github.com/element-hq/synapse/issues/18703))
634
+ * Bump types-psycopg2 from 2.9.21.20250516 to 2.9.21.20250718. ([\#18706](https://github.com/element-hq/synapse/issues/18706))
635
+
636
+ # Synapse 1.135.0 (2025-08-01)
637
+
638
+ No significant changes since 1.135.0rc2.
639
+
640
+
641
+
642
+
643
+ # Synapse 1.135.0rc2 (2025-07-30)
644
+
645
+ ### Bugfixes
646
+
647
+ - Fix user failing to deactivate with MAS when `/_synapse/mas` is handled by a worker. ([\#18716](https://github.com/element-hq/synapse/issues/18716))
648
+
649
+ ### Internal Changes
650
+
651
+ - Fix performance regression introduced in [#18238](https://github.com/element-hq/synapse/issues/18238) by adding a cache to `is_server_admin`. ([\#18747](https://github.com/element-hq/synapse/issues/18747))
652
+
653
+
654
+
655
+
656
+ # Synapse 1.135.0rc1 (2025-07-22)
657
+
658
+ ### Features
659
+
660
+ - Add `recaptcha_private_key_path` and `recaptcha_public_key_path` config option. ([\#17984](https://github.com/element-hq/synapse/issues/17984), [\#18684](https://github.com/element-hq/synapse/issues/18684))
661
+ - Add plain-text handling for rich-text topics as per [MSC3765](https://github.com/matrix-org/matrix-spec-proposals/pull/3765). ([\#18195](https://github.com/element-hq/synapse/issues/18195))
662
+ - If enabled by the user, server admins will see [soft failed](https://spec.matrix.org/v1.13/server-server-api/#soft-failure) events over the Client-Server API. ([\#18238](https://github.com/element-hq/synapse/issues/18238))
663
+ - Add experimental support for [MSC4277: Harmonizing the reporting endpoints](https://github.com/matrix-org/matrix-spec-proposals/pull/4277). ([\#18263](https://github.com/element-hq/synapse/issues/18263))
664
+ - Add ability to limit amount of media uploaded by a user in a given time period. ([\#18527](https://github.com/element-hq/synapse/issues/18527))
665
+ - Enable workers to write directly to the device lists stream and handle device list updates, reducing load on the main process. ([\#18581](https://github.com/element-hq/synapse/issues/18581))
666
+ - Support arbitrary profile fields. Contributed by @clokep. ([\#18635](https://github.com/element-hq/synapse/issues/18635))
667
+ - Advertise support for Matrix v1.12. ([\#18647](https://github.com/element-hq/synapse/issues/18647))
668
+ - Add an option to issue redactions as an admin user via the [admin redaction endpoint](https://element-hq.github.io/synapse/latest/admin_api/user_admin_api.html#redact-all-the-events-of-a-user). ([\#18671](https://github.com/element-hq/synapse/issues/18671))
669
+ - Add experimental and incomplete support for [MSC4306: Thread Subscriptions](https://github.com/matrix-org/matrix-spec-proposals/blob/rei/msc_thread_subscriptions/proposals/4306-thread-subscriptions.md). ([\#18674](https://github.com/element-hq/synapse/issues/18674))
670
+ - Include `event_id` when getting state with `?format=event`. Contributed by @tulir @ Beeper. ([\#18675](https://github.com/element-hq/synapse/issues/18675))
671
+
672
+ ### Bugfixes
673
+
674
+ - Fix CPU and database spinning when retrying sending events to servers whilst at the same time purging those events. ([\#18499](https://github.com/element-hq/synapse/issues/18499))
675
+ - Don't allow creation of tags with names longer than 255 bytes, [as per the spec](https://spec.matrix.org/v1.15/client-server-api/#events-14). ([\#18660](https://github.com/element-hq/synapse/issues/18660))
676
+ - Fix `sliding_sync_connections`-related errors when porting from SQLite to Postgres. ([\#18677](https://github.com/element-hq/synapse/issues/18677))
677
+ - Fix the MAS integration not working when Synapse is started with `--daemonize` or using `synctl`. ([\#18691](https://github.com/element-hq/synapse/issues/18691))
678
+
679
+ ### Improved Documentation
680
+
681
+ - Document that some config options for the user directory are in violation of the Matrix spec. ([\#18548](https://github.com/element-hq/synapse/issues/18548))
682
+ - Update `rc_delayed_event_mgmt` docs to the actual nesting level. Contributed by @HarHarLinks. ([\#18692](https://github.com/element-hq/synapse/issues/18692))
683
+
684
+ ### Internal Changes
685
+
686
+ - Add a dedicated internal API for Matrix Authentication Service to Synapse communication. ([\#18520](https://github.com/element-hq/synapse/issues/18520))
687
+ - Allow user registrations to be done on workers. ([\#18552](https://github.com/element-hq/synapse/issues/18552))
688
+ - Remove unnecessary HTTP replication calls. ([\#18564](https://github.com/element-hq/synapse/issues/18564))
689
+ - Refactor `Measure` block metrics to be homeserver-scoped. ([\#18601](https://github.com/element-hq/synapse/issues/18601))
690
+ - Refactor cache metrics to be homeserver-scoped. ([\#18604](https://github.com/element-hq/synapse/issues/18604))
691
+ - Unbreak "Latest dependencies" workflow by using the `--without dev` poetry option instead of removed `--no-dev`. ([\#18617](https://github.com/element-hq/synapse/issues/18617))
692
+ - Update URL Preview code to work with `lxml` 6.0.0+. ([\#18622](https://github.com/element-hq/synapse/issues/18622))
693
+ - Use `markdown-it-py` instead of `commonmark` in the release script. ([\#18637](https://github.com/element-hq/synapse/issues/18637))
694
+ - Fix typing errors with upgraded mypy version. ([\#18653](https://github.com/element-hq/synapse/issues/18653))
695
+ - Add doc comment explaining that config files are shallowly merged. ([\#18664](https://github.com/element-hq/synapse/issues/18664))
696
+ - Minor speed up of insertion into `stream_positions` table. ([\#18672](https://github.com/element-hq/synapse/issues/18672))
697
+ - Remove unused `allow_no_prev_events` option when creating an event. ([\#18676](https://github.com/element-hq/synapse/issues/18676))
698
+ - Clean up `MetricsResource` and Prometheus hacks. ([\#18687](https://github.com/element-hq/synapse/issues/18687))
699
+ - Fix dirty `Cargo.lock` changes appearing after install (`base64`). ([\#18689](https://github.com/element-hq/synapse/issues/18689))
700
+ - Prevent dirty `Cargo.lock` changes from install. ([\#18693](https://github.com/element-hq/synapse/issues/18693))
701
+ - Correct spelling of 'Admin token used' log line. ([\#18697](https://github.com/element-hq/synapse/issues/18697))
702
+ - Reduce log spam when client stops downloading media while it is being streamed to them. ([\#18699](https://github.com/element-hq/synapse/issues/18699))
703
+
704
+
705
+
706
+ ### Updates to locked dependencies
707
+
708
+ * Bump authlib from 1.6.0 to 1.6.1. ([\#18704](https://github.com/element-hq/synapse/issues/18704))
709
+ * Bump base64 from 0.21.7 to 0.22.1. ([\#18666](https://github.com/element-hq/synapse/issues/18666))
710
+ * Bump jsonschema from 4.24.0 to 4.25.0. ([\#18707](https://github.com/element-hq/synapse/issues/18707))
711
+ * Bump lxml from 5.4.0 to 6.0.0. ([\#18631](https://github.com/element-hq/synapse/issues/18631))
712
+ * Bump mypy from 1.13.0 to 1.16.1. ([\#18653](https://github.com/element-hq/synapse/issues/18653))
713
+ * Bump once_cell from 1.19.0 to 1.21.3. ([\#18710](https://github.com/element-hq/synapse/issues/18710))
714
+ * Bump phonenumbers from 9.0.8 to 9.0.9. ([\#18681](https://github.com/element-hq/synapse/issues/18681))
715
+ * Bump ruff from 0.12.2 to 0.12.5. ([\#18683](https://github.com/element-hq/synapse/issues/18683), [\#18705](https://github.com/element-hq/synapse/issues/18705))
716
+ * Bump serde_json from 1.0.140 to 1.0.141. ([\#18709](https://github.com/element-hq/synapse/issues/18709))
717
+ * Bump sigstore/cosign-installer from 3.9.1 to 3.9.2. ([\#18708](https://github.com/element-hq/synapse/issues/18708))
718
+ * Bump types-jsonschema from 4.24.0.20250528 to 4.24.0.20250708. ([\#18682](https://github.com/element-hq/synapse/issues/18682))
719
+
720
+ # Synapse 1.134.0 (2025-07-15)
721
+
722
+ No significant changes since 1.134.0rc1.
723
+
724
+
725
+
726
+
727
+ # Synapse 1.134.0rc1 (2025-07-09)
728
+
729
+ ### Features
730
+
731
+ - Support for [MSC4235](https://github.com/matrix-org/matrix-spec-proposals/pull/4235): `via` query param for hierarchy endpoint. Contributed by Krishan (@kfiven). ([\#18070](https://github.com/element-hq/synapse/issues/18070))
732
+ - Add `forget_forced_upon_leave` capability as per [MSC4267](https://github.com/matrix-org/matrix-spec-proposals/pull/4267). ([\#18196](https://github.com/element-hq/synapse/issues/18196))
733
+ - Add `federated_user_may_invite` spam checker callback which receives the entire invite event. Contributed by @tulir @ Beeper. ([\#18241](https://github.com/element-hq/synapse/issues/18241))
734
+
735
+ ### Bugfixes
736
+
737
+ - Fix `KeyError` on background updates when using split main/state databases. ([\#18509](https://github.com/element-hq/synapse/issues/18509))
738
+ - Improve performance of device deletion by adding missing index. ([\#18582](https://github.com/element-hq/synapse/issues/18582))
739
+ - Fix `avatar_url` and `displayname` being sent on federation profile queries when they are not set. ([\#18593](https://github.com/element-hq/synapse/issues/18593))
740
+ - Respond with 401 & `M_USER_LOCKED` when a locked user calls `POST /login`, as per the spec. ([\#18594](https://github.com/element-hq/synapse/issues/18594))
741
+ - Ensure policy servers are not asked to scan policy server change events, allowing rooms to disable the use of a policy server while the policy server is down. ([\#18605](https://github.com/element-hq/synapse/issues/18605))
742
+
743
+ ### Improved Documentation
744
+
745
+ - Fix documentation of the Delete Room Admin API's status field. ([\#18519](https://github.com/element-hq/synapse/issues/18519))
746
+
747
+ ### Deprecations and Removals
748
+
749
+ - Stop adding the "origin" field to newly-created events (PDUs). ([\#18418](https://github.com/element-hq/synapse/issues/18418))
750
+
751
+ ### Internal Changes
752
+
753
+ - Replace `PyICU` crate with equivalent `icu_segmenter` Rust crate. ([\#18553](https://github.com/element-hq/synapse/issues/18553), [\#18646](https://github.com/element-hq/synapse/issues/18646))
754
+ - Improve docstring on `simple_upsert_many`. ([\#18573](https://github.com/element-hq/synapse/issues/18573))
755
+ - Raise poetry-core version cap to 2.1.3. ([\#18575](https://github.com/element-hq/synapse/issues/18575))
756
+ - Raise setuptools_rust version cap to 1.11.1. ([\#18576](https://github.com/element-hq/synapse/issues/18576))
757
+ - Better handling of ratelimited requests. ([\#18595](https://github.com/element-hq/synapse/issues/18595), [\#18600](https://github.com/element-hq/synapse/issues/18600))
758
+ - Update to Rust 1.87.0 in CI, and bump the pinned commit of the `dtolnay/rust-toolchain` GitHub Action to `b3b07ba8b418998c39fb20f53e8b695cdcc8de1b`. ([\#18596](https://github.com/element-hq/synapse/issues/18596))
759
+ - Speed up bulk device deletion. ([\#18602](https://github.com/element-hq/synapse/issues/18602))
760
+ - Speed up the building of arm-based wheels in CI. ([\#18618](https://github.com/element-hq/synapse/issues/18618))
761
+ - Speed up the building of Docker images in CI. ([\#18620](https://github.com/element-hq/synapse/issues/18620))
762
+ - Add `.zed/` directory to `.gitignore`. ([\#18623](https://github.com/element-hq/synapse/issues/18623))
763
+ - Log the room ID we're purging state for. ([\#18625](https://github.com/element-hq/synapse/issues/18625))
764
+
765
+
766
+
767
+ ### Updates to locked dependencies
768
+
769
+ * Bump Swatinem/rust-cache from 2.7.8 to 2.8.0. ([\#18612](https://github.com/element-hq/synapse/issues/18612))
770
+ * Bump attrs from 24.2.0 to 25.3.0. ([\#18649](https://github.com/element-hq/synapse/issues/18649))
771
+ * Bump authlib from 1.5.2 to 1.6.0. ([\#18642](https://github.com/element-hq/synapse/issues/18642))
772
+ * Bump base64 from 0.21.7 to 0.22.1. ([\#18589](https://github.com/element-hq/synapse/issues/18589))
773
+ * Bump base64 from 0.21.7 to 0.22.1. ([\#18629](https://github.com/element-hq/synapse/issues/18629))
774
+ * Bump docker/build-push-action from 6.17.0 to 6.18.0. ([\#18497](https://github.com/element-hq/synapse/issues/18497))
775
+ * Bump docker/setup-buildx-action from 3.10.0 to 3.11.1. ([\#18587](https://github.com/element-hq/synapse/issues/18587))
776
+ * Bump hiredis from 3.1.0 to 3.2.1. ([\#18638](https://github.com/element-hq/synapse/issues/18638))
777
+ * Bump ijson from 3.3.0 to 3.4.0. ([\#18650](https://github.com/element-hq/synapse/issues/18650))
778
+ * Bump jsonschema from 4.23.0 to 4.24.0. ([\#18630](https://github.com/element-hq/synapse/issues/18630))
779
+ * Bump msgpack from 1.1.0 to 1.1.1. ([\#18651](https://github.com/element-hq/synapse/issues/18651))
780
+ * Bump mypy-zope from 1.0.11 to 1.0.12. ([\#18640](https://github.com/element-hq/synapse/issues/18640))
781
+ * Bump phonenumbers from 9.0.2 to 9.0.8. ([\#18652](https://github.com/element-hq/synapse/issues/18652))
782
+ * Bump pillow from 11.2.1 to 11.3.0. ([\#18624](https://github.com/element-hq/synapse/issues/18624))
783
+ * Bump prometheus-client from 0.21.0 to 0.22.1. ([\#18609](https://github.com/element-hq/synapse/issues/18609))
784
+ * Bump pyasn1-modules from 0.4.1 to 0.4.2. ([\#18495](https://github.com/element-hq/synapse/issues/18495))
785
+ * Bump pydantic from 2.11.4 to 2.11.7. ([\#18639](https://github.com/element-hq/synapse/issues/18639))
786
+ * Bump reqwest from 0.12.15 to 0.12.20. ([\#18590](https://github.com/element-hq/synapse/issues/18590))
787
+ * Bump reqwest from 0.12.20 to 0.12.22. ([\#18627](https://github.com/element-hq/synapse/issues/18627))
788
+ * Bump ruff from 0.11.11 to 0.12.1. ([\#18645](https://github.com/element-hq/synapse/issues/18645))
789
+ * Bump ruff from 0.12.1 to 0.12.2. ([\#18657](https://github.com/element-hq/synapse/issues/18657))
790
+ * Bump sentry-sdk from 2.22.0 to 2.32.0. ([\#18633](https://github.com/element-hq/synapse/issues/18633))
791
+ * Bump setuptools-rust from 1.10.2 to 1.11.1. ([\#18655](https://github.com/element-hq/synapse/issues/18655))
792
+ * Bump sigstore/cosign-installer from 3.8.2 to 3.9.0. ([\#18588](https://github.com/element-hq/synapse/issues/18588))
793
+ * Bump sigstore/cosign-installer from 3.9.0 to 3.9.1. ([\#18608](https://github.com/element-hq/synapse/issues/18608))
794
+ * Bump stefanzweifel/git-auto-commit-action from 5.2.0 to 6.0.1. ([\#18607](https://github.com/element-hq/synapse/issues/18607))
795
+ * Bump tokio from 1.45.1 to 1.46.0. ([\#18628](https://github.com/element-hq/synapse/issues/18628))
796
+ * Bump tokio from 1.46.0 to 1.46.1. ([\#18667](https://github.com/element-hq/synapse/issues/18667))
797
+ * Bump treq from 24.9.1 to 25.5.0. ([\#18610](https://github.com/element-hq/synapse/issues/18610))
798
+ * Bump types-bleach from 6.2.0.20241123 to 6.2.0.20250514. ([\#18634](https://github.com/element-hq/synapse/issues/18634))
799
+ * Bump types-jsonschema from 4.23.0.20250516 to 4.24.0.20250528. ([\#18611](https://github.com/element-hq/synapse/issues/18611))
800
+ * Bump types-opentracing from 2.4.10.6 to 2.4.10.20250622. ([\#18586](https://github.com/element-hq/synapse/issues/18586))
801
+ * Bump types-psycopg2 from 2.9.21.20250318 to 2.9.21.20250516. ([\#18658](https://github.com/element-hq/synapse/issues/18658))
802
+ * Bump types-pyyaml from 6.0.12.20241230 to 6.0.12.20250516. ([\#18643](https://github.com/element-hq/synapse/issues/18643))
803
+ * Bump types-setuptools from 75.2.0.20241019 to 80.9.0.20250529. ([\#18644](https://github.com/element-hq/synapse/issues/18644))
804
+ * Bump typing-extensions from 4.12.2 to 4.14.0. ([\#18654](https://github.com/element-hq/synapse/issues/18654))
805
+ * Bump typing-extensions from 4.14.0 to 4.14.1. ([\#18668](https://github.com/element-hq/synapse/issues/18668))
806
+ * Bump urllib3 from 2.2.2 to 2.5.0. ([\#18572](https://github.com/element-hq/synapse/issues/18572))
807
+
808
+ # Synapse 1.133.0 (2025-07-01)
809
+
810
+ Pre-built wheels are now built using the [manylinux_2_28](https://github.com/pypa/manylinux#manylinux_2_28-almalinux-8-based) base, which is expected to be compatible with distros using glibc 2.28 or later, including:
811
+
812
+ - Debian 10+
813
+ - Ubuntu 18.10+
814
+ - Fedora 29+
815
+ - CentOS/RHEL 8+
816
+
817
+ Previously, wheels were built using the [manylinux2014](https://github.com/pypa/manylinux#manylinux2014-centos-7-based-glibc-217) base, which was expected to be compatible with distros using glibc 2.17 or later.
818
+
819
+ ### Bugfixes
820
+
821
+ - Bump `cibuildwheel` to 3.0.0 to fix the `manylinux` wheel builds. ([\#18615](https://github.com/element-hq/synapse/issues/18615))
822
+
823
+
824
+
825
+
826
+ # Synapse 1.133.0rc1 (2025-06-24)
827
+
828
+ ### Features
829
+
830
+ - Add support for the [MSC4260 user report API](https://github.com/matrix-org/matrix-spec-proposals/pull/4260). ([\#18120](https://github.com/element-hq/synapse/issues/18120))
831
+
832
+ ### Bugfixes
833
+
834
+ - Fix an issue where, during state resolution for v11 rooms, Synapse would incorrectly calculate the power level of the creator when there was no power levels event in the room. ([\#18534](https://github.com/element-hq/synapse/issues/18534), [\#18547](https://github.com/element-hq/synapse/issues/18547))
835
+ - Fix long-standing bug where sliding sync did not honour the `room_id_to_include` config option. ([\#18535](https://github.com/element-hq/synapse/issues/18535))
836
+ - Fix an issue where "Lock timeout is getting excessive" warnings would be logged even when the lock timeout was <10 minutes. ([\#18543](https://github.com/element-hq/synapse/issues/18543))
837
+ - Fix an issue where Synapse could calculate the wrong power level for the creator of the room if there was no power levels event. ([\#18545](https://github.com/element-hq/synapse/issues/18545))
838
+
839
+ ### Improved Documentation
840
+
841
+ - Generate config documentation from JSON Schema file. ([\#18528](https://github.com/element-hq/synapse/issues/18528))
842
+ - Fix typo in user type documentation. ([\#18568](https://github.com/element-hq/synapse/issues/18568))
843
+
844
+ ### Internal Changes
845
+
846
+ - Increase performance of introspecting access tokens when using delegated auth. ([\#18357](https://github.com/element-hq/synapse/issues/18357), [\#18561](https://github.com/element-hq/synapse/issues/18561))
847
+ - Log user deactivations. ([\#18541](https://github.com/element-hq/synapse/issues/18541))
848
+ - Enable [`flake8-logging`](https://docs.astral.sh/ruff/rules/#flake8-logging-log) and [`flake8-logging-format`](https://docs.astral.sh/ruff/rules/#flake8-logging-format-g) rules in Ruff and fix related issues throughout the codebase. ([\#18542](https://github.com/element-hq/synapse/issues/18542))
849
+ - Clean up old, unused rows from the `device_federation_inbox` table. ([\#18546](https://github.com/element-hq/synapse/issues/18546))
850
+ - Run config schema CI on develop and release branches. ([\#18551](https://github.com/element-hq/synapse/issues/18551))
851
+ - Add support for Twisted `25.5.0`+ releases. ([\#18577](https://github.com/element-hq/synapse/issues/18577))
852
+ - Update PyO3 to version 0.25. ([\#18578](https://github.com/element-hq/synapse/issues/18578))
853
+
854
+
855
+
856
+ ### Updates to locked dependencies
857
+
858
+ * Bump actions/setup-python from 5.5.0 to 5.6.0. ([\#18555](https://github.com/element-hq/synapse/issues/18555))
859
+ * Bump base64 from 0.21.7 to 0.22.1. ([\#18559](https://github.com/element-hq/synapse/issues/18559))
860
+ * Bump dawidd6/action-download-artifact from 9 to 11. ([\#18556](https://github.com/element-hq/synapse/issues/18556))
861
+ * Bump headers from 0.4.0 to 0.4.1. ([\#18529](https://github.com/element-hq/synapse/issues/18529))
862
+ * Bump requests from 2.32.2 to 2.32.4. ([\#18533](https://github.com/element-hq/synapse/issues/18533))
863
+ * Bump types-requests from 2.32.0.20250328 to 2.32.4.20250611. ([\#18558](https://github.com/element-hq/synapse/issues/18558))
864
+
865
+ # Synapse 1.132.0 (2025-06-17)
866
+
867
+ ### Improved Documentation
868
+
869
+ - Improvements to generate config documentation from JSON Schema file. ([\#18522](https://github.com/element-hq/synapse/issues/18522))
870
+
871
+
872
+
873
+
874
+ # Synapse 1.132.0rc1 (2025-06-10)
875
+
876
+ ### Features
877
+
878
+ - Add support for [MSC4155](https://github.com/matrix-org/matrix-spec-proposals/pull/4155) Invite Filtering. ([\#18288](https://github.com/element-hq/synapse/issues/18288))
879
+ - Add experimental `user_may_send_state_event` module API callback. ([\#18455](https://github.com/element-hq/synapse/issues/18455))
880
+ - Add experimental `get_media_config_for_user` and `is_user_allowed_to_upload_media_of_size` module API callbacks that allow overriding of media repository maximum upload size. ([\#18457](https://github.com/element-hq/synapse/issues/18457))
881
+ - Add experimental `get_ratelimit_override_for_user` module API callback that allows overriding of per-user ratelimits. ([\#18458](https://github.com/element-hq/synapse/issues/18458))
882
+ - Pass `room_config` argument to `user_may_create_room` spam checker module callback. ([\#18486](https://github.com/element-hq/synapse/issues/18486))
883
+ - Support configuration of default and extra user types. ([\#18456](https://github.com/element-hq/synapse/issues/18456))
884
+ - Successful requests to `/_matrix/app/v1/ping` will now force Synapse to reattempt delivering transactions to appservices. ([\#18521](https://github.com/element-hq/synapse/issues/18521))
885
+ - Support the import of the `RatelimitOverride` type from `synapse.module_api` in modules and rename `messages_per_second` to `per_second`. ([\#18513](https://github.com/element-hq/synapse/issues/18513))
886
+
887
+ ### Bugfixes
888
+
889
+ - Remove destinations from sending if not whitelisted. ([\#18484](https://github.com/element-hq/synapse/issues/18484))
890
+ - Fixed room summary API incorrectly returning that a room is private in the room summary response when the join rule is omitted by the remote server. Contributed by @nexy7574. ([\#18493](https://github.com/element-hq/synapse/issues/18493))
891
+ - Prevent users from adding themselves to their own user ignore list. ([\#18508](https://github.com/element-hq/synapse/issues/18508))
892
+
893
+ ### Improved Documentation
894
+
895
+ - Generate config documentation from JSON Schema file. ([\#17892](https://github.com/element-hq/synapse/issues/17892))
896
+ - Mention `CAP_NET_BIND_SERVICE` as an alternative to running Synapse as root in order to bind to a privileged port. ([\#18408](https://github.com/element-hq/synapse/issues/18408))
897
+ - Surface hidden Admin API documentation regarding fetching of scheduled tasks. ([\#18516](https://github.com/element-hq/synapse/issues/18516))
898
+ - Mark the new module APIs in this release as experimental. ([\#18536](https://github.com/element-hq/synapse/issues/18536))
899
+
900
+ ### Internal Changes
901
+
902
+ - Mark dehydrated devices in the [List All User Devices Admin API](https://element-hq.github.io/synapse/latest/admin_api/user_admin_api.html#list-all-devices). ([\#18252](https://github.com/element-hq/synapse/issues/18252))
903
+ - Reduce disk wastage by cleaning up `received_transactions` older than 1 day, rather than 30 days. ([\#18310](https://github.com/element-hq/synapse/issues/18310))
904
+ - Distinguish all vs local events being persisted in the "Event Send Time Quantiles" graph (Grafana). ([\#18510](https://github.com/element-hq/synapse/issues/18510))
905
+
906
+
907
+
908
+
909
+ # Synapse 1.131.0 (2025-06-03)
910
+
911
+ No significant changes since 1.131.0rc1.
912
+
913
+ # Synapse 1.131.0rc1 (2025-05-28)
914
+
915
+ ### Features
916
+
917
+ - Add `msc4263_limit_key_queries_to_users_who_share_rooms` config option as per [MSC4263](https://github.com/matrix-org/matrix-spec-proposals/pull/4263). ([\#18180](https://github.com/element-hq/synapse/issues/18180))
918
+ - Add option to allow registrations that begin with `_`. Contributed by `_` (@hex5f). ([\#18262](https://github.com/element-hq/synapse/issues/18262))
919
+ - Include room ID in response to the [Room Deletion Status Admin API](https://element-hq.github.io/synapse/latest/admin_api/rooms.html#status-of-deleting-rooms). ([\#18318](https://github.com/element-hq/synapse/issues/18318))
920
+ - Add support for calling Policy Servers ([MSC4284](https://github.com/matrix-org/matrix-spec-proposals/pull/4284)) to mark events as spam. ([\#18387](https://github.com/element-hq/synapse/issues/18387))
921
+
922
+ ### Bugfixes
923
+
924
+ - Prevent race-condition in `_maybe_retry_device_resync` entrance. ([\#18391](https://github.com/element-hq/synapse/issues/18391))
925
+ - Fix the `tests.handlers.test_worker_lock.WorkerLockTestCase.test_lock_contention` test which could spuriously time out on RISC-V architectures due to performance differences. ([\#18430](https://github.com/element-hq/synapse/issues/18430))
926
+ - Fix admin redaction endpoint not redacting encrypted messages. ([\#18434](https://github.com/element-hq/synapse/issues/18434))
927
+
928
+ ### Improved Documentation
929
+
930
+ - Update `room_list_publication_rules` docs to consider defaults that changed in v1.126.0. Contributed by @HarHarLinks. ([\#18286](https://github.com/element-hq/synapse/issues/18286))
931
+ - Add advice for upgrading between major PostgreSQL versions to the database documentation. ([\#18445](https://github.com/element-hq/synapse/issues/18445))
932
+
933
+ ### Internal Changes
934
+
935
+ - Fix a memory leak in `_NotifierUserStream`. ([\#18380](https://github.com/element-hq/synapse/issues/18380))
936
+ - Fix a couple type annotations in the `RootConfig`/`Config`. ([\#18409](https://github.com/element-hq/synapse/issues/18409))
937
+ - Explicitly enable PyPy builds in `cibuildwheel`s config to avoid it being disabled on a future upgrade to `cibuildwheel` v3. ([\#18417](https://github.com/element-hq/synapse/issues/18417))
938
+ - Update the PR review template to remove an erroneous line break from the final bullet point. ([\#18419](https://github.com/element-hq/synapse/issues/18419))
939
+ - Explain why we `flush_buffer()` for Python `print(...)` output. ([\#18420](https://github.com/element-hq/synapse/issues/18420))
940
+ - Add lint to ensure we don't add a `CREATE/DROP INDEX` in a schema delta. ([\#18440](https://github.com/element-hq/synapse/issues/18440))
941
+ - Allow checking only for the existence of a field in an SSO provider's response, rather than requiring the value(s) to check. ([\#18454](https://github.com/element-hq/synapse/issues/18454))
942
+ - Add unit tests for homeserver usage statistics. ([\#18463](https://github.com/element-hq/synapse/issues/18463))
943
+ - Don't move invited users to new room when shutting down room. ([\#18471](https://github.com/element-hq/synapse/issues/18471))
944
+
945
+
946
+
947
+ ### Updates to locked dependencies
948
+
949
+ * Bump actions/setup-python from 5.5.0 to 5.6.0. ([\#18398](https://github.com/element-hq/synapse/issues/18398))
950
+ * Bump authlib from 1.5.1 to 1.5.2. ([\#18452](https://github.com/element-hq/synapse/issues/18452))
951
+ * Bump docker/build-push-action from 6.15.0 to 6.17.0. ([\#18397](https://github.com/element-hq/synapse/issues/18397), [\#18449](https://github.com/element-hq/synapse/issues/18449))
952
+ * Bump lxml from 5.3.0 to 5.4.0. ([\#18480](https://github.com/element-hq/synapse/issues/18480))
953
+ * Bump mypy-zope from 1.0.9 to 1.0.11. ([\#18428](https://github.com/element-hq/synapse/issues/18428))
954
+ * Bump pyo3 from 0.23.5 to 0.24.2. ([\#18460](https://github.com/element-hq/synapse/issues/18460))
955
+ * Bump pyo3-log from 0.12.3 to 0.12.4. ([\#18453](https://github.com/element-hq/synapse/issues/18453))
956
+ * Bump pyopenssl from 25.0.0 to 25.1.0. ([\#18450](https://github.com/element-hq/synapse/issues/18450))
957
+ * Bump ruff from 0.7.3 to 0.11.11. ([\#18451](https://github.com/element-hq/synapse/issues/18451), [\#18482](https://github.com/element-hq/synapse/issues/18482))
958
+ * Bump tornado from 6.4.2 to 6.5.0. ([\#18459](https://github.com/element-hq/synapse/issues/18459))
959
+ * Bump setuptools from 72.1.0 to 78.1.1. ([\#18461](https://github.com/element-hq/synapse/issues/18461))
960
+ * Bump types-jsonschema from 4.23.0.20241208 to 4.23.0.20250516. ([\#18481](https://github.com/element-hq/synapse/issues/18481))
961
+ * Bump types-requests from 2.32.0.20241016 to 2.32.0.20250328. ([\#18427](https://github.com/element-hq/synapse/issues/18427))
962
+
963
+ # Synapse 1.130.0 (2025-05-20)
964
+
965
+ ### Bugfixes
966
+
967
+ - Fix startup being blocked on creating a new index that was introduced in v1.130.0rc1. ([\#18439](https://github.com/element-hq/synapse/issues/18439))
968
+ - Fix the ordering of local messages in rooms that were affected by [GHSA-v56r-hwv5-mxg6](https://github.com/advisories/GHSA-v56r-hwv5-mxg6). ([\#18447](https://github.com/element-hq/synapse/issues/18447))
969
+
970
+
971
+
972
+
973
+ # Synapse 1.130.0rc1 (2025-05-13)
974
+
975
+ ### Features
976
+
977
+ - Add an Admin API endpoint `GET /_synapse/admin/v1/scheduled_tasks` to fetch scheduled tasks. ([\#18214](https://github.com/element-hq/synapse/issues/18214))
978
+ - Add config option `user_directory.exclude_remote_users` which, when enabled, excludes remote users from user directory search results. ([\#18300](https://github.com/element-hq/synapse/issues/18300))
979
+ - Add support for handling `GET /devices/` on workers. ([\#18355](https://github.com/element-hq/synapse/issues/18355))
980
+
981
+ ### Bugfixes
982
+
983
+ - Fix a longstanding bug where Synapse would immediately retry a failing push endpoint when a new event is received, ignoring any backoff timers. ([\#18363](https://github.com/element-hq/synapse/issues/18363))
984
+ - Pass leave from remote invite rejection down Sliding Sync. ([\#18375](https://github.com/element-hq/synapse/issues/18375))
985
+
986
+ ### Updates to the Docker image
987
+
988
+ - In `configure_workers_and_start.py`, use the same absolute path of Python in the interpreter shebang, and invoke child Python processes with `sys.executable`. ([\#18291](https://github.com/element-hq/synapse/issues/18291))
989
+ - Optimize the build of the workers image. ([\#18292](https://github.com/element-hq/synapse/issues/18292))
990
+ - In `start_for_complement.sh`, replace some external program calls with shell builtins. ([\#18293](https://github.com/element-hq/synapse/issues/18293))
991
+ - When generating container scripts from templates, don't add a leading newline so that their shebangs may be handled correctly. ([\#18295](https://github.com/element-hq/synapse/issues/18295))
992
+
993
+ ### Improved Documentation
994
+
995
+ - Improve formatting of the README file. ([\#18218](https://github.com/element-hq/synapse/issues/18218))
996
+ - Add documentation for configuring [Pocket ID](https://github.com/pocket-id/pocket-id) as an OIDC provider. ([\#18237](https://github.com/element-hq/synapse/issues/18237))
997
+ - Fix typo in docs about the `push` config option. Contributed by @HarHarLinks. ([\#18320](https://github.com/element-hq/synapse/issues/18320))
998
+ - Add `/_matrix/federation/v1/version` to list of federation endpoints that can be handled by workers. ([\#18377](https://github.com/element-hq/synapse/issues/18377))
999
+ - Add an Admin API endpoint `GET /_synapse/admin/v1/scheduled_tasks` to fetch scheduled tasks. ([\#18384](https://github.com/element-hq/synapse/issues/18384))
1000
+
1001
+ ### Internal Changes
1002
+
1003
+ - Return specific error code when adding an email address / phone number to account is not supported ([MSC4178](https://github.com/matrix-org/matrix-spec-proposals/pull/4178)). ([\#17578](https://github.com/element-hq/synapse/issues/17578))
1004
+ - Stop auto-provisionning missing users & devices when delegating auth to Matrix Authentication Service. Requires MAS 0.13.0 or later. ([\#18181](https://github.com/element-hq/synapse/issues/18181))
1005
+ - Apply file hashing and existing quarantines to media downloaded for URL previews. ([\#18297](https://github.com/element-hq/synapse/issues/18297))
1006
+ - Allow a few admin APIs used by matrix-authentication-service to run on workers. ([\#18313](https://github.com/element-hq/synapse/issues/18313))
1007
+ - Apply `should_drop_federated_event` to federation invites. ([\#18330](https://github.com/element-hq/synapse/issues/18330))
1008
+ - Allow `/rooms/` admin API to be run on workers. ([\#18360](https://github.com/element-hq/synapse/issues/18360))
1009
+ - Minor performance improvements to the notifier. ([\#18367](https://github.com/element-hq/synapse/issues/18367))
1010
+ - Slight performance increase when using the ratelimiter. ([\#18369](https://github.com/element-hq/synapse/issues/18369))
1011
+ - Don't validate the `at_hash` (access token hash) field in OIDC ID Tokens if we don't end up actually using the OIDC Access Token. ([\#18374](https://github.com/element-hq/synapse/issues/18374), [\#18385](https://github.com/element-hq/synapse/issues/18385))
1012
+ - Fixed test failures when using authlib 1.5.2. ([\#18390](https://github.com/element-hq/synapse/issues/18390))
1013
+ - Refactor [MSC4186](https://github.com/matrix-org/matrix-spec-proposals/pull/4186) Simplified Sliding Sync room list tests to cover both new and fallback logic paths. ([\#18399](https://github.com/element-hq/synapse/issues/18399))
1014
+
1015
+
1016
+
1017
+ ### Updates to locked dependencies
1018
+
1019
+ * Bump actions/add-to-project from 280af8ae1f83a494cfad2cb10f02f6d13529caa9 to 5b1a254a3546aef88e0a7724a77a623fa2e47c36. ([\#18365](https://github.com/element-hq/synapse/issues/18365))
1020
+ * Bump actions/download-artifact from 4.2.1 to 4.3.0. ([\#18364](https://github.com/element-hq/synapse/issues/18364))
1021
+ * Bump actions/setup-go from 5.4.0 to 5.5.0. ([\#18426](https://github.com/element-hq/synapse/issues/18426))
1022
+ * Bump anyhow from 1.0.97 to 1.0.98. ([\#18336](https://github.com/element-hq/synapse/issues/18336))
1023
+ * Bump packaging from 24.2 to 25.0. ([\#18393](https://github.com/element-hq/synapse/issues/18393))
1024
+ * Bump pillow from 11.1.0 to 11.2.1. ([\#18429](https://github.com/element-hq/synapse/issues/18429))
1025
+ * Bump pydantic from 2.10.3 to 2.11.4. ([\#18394](https://github.com/element-hq/synapse/issues/18394))
1026
+ * Bump pyo3-log from 0.12.2 to 0.12.3. ([\#18317](https://github.com/element-hq/synapse/issues/18317))
1027
+ * Bump pyopenssl from 24.3.0 to 25.0.0. ([\#18315](https://github.com/element-hq/synapse/issues/18315))
1028
+ * Bump sha2 from 0.10.8 to 0.10.9. ([\#18395](https://github.com/element-hq/synapse/issues/18395))
1029
+ * Bump sigstore/cosign-installer from 3.8.1 to 3.8.2. ([\#18366](https://github.com/element-hq/synapse/issues/18366))
1030
+ * Bump softprops/action-gh-release from 1 to 2. ([\#18264](https://github.com/element-hq/synapse/issues/18264))
1031
+ * Bump stefanzweifel/git-auto-commit-action from 5.1.0 to 5.2.0. ([\#18354](https://github.com/element-hq/synapse/issues/18354))
1032
+ * Bump txredisapi from 1.4.10 to 1.4.11. ([\#18392](https://github.com/element-hq/synapse/issues/18392))
1033
+ * Bump types-jsonschema from 4.23.0.20240813 to 4.23.0.20241208. ([\#18305](https://github.com/element-hq/synapse/issues/18305))
1034
+ * Bump types-psycopg2 from 2.9.21.20250121 to 2.9.21.20250318. ([\#18316](https://github.com/element-hq/synapse/issues/18316))
1035
+
1036
+ # Synapse 1.129.0 (2025-05-06)
1037
+
1038
+ No significant changes since 1.129.0rc2.
1039
+
1040
+
1041
+
1042
+
1043
+ # Synapse 1.129.0rc2 (2025-04-30)
1044
+
1045
+ Synapse 1.129.0rc1 was never formally released due to regressions discovered during the release process. 1.129.0rc2 fixes those regressions by reverting the affected PRs.
1046
+
1047
+ ### Internal Changes
1048
+
1049
+ - Revert the slow background update introduced by [\#18068](https://github.com/element-hq/synapse/issues/18068) in v1.128.0. ([\#18372](https://github.com/element-hq/synapse/issues/18372))
1050
+ - Revert "Add total event, unencrypted message, and e2ee event counts to stats reporting", added in v1.129.0rc1. ([\#18373](https://github.com/element-hq/synapse/issues/18373))
1051
+
1052
+
1053
+
1054
+
1055
+ # Synapse 1.129.0rc1 (2025-04-15)
1056
+
1057
+ ### Features
1058
+
1059
+ - Add `passthrough_authorization_parameters` in OIDC configuration to allow passing parameters to the authorization grant URL. ([\#18232](https://github.com/element-hq/synapse/issues/18232))
1060
+ - Add `total_event_count`, `total_message_count`, and `total_e2ee_event_count` fields to the homeserver usage statistics. ([\#18260](https://github.com/element-hq/synapse/issues/18260))
1061
+
1062
+ ### Bugfixes
1063
+
1064
+ - Fix `force_tracing_for_users` config when using delegated auth. ([\#18334](https://github.com/element-hq/synapse/issues/18334))
1065
+ - Fix the token introspection cache logging access tokens when MAS integration is in use. ([\#18335](https://github.com/element-hq/synapse/issues/18335))
1066
+ - Stop caching introspection failures when delegating auth to MAS. ([\#18339](https://github.com/element-hq/synapse/issues/18339))
1067
+ - Fix `ExternalIDReuse` exception after migrating to MAS on workers with a high traffic. ([\#18342](https://github.com/element-hq/synapse/issues/18342))
1068
+ - Fix minor performance regression caused by tracking of room participation. Regressed in v1.128.0. ([\#18345](https://github.com/element-hq/synapse/issues/18345))
1069
+
1070
+ ### Updates to the Docker image
1071
+
1072
+ - Optimize the build of the complement-synapse image. ([\#18294](https://github.com/element-hq/synapse/issues/18294))
1073
+
1074
+ ### Internal Changes
1075
+
1076
+ - Disable statement timeout during room purge. ([\#18133](https://github.com/element-hq/synapse/issues/18133))
1077
+ - Add cache to storage functions used to auth requests when using delegated auth. ([\#18337](https://github.com/element-hq/synapse/issues/18337))
1078
+
1079
+
1080
+
1081
+
1082
+ # Synapse 1.128.0 (2025-04-08)
1083
+
1084
+ No significant changes since 1.128.0rc1.
1085
+
1086
+
1087
+
1088
+
1089
+ # Synapse 1.128.0rc1 (2025-04-01)
1090
+
1091
+ ### Features
1092
+
1093
+ - Add an access token introspection cache to make Matrix Authentication Service integration ([MSC3861](https://github.com/matrix-org/matrix-doc/pull/3861)) more efficient. ([\#18231](https://github.com/element-hq/synapse/issues/18231))
1094
+ - Add background job to clear unreferenced state groups. ([\#18254](https://github.com/element-hq/synapse/issues/18254))
1095
+ - Hashes of media files are now tracked by Synapse. Media quarantines will now apply to all files with the same hash. ([\#18277](https://github.com/element-hq/synapse/issues/18277), [\#18302](https://github.com/element-hq/synapse/issues/18302), [\#18296](https://github.com/element-hq/synapse/issues/18296))
1096
+
1097
+ ### Bugfixes
1098
+
1099
+ - Add index to sliding sync ([MSC4186](https://github.com/matrix-org/matrix-doc/pull/4186)) membership snapshot table, to fix a performance issue. ([\#18074](https://github.com/element-hq/synapse/issues/18074))
1100
+
1101
+ ### Updates to the Docker image
1102
+
1103
+ - Specify the architecture of installed packages via an APT config option, which is more reliable than appending package names with `:{arch}`. ([\#18271](https://github.com/element-hq/synapse/issues/18271))
1104
+ - Always specify base image debian versions with a build argument. ([\#18272](https://github.com/element-hq/synapse/issues/18272))
1105
+ - Allow passing arguments to `start_for_complement.sh` (to be sent to `configure_workers_and_start.py`). ([\#18273](https://github.com/element-hq/synapse/issues/18273))
1106
+ - Make some improvements to the `prefix-log` script in the workers image. ([\#18274](https://github.com/element-hq/synapse/issues/18274))
1107
+ - Use `uv pip` to install `supervisor` in the worker image. ([\#18275](https://github.com/element-hq/synapse/issues/18275))
1108
+ - Avoid needing to download & use `rsync` in a build layer. ([\#18287](https://github.com/element-hq/synapse/issues/18287))
1109
+
1110
+ ### Improved Documentation
1111
+
1112
+ - Fix how to obtain access token and change naming from riot to element ([\#18225](https://github.com/element-hq/synapse/issues/18225))
1113
+ - Correct a small typo in the SSO mapping providers documentation. ([\#18276](https://github.com/element-hq/synapse/issues/18276))
1114
+ - Add docs for how to clear out the Poetry wheel cache. ([\#18283](https://github.com/element-hq/synapse/issues/18283))
1115
+
1116
+ ### Internal Changes
1117
+
1118
+ - Add a column `participant` to `room_memberships` table. ([\#18068](https://github.com/element-hq/synapse/issues/18068))
1119
+ - Update Poetry to 2.1.1, including updating the lock file version. ([\#18251](https://github.com/element-hq/synapse/issues/18251))
1120
+ - Pin GitHub Actions dependencies by commit hash. ([\#18255](https://github.com/element-hq/synapse/issues/18255))
1121
+ - Add DB delta to remove the old state group deletion job. ([\#18284](https://github.com/element-hq/synapse/issues/18284))
1122
+
1123
+
1124
+
1125
+ ### Updates to locked dependencies
1126
+
1127
+ * Bump actions/add-to-project from f5473ace9aeee8b97717b281e26980aa5097023f to 280af8ae1f83a494cfad2cb10f02f6d13529caa9. ([\#18303](https://github.com/element-hq/synapse/issues/18303))
1128
+ * Bump actions/cache from 4.2.2 to 4.2.3. ([\#18266](https://github.com/element-hq/synapse/issues/18266))
1129
+ * Bump actions/download-artifact from 4.2.0 to 4.2.1. ([\#18268](https://github.com/element-hq/synapse/issues/18268))
1130
+ * Bump actions/setup-python from 5.4.0 to 5.5.0. ([\#18298](https://github.com/element-hq/synapse/issues/18298))
1131
+ * Bump actions/upload-artifact from 4.6.1 to 4.6.2. ([\#18304](https://github.com/element-hq/synapse/issues/18304))
1132
+ * Bump authlib from 1.4.1 to 1.5.1. ([\#18306](https://github.com/element-hq/synapse/issues/18306))
1133
+ * Bump dawidd6/action-download-artifact from 8 to 9. ([\#18204](https://github.com/element-hq/synapse/issues/18204))
1134
+ * Bump jinja2 from 3.1.5 to 3.1.6. ([\#18223](https://github.com/element-hq/synapse/issues/18223))
1135
+ * Bump log from 0.4.26 to 0.4.27. ([\#18267](https://github.com/element-hq/synapse/issues/18267))
1136
+ * Bump phonenumbers from 8.13.50 to 9.0.2. ([\#18299](https://github.com/element-hq/synapse/issues/18299))
1137
+ * Bump pygithub from 2.5.0 to 2.6.1. ([\#18243](https://github.com/element-hq/synapse/issues/18243))
1138
+ * Bump pyo3-log from 0.12.1 to 0.12.2. ([\#18269](https://github.com/element-hq/synapse/issues/18269))
1139
+
1140
+ # Synapse 1.127.1 (2025-03-26)
1141
+
1142
+ ## Security
1143
+ - Fix [CVE-2025-30355](https://www.cve.org/CVERecord?id=CVE-2025-30355) / [GHSA-v56r-hwv5-mxg6](https://github.com/element-hq/synapse/security/advisories/GHSA-v56r-hwv5-mxg6). **High severity vulnerability affecting federation. The vulnerability has been exploited in the wild.**
1144
+
1145
+
1146
+
1147
+ # Synapse 1.127.0 (2025-03-25)
1148
+
1149
+ No significant changes since 1.127.0rc1.
1150
+
1151
+
1152
+
1153
+
1154
+ # Synapse 1.127.0rc1 (2025-03-18)
1155
+
1156
+ ### Features
1157
+
1158
+ - Update [MSC4140](https://github.com/matrix-org/matrix-spec-proposals/pull/4140) implementation to no longer cancel a user's own delayed state events with an event type & state key that match a more recent state event sent by that user. ([\#17810](https://github.com/element-hq/synapse/issues/17810))
1159
+
1160
+ ### Improved Documentation
1161
+
1162
+ - Fixed a minor typo in the Synapse documentation. Contributed by @karuto12. ([\#18224](https://github.com/element-hq/synapse/issues/18224))
1163
+
1164
+ ### Internal Changes
1165
+
1166
+ - Remove undocumented `SYNAPSE_USE_FROZEN_DICTS` environment variable. ([\#18123](https://github.com/element-hq/synapse/issues/18123))
1167
+ - Fix detection of workflow failures in the release script. ([\#18211](https://github.com/element-hq/synapse/issues/18211))
1168
+ - Add caching support to media endpoints. ([\#18235](https://github.com/element-hq/synapse/issues/18235))
1169
+
1170
+
1171
+
1172
+ ### Updates to locked dependencies
1173
+
1174
+ * Bump anyhow from 1.0.96 to 1.0.97. ([\#18201](https://github.com/element-hq/synapse/issues/18201))
1175
+ * Bump bcrypt from 4.2.1 to 4.3.0. ([\#18207](https://github.com/element-hq/synapse/issues/18207))
1176
+ * Bump bytes from 1.10.0 to 1.10.1. ([\#18227](https://github.com/element-hq/synapse/issues/18227))
1177
+ * Bump http from 1.2.0 to 1.3.1. ([\#18245](https://github.com/element-hq/synapse/issues/18245))
1178
+ * Bump sentry-sdk from 2.19.2 to 2.22.0. ([\#18205](https://github.com/element-hq/synapse/issues/18205))
1179
+ * Bump serde from 1.0.218 to 1.0.219. ([\#18228](https://github.com/element-hq/synapse/issues/18228))
1180
+ * Bump serde_json from 1.0.139 to 1.0.140. ([\#18202](https://github.com/element-hq/synapse/issues/18202))
1181
+ * Bump ulid from 1.2.0 to 1.2.1. ([\#18246](https://github.com/element-hq/synapse/issues/18246))
1182
+
1183
+ # Synapse 1.126.0 (2025-03-11)
1184
+ Administrators using the Debian/Ubuntu packages from `packages.matrix.org`, please check
1185
+ [the relevant section in the upgrade notes](https://github.com/element-hq/synapse/blob/release-v1.126/docs/upgrade.md#change-of-signing-key-expiry-date-for-the-debianubuntu-package-repository)
1186
+ as we have recently updated the expiry date on the repository's GPG signing key. The old version of the key will expire on `2025-03-15`.
1187
+
1188
+ No significant changes since 1.126.0rc3.
1189
+
1190
+
1191
+
1192
+
1193
+ # Synapse 1.126.0rc3 (2025-03-07)
1194
+
1195
+ ### Bugfixes
1196
+
1197
+ - Revert the background job to clear unreferenced state groups (that was introduced in v1.126.0rc1), due to [a suspected issue](https://github.com/element-hq/synapse/issues/18217) that causes increased disk usage. ([\#18222](https://github.com/element-hq/synapse/issues/18222))
1198
+
1199
+
1200
+
1201
+
1202
+ # Synapse 1.126.0rc2 (2025-03-05)
1203
+
1204
+
1205
+ ### Internal Changes
1206
+
1207
+ - Fix wheel building configuration in CI by installing libatomic1. ([\#18212](https://github.com/element-hq/synapse/issues/18212), [\#18213](https://github.com/element-hq/synapse/issues/18213))
1208
+
1209
+ # Synapse 1.126.0rc1 (2025-03-04)
1210
+
1211
+ Synapse 1.126.0rc1 was not fully released due to an error in CI.
1212
+
1213
+ ### Features
1214
+
1215
+ - Define ratelimit configuration for delayed event management. ([\#18019](https://github.com/element-hq/synapse/issues/18019))
1216
+ - Add `form_secret_path` config option. ([\#18090](https://github.com/element-hq/synapse/issues/18090))
1217
+ - Add the `--no-secrets-in-config` command line option. ([\#18092](https://github.com/element-hq/synapse/issues/18092))
1218
+ - Add background job to clear unreferenced state groups. ([\#18154](https://github.com/element-hq/synapse/issues/18154))
1219
+ - Add support for specifying/overriding `id_token_signing_alg_values_supported` for an OpenID identity provider. ([\#18177](https://github.com/element-hq/synapse/issues/18177))
1220
+ - Add `worker_replication_secret_path` config option. ([\#18191](https://github.com/element-hq/synapse/issues/18191))
1221
+ - Add support for specifying/overriding `redirect_uri` in the authorization and token requests against an OpenID identity provider. ([\#18197](https://github.com/element-hq/synapse/issues/18197))
1222
+
1223
+ ### Bugfixes
1224
+
1225
+ - Make sure we advertise registration as disabled when [MSC3861](https://github.com/matrix-org/matrix-spec-proposals/pull/3861) is enabled. ([\#17661](https://github.com/element-hq/synapse/issues/17661))
1226
+ - Prevent suspended users from sending encrypted messages. ([\#18157](https://github.com/element-hq/synapse/issues/18157))
1227
+ - Cleanup deleted state group references. ([\#18165](https://github.com/element-hq/synapse/issues/18165))
1228
+ - Fix [MSC4108 QR-code login](https://github.com/matrix-org/matrix-spec-proposals/pull/4108) not working with some reverse-proxy setups. ([\#18178](https://github.com/element-hq/synapse/issues/18178))
1229
+ - Support device IDs that can't be represented in a scope when delegating auth to Matrix Authentication Service 0.15.0+. ([\#18174](https://github.com/element-hq/synapse/issues/18174))
1230
+
1231
+ ### Updates to the Docker image
1232
+
1233
+ - Speed up the building of the Docker image. ([\#18038](https://github.com/element-hq/synapse/issues/18038))
1234
+
1235
+ ### Improved Documentation
1236
+
1237
+ - Move incorrectly placed version indicator in User Event Redaction Admin API docs. ([\#18152](https://github.com/element-hq/synapse/issues/18152))
1238
+ - Document suspension Admin API. ([\#18162](https://github.com/element-hq/synapse/issues/18162))
1239
+
1240
+ ### Deprecations and Removals
1241
+
1242
+ - Disable room list publication by default. ([\#18175](https://github.com/element-hq/synapse/issues/18175))
1243
+
1244
+ ### Updates to locked dependencies
1245
+
1246
+ * Bump anyhow from 1.0.95 to 1.0.96. ([\#18187](https://github.com/element-hq/synapse/issues/18187))
1247
+ * Bump authlib from 1.4.0 to 1.4.1. ([\#18190](https://github.com/element-hq/synapse/issues/18190))
1248
+ * Bump click from 8.1.7 to 8.1.8. ([\#18189](https://github.com/element-hq/synapse/issues/18189))
1249
+ * Bump log from 0.4.25 to 0.4.26. ([\#18184](https://github.com/element-hq/synapse/issues/18184))
1250
+ * Bump pyo3-log from 0.12.0 to 0.12.1. ([\#18046](https://github.com/element-hq/synapse/issues/18046))
1251
+ * Bump serde from 1.0.217 to 1.0.218. ([\#18183](https://github.com/element-hq/synapse/issues/18183))
1252
+ * Bump serde_json from 1.0.138 to 1.0.139. ([\#18186](https://github.com/element-hq/synapse/issues/18186))
1253
+ * Bump sigstore/cosign-installer from 3.8.0 to 3.8.1. ([\#18185](https://github.com/element-hq/synapse/issues/18185))
1254
+ * Bump types-psycopg2 from 2.9.21.20241019 to 2.9.21.20250121. ([\#18188](https://github.com/element-hq/synapse/issues/18188))
1255
+
1256
+
1257
+ # Synapse 1.125.0 (2025-02-25)
1258
+
1259
+ No significant changes since 1.125.0rc1.
1260
+
1261
+
1262
+ # Synapse 1.125.0rc1 (2025-02-18)
1263
+
1264
+ ### Features
1265
+
1266
+ - Add functionality to be able to use multiple values in SSO feature `attribute_requirements`. ([\#17949](https://github.com/element-hq/synapse/issues/17949))
1267
+ - Add experimental config options `admin_token_path` and `client_secret_path` for [MSC3861](https://github.com/matrix-org/matrix-spec-proposals/pull/3861). ([\#18004](https://github.com/element-hq/synapse/issues/18004))
1268
+ - Add `get_current_time_msec()` method to the [module API](https://matrix-org.github.io/synapse/latest/modules/writing_a_module.html) for sound time comparisons with Synapse. ([\#18144](https://github.com/element-hq/synapse/issues/18144))
1269
+
1270
+ ### Bugfixes
1271
+
1272
+ - Update the response when a client attempts to add an invalid email address to the user's account from a 500, to a 400 with error text. ([\#18125](https://github.com/element-hq/synapse/issues/18125))
1273
+ - Fix user directory search when using a legacy module with a `check_username_for_spam` callback. Broke in v1.122.0. ([\#18135](https://github.com/element-hq/synapse/issues/18135))
1274
+
1275
+ ### Updates to the Docker image
1276
+
1277
+ - Add `SYNAPSE_HTTP_PROXY`/`SYNAPSE_HTTPS_PROXY`/`SYNAPSE_NO_PROXY` environment variables to pass through specifically to the Synapse process (instead of needing to apply [`http_proxy`/`https_proxy`/`no_proxy`](https://element-hq.github.io/synapse/latest/setup/forward_proxy.html) globally). ([\#18158](https://github.com/element-hq/synapse/issues/18158))
1278
+
1279
+ ### Improved Documentation
1280
+
1281
+ - Add Oracle Linux 8 and 9 installation instructions. ([\#17436](https://github.com/element-hq/synapse/issues/17436))
1282
+ - Document missing server config options (`daemonize`, `print_pidfile`, `user_agent_suffix`, `use_frozen_dicts`, `manhole`). ([\#18122](https://github.com/element-hq/synapse/issues/18122))
1283
+ - Document consequences of replacing secrets. ([\#18138](https://github.com/element-hq/synapse/issues/18138))
1284
+ - Make `burst_count` field an integer in `rc_presence` config documentation example. ([\#18159](https://github.com/element-hq/synapse/issues/18159))
1285
+
1286
+ ### Internal Changes
1287
+
1288
+ - Overload `DatabasePool.simple_select_one_txn` to return non-`None` when the `allow_none` parameter is `False`. ([\#17616](https://github.com/element-hq/synapse/issues/17616))
1289
+ - Python 3.8 EOL: compile native extensions with the 3.9 ABI and use typing hints from the standard library. ([\#17967](https://github.com/element-hq/synapse/issues/17967))
1290
+ - Add log message when worker lock timeouts get large. ([\#18124](https://github.com/element-hq/synapse/issues/18124))
1291
+ - Make it explicit that you can buy an AGPL-alternative commercial license from Element. ([\#18134](https://github.com/element-hq/synapse/issues/18134))
1292
+ - Fix the 'Fix linting' GitHub Actions workflow. ([\#18136](https://github.com/element-hq/synapse/issues/18136))
1293
+ - Do not log at the exception-level when clients provide empty `since` token to `/sync` API. ([\#18139](https://github.com/element-hq/synapse/issues/18139))
1294
+ - Reduce database load of user search when using large search terms. ([\#18172](https://github.com/element-hq/synapse/issues/18172))
1295
+
1296
+
1297
+
1298
+ ### Updates to locked dependencies
1299
+
1300
+ * Bump bcrypt from 4.2.0 to 4.2.1. ([\#18127](https://github.com/element-hq/synapse/issues/18127))
1301
+ * Bump bytes from 1.9.0 to 1.10.0. ([\#18149](https://github.com/element-hq/synapse/issues/18149))
1302
+ * Bump gitpython from 3.1.43 to 3.1.44. ([\#18128](https://github.com/element-hq/synapse/issues/18128))
1303
+ * Bump hiredis from 3.0.0 to 3.1.0. ([\#18169](https://github.com/element-hq/synapse/issues/18169))
1304
+ * Bump serde_json from 1.0.137 to 1.0.138. ([\#18129](https://github.com/element-hq/synapse/issues/18129))
1305
+ * Bump service-identity from 24.1.0 to 24.2.0. ([\#18171](https://github.com/element-hq/synapse/issues/18171))
1306
+ * Bump sigstore/cosign-installer from 3.7.0 to 3.8.0. ([\#18147](https://github.com/element-hq/synapse/issues/18147))
1307
+ * Bump twine from 6.0.1 to 6.1.0. ([\#18170](https://github.com/element-hq/synapse/issues/18170))
1308
+ * Bump types-pyyaml from 6.0.12.20240917 to 6.0.12.20241230. ([\#18097](https://github.com/element-hq/synapse/issues/18097))
1309
+ * Bump ulid from 1.1.4 to 1.2.0. ([\#18148](https://github.com/element-hq/synapse/issues/18148))
1310
+
1311
+ # Synapse 1.124.0 (2025-02-11)
1312
+
1313
+ No significant changes since 1.124.0rc3.
1314
+
1315
+
1316
+
1317
+
1318
+ # Synapse 1.124.0rc3 (2025-02-07)
1319
+
1320
+ ### Bugfixes
1321
+
1322
+ - Fix regression in performance of sending events due to superfluous reads and locks. Introduced in v1.124.0rc1. ([\#18141](https://github.com/element-hq/synapse/issues/18141))
1323
+
1324
+
1325
+
1326
+
1327
+ # Synapse 1.124.0rc2 (2025-02-05)
1328
+
1329
+ ### Bugfixes
1330
+
1331
+ - Fix regression where persisting events in some rooms could fail after a previous unclean shutdown. Introduced in v1.124.0rc1. ([\#18137](https://github.com/element-hq/synapse/issues/18137))
1332
+
1333
+
1334
+
1335
+
1336
+ # Synapse 1.124.0rc1 (2025-02-04)
1337
+
1338
+ ### Bugfixes
1339
+
1340
+ - Add rate limit `rc_presence.per_user`. This prevents load from excessive presence updates sent by clients via sync api. Also rate limit `/_matrix/client/v3/presence` as per the spec. Contributed by @rda0. ([\#18000](https://github.com/element-hq/synapse/issues/18000))
1341
+ - Deactivated users will no longer automatically accept an invite when `auto_accept_invites` is enabled. ([\#18073](https://github.com/element-hq/synapse/issues/18073))
1342
+ - Fix join being denied after being invited over federation. Also fixes other out-of-band membership transitions. ([\#18075](https://github.com/element-hq/synapse/issues/18075))
1343
+ - Updates contributed `docker-compose.yml` file to PostgreSQL v15, as v12 is no longer supported by Synapse.
1344
+ Contributed by @maxkratz. ([\#18089](https://github.com/element-hq/synapse/issues/18089))
1345
+ - Fix rare edge case where state groups could be deleted while we are persisting new events that reference them. ([\#18107](https://github.com/element-hq/synapse/issues/18107), [\#18130](https://github.com/element-hq/synapse/issues/18130), [\#18131](https://github.com/element-hq/synapse/issues/18131))
1346
+ - Raise an error if someone is using an incorrect suffix in a config duration string. ([\#18112](https://github.com/element-hq/synapse/issues/18112))
1347
+ - Fix a bug where the [Delete Room Admin API](https://element-hq.github.io/synapse/latest/admin_api/rooms.html#version-2-new-version) would fail if the `block` parameter was set to `true` and a worker other than the main process was configured to handle background tasks. ([\#18119](https://github.com/element-hq/synapse/issues/18119))
1348
+
1349
+ ### Internal Changes
1350
+
1351
+ - Increase the length of the generated `nonce` parameter when perfoming OIDC logins to comply with the TI-Messenger spec. ([\#18109](https://github.com/element-hq/synapse/issues/18109))
1352
+
1353
+
1354
+
1355
+ ### Updates to locked dependencies
1356
+
1357
+ * Bump dawidd6/action-download-artifact from 7 to 8. ([\#18108](https://github.com/element-hq/synapse/issues/18108))
1358
+ * Bump log from 0.4.22 to 0.4.25. ([\#18098](https://github.com/element-hq/synapse/issues/18098))
1359
+ * Bump python-multipart from 0.0.18 to 0.0.20. ([\#18096](https://github.com/element-hq/synapse/issues/18096))
1360
+ * Bump serde_json from 1.0.135 to 1.0.137. ([\#18099](https://github.com/element-hq/synapse/issues/18099))
1361
+ * Bump types-bleach from 6.1.0.20240331 to 6.2.0.20241123. ([\#18082](https://github.com/element-hq/synapse/issues/18082))
1362
+
1363
+ # Synapse 1.123.0 (2025-01-28)
1364
+
1365
+ No significant changes since 1.123.0rc1.
1366
+
1367
+
1368
+
1369
+
1370
+ # Synapse 1.123.0rc1 (2025-01-21)
1371
+
1372
+ ### Features
1373
+
1374
+ - Implement [MSC4133](https://github.com/matrix-org/matrix-spec-proposals/pull/4133) for custom profile fields. Contributed by @clokep. ([\#17488](https://github.com/element-hq/synapse/issues/17488))
1375
+ - Add a query parameter `type` to the [Room State Admin API](https://element-hq.github.io/synapse/develop/admin_api/rooms.html#room-state-api) that filters the state event. ([\#18035](https://github.com/element-hq/synapse/issues/18035))
1376
+ - Support the new `/auth_metadata` endpoint defined in [MSC2965](https://github.com/matrix-org/matrix-spec-proposals/pull/2965). ([\#18093](https://github.com/element-hq/synapse/issues/18093))
1377
+
1378
+ ### Bugfixes
1379
+
1380
+ - Fix membership caches not updating in state reset scenarios. ([\#17732](https://github.com/element-hq/synapse/issues/17732))
1381
+ - Fix rare race where on upgrade to v1.122.0 a long running database upgrade could lock out new events from being received or sent. ([\#18091](https://github.com/element-hq/synapse/issues/18091))
1382
+
1383
+ ### Improved Documentation
1384
+
1385
+ - Document `tls` option for a worker instance in `instance_map`. ([\#18064](https://github.com/element-hq/synapse/issues/18064))
1386
+
1387
+ ### Deprecations and Removals
1388
+
1389
+ - Remove the unstable [MSC4151](https://github.com/matrix-org/matrix-spec-proposals/pull/4151) implementation. The stable support remains, per [Matrix 1.13](https://spec.matrix.org/v1.13/client-server-api/#post_matrixclientv3roomsroomidreport). ([\#18052](https://github.com/element-hq/synapse/issues/18052))
1390
+
1391
+ ### Internal Changes
1392
+
1393
+ - Increase invite rate limits (`rc_invites.per_issuer`) for Complement. ([\#18072](https://github.com/element-hq/synapse/issues/18072))
1394
+
1395
+
1396
+
1397
+ ### Updates to locked dependencies
1398
+
1399
+ * Bump jinja2 from 3.1.4 to 3.1.5. ([\#18067](https://github.com/element-hq/synapse/issues/18067))
1400
+ * Bump mypy from 1.12.1 to 1.13.0. ([\#18083](https://github.com/element-hq/synapse/issues/18083))
1401
+ * Bump pillow from 11.0.0 to 11.1.0. ([\#18084](https://github.com/element-hq/synapse/issues/18084))
1402
+ * Bump pyo3 from 0.23.3 to 0.23.4. ([\#18079](https://github.com/element-hq/synapse/issues/18079))
1403
+ * Bump pyopenssl from 24.2.1 to 24.3.0. ([\#18062](https://github.com/element-hq/synapse/issues/18062))
1404
+ * Bump serde_json from 1.0.134 to 1.0.135. ([\#18081](https://github.com/element-hq/synapse/issues/18081))
1405
+ * Bump ulid from 1.1.3 to 1.1.4. ([\#18080](https://github.com/element-hq/synapse/issues/18080))
1406
+
1407
+ # Synapse 1.122.0 (2025-01-14)
1408
+
1409
+ Please note that this version of Synapse drops support for PostgreSQL 11 and 12. The minimum version of PostgreSQL supported is now version 13.
1410
+
1411
+ No significant changes since 1.122.0rc1.
1412
+
1413
+
1414
+ # Synapse 1.122.0rc1 (2025-01-07)
1415
+
1416
+ ### Deprecations and Removals
1417
+
1418
+ - Remove support for PostgreSQL 11 and 12. Contributed by @clokep. ([\#18034](https://github.com/element-hq/synapse/issues/18034))
1419
+
1420
+ ### Features
1421
+
1422
+ - Added the `email.tlsname` config option. This allows specifying the domain name used to validate the SMTP server's TLS certificate separately from the `email.smtp_host` to connect to. ([\#17849](https://github.com/element-hq/synapse/issues/17849))
1423
+ - Module developers will have access to the user ID of the requester when adding `check_username_for_spam` callbacks to `spam_checker_module_callbacks`. Contributed by Wilson@Pangea.chat. ([\#17916](https://github.com/element-hq/synapse/issues/17916))
1424
+ - Add endpoints to the Admin API to fetch the number of invites the provided user has sent after a given timestamp,
1425
+ fetch the number of rooms the provided user has joined after a given timestamp, and get report IDs of event
1426
+ reports against a provided user (i.e. where the user was the sender of the reported event). ([\#17948](https://github.com/element-hq/synapse/issues/17948))
1427
+ - Support stable account suspension from [MSC3823](https://github.com/matrix-org/matrix-spec-proposals/pull/3823). ([\#17964](https://github.com/element-hq/synapse/issues/17964))
1428
+ - Add `macaroon_secret_key_path` config option. ([\#17983](https://github.com/element-hq/synapse/issues/17983))
1429
+
1430
+ ### Bugfixes
1431
+
1432
+ - Fix bug when rejecting withdrew invite with a `third_party_rules` module, where the invite would be stuck for the client. ([\#17930](https://github.com/element-hq/synapse/issues/17930))
1433
+ - Properly purge state groups tables when purging a room with the Admin API. ([\#18024](https://github.com/element-hq/synapse/issues/18024))
1434
+ - Fix a bug preventing the admin redaction endpoint from working on messages from remote users. ([\#18029](https://github.com/element-hq/synapse/issues/18029), [\#18043](https://github.com/element-hq/synapse/issues/18043))
1435
+
1436
+ ### Improved Documentation
1437
+
1438
+ - Update `synapse.app.generic_worker` documentation to only recommend `GET` requests for stream writer routes by default, unless the worker is also configured as a stream writer. Contributed by @evoL. ([\#17954](https://github.com/element-hq/synapse/issues/17954))
1439
+ - Add documentation for the previously-undocumented `last_seen_ts` query parameter to the query user Admin API. ([\#17976](https://github.com/element-hq/synapse/issues/17976))
1440
+ - Improve documentation for the `TaskScheduler` class. ([\#17992](https://github.com/element-hq/synapse/issues/17992))
1441
+ - Fix example in reverse proxy docs to include server port. ([\#17994](https://github.com/element-hq/synapse/issues/17994))
1442
+ - Update Alpine Linux Synapse Package Maintainer within the installation instructions. ([\#17846](https://github.com/element-hq/synapse/issues/17846))
1443
+
1444
+ ### Internal Changes
1445
+
1446
+ - Add `RoomID` & `EventID` rust types. ([\#17996](https://github.com/element-hq/synapse/issues/17996))
1447
+ - Fix various type errors across the codebase. ([\#17998](https://github.com/element-hq/synapse/issues/17998))
1448
+ - Disable DB statement timeout when doing a room purge since it can be quite long. ([\#18017](https://github.com/element-hq/synapse/issues/18017))
1449
+ - Remove some remaining uses of `twisted.internet.defer.returnValue`. Contributed by Colin Watson. ([\#18020](https://github.com/element-hq/synapse/issues/18020))
1450
+ - Refactor `get_profile` to no longer include fields with a value of `None`. ([\#18063](https://github.com/element-hq/synapse/issues/18063))
1451
+
1452
+ ### Updates to locked dependencies
1453
+
1454
+ * Bump anyhow from 1.0.93 to 1.0.95. ([\#18012](https://github.com/element-hq/synapse/issues/18012), [\#18045](https://github.com/element-hq/synapse/issues/18045))
1455
+ * Bump authlib from 1.3.2 to 1.4.0. ([\#18048](https://github.com/element-hq/synapse/issues/18048))
1456
+ * Bump dawidd6/action-download-artifact from 6 to 7. ([\#17981](https://github.com/element-hq/synapse/issues/17981))
1457
+ * Bump http from 1.1.0 to 1.2.0. ([\#18013](https://github.com/element-hq/synapse/issues/18013))
1458
+ - Bump mypy from 1.11.2 to 1.12.1. ([\#17999](https://github.com/element-hq/synapse/issues/17999))
1459
+ * Bump mypy-zope from 1.0.8 to 1.0.9. ([\#18047](https://github.com/element-hq/synapse/issues/18047))
1460
+ * Bump pillow from 10.4.0 to 11.0.0. ([\#18015](https://github.com/element-hq/synapse/issues/18015))
1461
+ * Bump pydantic from 2.9.2 to 2.10.3. ([\#18014](https://github.com/element-hq/synapse/issues/18014))
1462
+ * Bump pyicu from 2.13.1 to 2.14. ([\#18060](https://github.com/element-hq/synapse/issues/18060))
1463
+ * Bump pyo3 from 0.23.2 to 0.23.3. ([\#18001](https://github.com/element-hq/synapse/issues/18001))
1464
+ * Bump python-multipart from 0.0.16 to 0.0.18. ([\#17985](https://github.com/element-hq/synapse/issues/17985))
1465
+ * Bump sentry-sdk from 2.17.0 to 2.19.2. ([\#18061](https://github.com/element-hq/synapse/issues/18061))
1466
+ * Bump serde from 1.0.215 to 1.0.217. ([\#18031](https://github.com/element-hq/synapse/issues/18031), [\#18059](https://github.com/element-hq/synapse/issues/18059))
1467
+ * Bump serde_json from 1.0.133 to 1.0.134. ([\#18044](https://github.com/element-hq/synapse/issues/18044))
1468
+ * Bump twine from 5.1.1 to 6.0.1. ([\#18049](https://github.com/element-hq/synapse/issues/18049))
1469
+
1470
+ **Changelogs for older versions can be found [here](docs/changelogs/).**