upgrade.html 133 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920
  1. <!DOCTYPE HTML>
  2. <html lang="en" class="sidebar-visible no-js light">
  3. <head>
  4. <!-- Book generated using mdBook -->
  5. <meta charset="UTF-8">
  6. <title>Upgrading between Synapse Versions - Synapse</title>
  7. <!-- Custom HTML head -->
  8. <meta content="text/html; charset=utf-8" http-equiv="Content-Type">
  9. <meta name="description" content="">
  10. <meta name="viewport" content="width=device-width, initial-scale=1">
  11. <meta name="theme-color" content="#ffffff" />
  12. <link rel="icon" href="favicon.svg">
  13. <link rel="shortcut icon" href="favicon.png">
  14. <link rel="stylesheet" href="css/variables.css">
  15. <link rel="stylesheet" href="css/general.css">
  16. <link rel="stylesheet" href="css/chrome.css">
  17. <link rel="stylesheet" href="css/print.css" media="print">
  18. <!-- Fonts -->
  19. <link rel="stylesheet" href="FontAwesome/css/font-awesome.css">
  20. <link rel="stylesheet" href="fonts/fonts.css">
  21. <!-- Highlight.js Stylesheets -->
  22. <link rel="stylesheet" href="highlight.css">
  23. <link rel="stylesheet" href="tomorrow-night.css">
  24. <link rel="stylesheet" href="ayu-highlight.css">
  25. <!-- Custom theme stylesheets -->
  26. <link rel="stylesheet" href="docs/website_files/table-of-contents.css">
  27. <link rel="stylesheet" href="docs/website_files/remove-nav-buttons.css">
  28. <link rel="stylesheet" href="docs/website_files/indent-section-headers.css">
  29. <link rel="stylesheet" href="docs/website_files/version-picker.css">
  30. </head>
  31. <body>
  32. <!-- Provide site root to javascript -->
  33. <script type="text/javascript">
  34. var path_to_root = "";
  35. var default_theme = window.matchMedia("(prefers-color-scheme: dark)").matches ? "navy" : "light";
  36. </script>
  37. <!-- Work around some values being stored in localStorage wrapped in quotes -->
  38. <script type="text/javascript">
  39. try {
  40. var theme = localStorage.getItem('mdbook-theme');
  41. var sidebar = localStorage.getItem('mdbook-sidebar');
  42. if (theme.startsWith('"') && theme.endsWith('"')) {
  43. localStorage.setItem('mdbook-theme', theme.slice(1, theme.length - 1));
  44. }
  45. if (sidebar.startsWith('"') && sidebar.endsWith('"')) {
  46. localStorage.setItem('mdbook-sidebar', sidebar.slice(1, sidebar.length - 1));
  47. }
  48. } catch (e) { }
  49. </script>
  50. <!-- Set the theme before any content is loaded, prevents flash -->
  51. <script type="text/javascript">
  52. var theme;
  53. try { theme = localStorage.getItem('mdbook-theme'); } catch(e) { }
  54. if (theme === null || theme === undefined) { theme = default_theme; }
  55. var html = document.querySelector('html');
  56. html.classList.remove('no-js')
  57. html.classList.remove('light')
  58. html.classList.add(theme);
  59. html.classList.add('js');
  60. </script>
  61. <!-- Hide / unhide sidebar before it is displayed -->
  62. <script type="text/javascript">
  63. var html = document.querySelector('html');
  64. var sidebar = 'hidden';
  65. if (document.body.clientWidth >= 1080) {
  66. try { sidebar = localStorage.getItem('mdbook-sidebar'); } catch(e) { }
  67. sidebar = sidebar || 'visible';
  68. }
  69. html.classList.remove('sidebar-visible');
  70. html.classList.add("sidebar-" + sidebar);
  71. </script>
  72. <nav id="sidebar" class="sidebar" aria-label="Table of contents">
  73. <div class="sidebar-scrollbox">
  74. <ol class="chapter"><li class="chapter-item expanded affix "><li class="part-title">Introduction</li><li class="chapter-item expanded "><a href="welcome_and_overview.html">Welcome and Overview</a></li><li class="chapter-item expanded affix "><li class="part-title">Setup</li><li class="chapter-item expanded "><a href="setup/installation.html">Installation</a></li><li class="chapter-item expanded "><a href="postgres.html">Using Postgres</a></li><li class="chapter-item expanded "><a href="reverse_proxy.html">Configuring a Reverse Proxy</a></li><li class="chapter-item expanded "><a href="setup/forward_proxy.html">Configuring a Forward/Outbound Proxy</a></li><li class="chapter-item expanded "><a href="turn-howto.html">Configuring a Turn Server</a></li><li><ol class="section"><li class="chapter-item expanded "><a href="setup/turn/coturn.html">coturn TURN server</a></li><li class="chapter-item expanded "><a href="setup/turn/eturnal.html">eturnal TURN server</a></li></ol></li><li class="chapter-item expanded "><a href="delegate.html">Delegation</a></li><li class="chapter-item expanded affix "><li class="part-title">Upgrading</li><li class="chapter-item expanded "><a href="upgrade.html" class="active">Upgrading between Synapse Versions</a></li><li class="chapter-item expanded affix "><li class="part-title">Usage</li><li class="chapter-item expanded "><a href="federate.html">Federation</a></li><li class="chapter-item expanded "><a href="usage/configuration/index.html">Configuration</a></li><li><ol class="section"><li class="chapter-item expanded "><a href="usage/configuration/config_documentation.html">Configuration Manual</a></li><li class="chapter-item expanded "><a href="usage/configuration/homeserver_sample_config.html">Homeserver Sample Config File</a></li><li class="chapter-item expanded "><a href="usage/configuration/logging_sample_config.html">Logging Sample Config File</a></li><li class="chapter-item expanded "><a href="structured_logging.html">Structured Logging</a></li><li class="chapter-item expanded "><a href="templates.html">Templates</a></li><li class="chapter-item expanded "><a href="usage/configuration/user_authentication/index.html">User Authentication</a></li><li><ol class="section"><li class="chapter-item expanded "><a href="usage/configuration/user_authentication/single_sign_on/index.html">Single-Sign On</a></li><li><ol class="section"><li class="chapter-item expanded "><a href="openid.html">OpenID Connect</a></li><li class="chapter-item expanded "><a href="usage/configuration/user_authentication/single_sign_on/saml.html">SAML</a></li><li class="chapter-item expanded "><a href="usage/configuration/user_authentication/single_sign_on/cas.html">CAS</a></li><li class="chapter-item expanded "><a href="sso_mapping_providers.html">SSO Mapping Providers</a></li></ol></li><li class="chapter-item expanded "><a href="password_auth_providers.html">Password Auth Providers</a></li><li class="chapter-item expanded "><a href="jwt.html">JSON Web Tokens</a></li><li class="chapter-item expanded "><a href="usage/configuration/user_authentication/refresh_tokens.html">Refresh Tokens</a></li></ol></li><li class="chapter-item expanded "><a href="CAPTCHA_SETUP.html">Registration Captcha</a></li><li class="chapter-item expanded "><a href="application_services.html">Application Services</a></li><li class="chapter-item expanded "><a href="server_notices.html">Server Notices</a></li><li class="chapter-item expanded "><a href="consent_tracking.html">Consent Tracking</a></li><li class="chapter-item expanded "><a href="user_directory.html">User Directory</a></li><li class="chapter-item expanded "><a href="message_retention_policies.html">Message Retention Policies</a></li><li class="chapter-item expanded "><a href="modules/index.html">Pluggable Modules</a></li><li><ol class="section"><li class="chapter-item expanded "><a href="modules/writing_a_module.html">Writing a module</a></li><li><ol class="section"><li class="chapter-item expanded "><a href="modules/spam_checker_callbacks.html">Spam checker callbacks</a></li><li class="chapter-item expanded "><a href="modules/third_party_rules_callbacks.html">Third-party rules callbacks</a></li><li class="chapter-item expanded "><a href="modules/presence_router_callbacks.html">Presence router callbacks</a></li><li class="chapter-item expanded "><a href="modules/account_validity_callbacks.html">Account validity callbacks</a></li><li class="chapter-item expanded "><a href="modules/password_auth_provider_callbacks.html">Password auth provider callbacks</a></li><li class="chapter-item expanded "><a href="modules/background_update_controller_callbacks.html">Background update controller callbacks</a></li><li class="chapter-item expanded "><a href="modules/account_data_callbacks.html">Account data callbacks</a></li><li class="chapter-item expanded "><a href="modules/porting_legacy_module.html">Porting a legacy module to the new interface</a></li></ol></li></ol></li><li class="chapter-item expanded "><a href="workers.html">Workers</a></li><li><ol class="section"><li class="chapter-item expanded "><a href="synctl_workers.html">Using synctl with Workers</a></li><li class="chapter-item expanded "><a href="systemd-with-workers/index.html">Systemd</a></li></ol></li></ol></li><li class="chapter-item expanded "><a href="usage/administration/index.html">Administration</a></li><li><ol class="section"><li class="chapter-item expanded "><a href="usage/administration/admin_api/index.html">Admin API</a></li><li><ol class="section"><li class="chapter-item expanded "><a href="admin_api/account_validity.html">Account Validity</a></li><li class="chapter-item expanded "><a href="usage/administration/admin_api/background_updates.html">Background Updates</a></li><li class="chapter-item expanded "><a href="admin_api/event_reports.html">Event Reports</a></li><li class="chapter-item expanded "><a href="admin_api/media_admin_api.html">Media</a></li><li class="chapter-item expanded "><a href="admin_api/purge_history_api.html">Purge History</a></li><li class="chapter-item expanded "><a href="admin_api/register_api.html">Register Users</a></li><li class="chapter-item expanded "><a href="usage/administration/admin_api/registration_tokens.html">Registration Tokens</a></li><li class="chapter-item expanded "><a href="admin_api/room_membership.html">Manipulate Room Membership</a></li><li class="chapter-item expanded "><a href="admin_api/rooms.html">Rooms</a></li><li class="chapter-item expanded "><a href="admin_api/server_notices.html">Server Notices</a></li><li class="chapter-item expanded "><a href="admin_api/statistics.html">Statistics</a></li><li class="chapter-item expanded "><a href="admin_api/user_admin_api.html">Users</a></li><li class="chapter-item expanded "><a href="admin_api/version_api.html">Server Version</a></li><li class="chapter-item expanded "><a href="usage/administration/admin_api/federation.html">Federation</a></li></ol></li><li class="chapter-item expanded "><a href="manhole.html">Manhole</a></li><li class="chapter-item expanded "><a href="metrics-howto.html">Monitoring</a></li><li><ol class="section"><li class="chapter-item expanded "><a href="usage/administration/monitoring/reporting_homeserver_usage_statistics.html">Reporting Homeserver Usage Statistics</a></li></ol></li><li class="chapter-item expanded "><a href="usage/administration/monthly_active_users.html">Monthly Active Users</a></li><li class="chapter-item expanded "><a href="usage/administration/understanding_synapse_through_grafana_graphs.html">Understanding Synapse Through Grafana Graphs</a></li><li class="chapter-item expanded "><a href="usage/administration/useful_sql_for_admins.html">Useful SQL for Admins</a></li><li class="chapter-item expanded "><a href="usage/administration/database_maintenance_tools.html">Database Maintenance Tools</a></li><li class="chapter-item expanded "><a href="usage/administration/state_groups.html">State Groups</a></li><li class="chapter-item expanded "><a href="usage/administration/request_log.html">Request log format</a></li><li class="chapter-item expanded "><a href="usage/administration/admin_faq.html">Admin FAQ</a></li><li class="chapter-item expanded "><div>Scripts</div></li></ol></li><li class="chapter-item expanded "><li class="part-title">Development</li><li class="chapter-item expanded "><a href="development/contributing_guide.html">Contributing Guide</a></li><li class="chapter-item expanded "><a href="code_style.html">Code Style</a></li><li class="chapter-item expanded "><a href="development/reviews.html">Reviewing Code</a></li><li class="chapter-item expanded "><a href="development/releases.html">Release Cycle</a></li><li class="chapter-item expanded "><a href="development/git.html">Git Usage</a></li><li class="chapter-item expanded "><div>Testing</div></li><li><ol class="section"><li class="chapter-item expanded "><a href="development/demo.html">Demo scripts</a></li></ol></li><li class="chapter-item expanded "><a href="opentracing.html">OpenTracing</a></li><li class="chapter-item expanded "><a href="development/database_schema.html">Database Schemas</a></li><li class="chapter-item expanded "><a href="development/experimental_features.html">Experimental features</a></li><li class="chapter-item expanded "><a href="development/dependencies.html">Dependency management</a></li><li class="chapter-item expanded "><div>Synapse Architecture</div></li><li><ol class="section"><li class="chapter-item expanded "><a href="development/synapse_architecture/cancellation.html">Cancellation</a></li><li class="chapter-item expanded "><a href="log_contexts.html">Log Contexts</a></li><li class="chapter-item expanded "><a href="replication.html">Replication</a></li><li class="chapter-item expanded "><a href="tcp_replication.html">TCP Replication</a></li></ol></li><li class="chapter-item expanded "><a href="development/internal_documentation/index.html">Internal Documentation</a></li><li><ol class="section"><li class="chapter-item expanded "><div>Single Sign-On</div></li><li><ol class="section"><li class="chapter-item expanded "><a href="development/saml.html">SAML</a></li><li class="chapter-item expanded "><a href="development/cas.html">CAS</a></li></ol></li><li class="chapter-item expanded "><a href="development/room-dag-concepts.html">Room DAG concepts</a></li><li class="chapter-item expanded "><div>State Resolution</div></li><li><ol class="section"><li class="chapter-item expanded "><a href="auth_chain_difference_algorithm.html">The Auth Chain Difference Algorithm</a></li></ol></li><li class="chapter-item expanded "><a href="media_repository.html">Media Repository</a></li><li class="chapter-item expanded "><a href="room_and_user_statistics.html">Room and User Statistics</a></li></ol></li><li class="chapter-item expanded "><div>Scripts</div></li><li class="chapter-item expanded affix "><li class="part-title">Other</li><li class="chapter-item expanded "><a href="deprecation_policy.html">Dependency Deprecation Policy</a></li><li class="chapter-item expanded "><a href="other/running_synapse_on_single_board_computers.html">Running Synapse on a Single-Board Computer</a></li></ol>
  75. </div>
  76. <div id="sidebar-resize-handle" class="sidebar-resize-handle"></div>
  77. </nav>
  78. <div id="page-wrapper" class="page-wrapper">
  79. <div class="page">
  80. <div id="menu-bar-hover-placeholder"></div>
  81. <div id="menu-bar" class="menu-bar sticky bordered">
  82. <div class="left-buttons">
  83. <button id="sidebar-toggle" class="icon-button" type="button" title="Toggle Table of Contents" aria-label="Toggle Table of Contents" aria-controls="sidebar">
  84. <i class="fa fa-bars"></i>
  85. </button>
  86. <button id="theme-toggle" class="icon-button" type="button" title="Change theme" aria-label="Change theme" aria-haspopup="true" aria-expanded="false" aria-controls="theme-list">
  87. <i class="fa fa-paint-brush"></i>
  88. </button>
  89. <ul id="theme-list" class="theme-popup" aria-label="Themes" role="menu">
  90. <li role="none"><button role="menuitem" class="theme" id="light">Light (default)</button></li>
  91. <li role="none"><button role="menuitem" class="theme" id="rust">Rust</button></li>
  92. <li role="none"><button role="menuitem" class="theme" id="coal">Coal</button></li>
  93. <li role="none"><button role="menuitem" class="theme" id="navy">Navy</button></li>
  94. <li role="none"><button role="menuitem" class="theme" id="ayu">Ayu</button></li>
  95. </ul>
  96. <button id="search-toggle" class="icon-button" type="button" title="Search. (Shortkey: s)" aria-label="Toggle Searchbar" aria-expanded="false" aria-keyshortcuts="S" aria-controls="searchbar">
  97. <i class="fa fa-search"></i>
  98. </button>
  99. <div class="version-picker">
  100. <div class="dropdown">
  101. <div class="select">
  102. <span></span>
  103. <i class="fa fa-chevron-down"></i>
  104. </div>
  105. <input type="hidden" name="version">
  106. <ul class="dropdown-menu">
  107. <!-- Versions will be added dynamically in version-picker.js -->
  108. </ul>
  109. </div>
  110. </div>
  111. </div>
  112. <h1 class="menu-title">Synapse</h1>
  113. <div class="right-buttons">
  114. <a href="print.html" title="Print this book" aria-label="Print this book">
  115. <i id="print-button" class="fa fa-print"></i>
  116. </a>
  117. <a href="https://github.com/matrix-org/synapse" title="Git repository" aria-label="Git repository">
  118. <i id="git-repository-button" class="fa fa-github"></i>
  119. </a>
  120. <a href="https://github.com/matrix-org/synapse/edit/develop/docs/upgrade.md" title="Suggest an edit" aria-label="Suggest an edit">
  121. <i id="git-edit-button" class="fa fa-edit"></i>
  122. </a>
  123. </div>
  124. </div>
  125. <div id="search-wrapper" class="hidden">
  126. <form id="searchbar-outer" class="searchbar-outer">
  127. <input type="search" id="searchbar" name="searchbar" placeholder="Search this book ..." aria-controls="searchresults-outer" aria-describedby="searchresults-header">
  128. </form>
  129. <div id="searchresults-outer" class="searchresults-outer hidden">
  130. <div id="searchresults-header" class="searchresults-header"></div>
  131. <ul id="searchresults">
  132. </ul>
  133. </div>
  134. </div>
  135. <!-- Apply ARIA attributes after the sidebar and the sidebar toggle button are added to the DOM -->
  136. <script type="text/javascript">
  137. document.getElementById('sidebar-toggle').setAttribute('aria-expanded', sidebar === 'visible');
  138. document.getElementById('sidebar').setAttribute('aria-hidden', sidebar !== 'visible');
  139. Array.from(document.querySelectorAll('#sidebar a')).forEach(function(link) {
  140. link.setAttribute('tabIndex', sidebar === 'visible' ? 0 : -1);
  141. });
  142. </script>
  143. <div id="content" class="content">
  144. <main>
  145. <!-- Page table of contents -->
  146. <div class="sidetoc">
  147. <nav class="pagetoc"></nav>
  148. </div>
  149. <h1 id="upgrading-synapse"><a class="header" href="#upgrading-synapse">Upgrading Synapse</a></h1>
  150. <p>Before upgrading check if any special steps are required to upgrade from
  151. the version you currently have installed to the current version of
  152. Synapse. The extra instructions that may be required are listed later in
  153. this document.</p>
  154. <ul>
  155. <li>
  156. <p>Check that your versions of Python and PostgreSQL are still
  157. supported.</p>
  158. <p>Synapse follows upstream lifecycles for <a href="https://endoflife.date/python">Python</a> and
  159. <a href="https://endoflife.date/postgresql">PostgreSQL</a>, and removes support for versions
  160. which are no longer maintained.</p>
  161. <p>The website <a href="https://endoflife.date">https://endoflife.date</a> also offers convenient
  162. summaries.</p>
  163. </li>
  164. <li>
  165. <p>If Synapse was installed using <a href="setup/installation.html#prebuilt-packages">prebuilt packages</a>,
  166. you will need to follow the normal process for upgrading those packages.</p>
  167. </li>
  168. <li>
  169. <p>If Synapse was installed using pip then upgrade to the latest
  170. version by running:</p>
  171. <pre><code class="language-bash">pip install --upgrade matrix-synapse
  172. </code></pre>
  173. </li>
  174. <li>
  175. <p>If Synapse was installed from source, then:</p>
  176. <ol>
  177. <li>
  178. <p>Obtain the latest version of the source code. Git users can run
  179. <code>git pull</code> to do this.</p>
  180. </li>
  181. <li>
  182. <p>If you're running Synapse in a virtualenv, make sure to activate it before
  183. upgrading. For example, if Synapse is installed in a virtualenv in <code>~/synapse/env</code> then
  184. run:</p>
  185. <pre><code class="language-bash">source ~/synapse/env/bin/activate
  186. pip install --upgrade .
  187. </code></pre>
  188. <p>Include any relevant extras between square brackets, e.g. <code>pip install --upgrade &quot;.[postgres,oidc]&quot;</code>.</p>
  189. </li>
  190. <li>
  191. <p>If you're using <code>poetry</code> to manage a Synapse installation, run:</p>
  192. <pre><code class="language-bash">poetry install
  193. </code></pre>
  194. <p>Include any relevant extras with <code>--extras</code>, e.g. <code>poetry install --extras postgres --extras oidc</code>.
  195. It's probably easiest to run <code>poetry install --extras all</code>.</p>
  196. </li>
  197. <li>
  198. <p>Restart Synapse:</p>
  199. <pre><code class="language-bash">synctl restart
  200. </code></pre>
  201. </li>
  202. </ol>
  203. </li>
  204. </ul>
  205. <p>To check whether your update was successful, you can check the running
  206. server version with:</p>
  207. <pre><code class="language-bash"># you may need to replace 'localhost:8008' if synapse is not configured
  208. # to listen on port 8008.
  209. curl http://localhost:8008/_synapse/admin/v1/server_version
  210. </code></pre>
  211. <h2 id="rolling-back-to-older-versions"><a class="header" href="#rolling-back-to-older-versions">Rolling back to older versions</a></h2>
  212. <p>Rolling back to previous releases can be difficult, due to database
  213. schema changes between releases. Where we have been able to test the
  214. rollback process, this will be noted below.</p>
  215. <p>In general, you will need to undo any changes made during the upgrade
  216. process, for example:</p>
  217. <ul>
  218. <li>
  219. <p>pip:</p>
  220. <pre><code class="language-bash">source env/bin/activate
  221. # replace `1.3.0` accordingly:
  222. pip install matrix-synapse==1.3.0
  223. </code></pre>
  224. </li>
  225. <li>
  226. <p>Debian:</p>
  227. <pre><code class="language-bash"># replace `1.3.0` and `stretch` accordingly:
  228. wget https://packages.matrix.org/debian/pool/main/m/matrix-synapse-py3/matrix-synapse-py3_1.3.0+stretch1_amd64.deb
  229. dpkg -i matrix-synapse-py3_1.3.0+stretch1_amd64.deb
  230. </code></pre>
  231. </li>
  232. </ul>
  233. <h1 id="upgrading-to-v1720"><a class="header" href="#upgrading-to-v1720">Upgrading to v1.72.0</a></h1>
  234. <h2 id="dropping-support-for-postgresql-10"><a class="header" href="#dropping-support-for-postgresql-10">Dropping support for PostgreSQL 10</a></h2>
  235. <p>In line with our <a href="deprecation_policy.html">deprecation policy</a>, we've dropped
  236. support for PostgreSQL 10, as it is no longer supported upstream.</p>
  237. <p>This release of Synapse requires PostgreSQL 11+.</p>
  238. <h1 id="upgrading-to-v1710"><a class="header" href="#upgrading-to-v1710">Upgrading to v1.71.0</a></h1>
  239. <h2 id="removal-of-the-generate_short_term_login_token-module-api-method"><a class="header" href="#removal-of-the-generate_short_term_login_token-module-api-method">Removal of the <code>generate_short_term_login_token</code> module API method</a></h2>
  240. <p>As announced with the release of <a href="#deprecation-of-the-generate_short_term_login_token-module-api-method">Synapse 1.69.0</a>, the deprecated <code>generate_short_term_login_token</code> module method has been removed.</p>
  241. <p>Modules relying on it can instead use the <code>create_login_token</code> method.</p>
  242. <h2 id="changes-to-the-events-received-by-application-services-interest"><a class="header" href="#changes-to-the-events-received-by-application-services-interest">Changes to the events received by application services (interest)</a></h2>
  243. <p>To align with spec (changed in
  244. <a href="https://github.com/matrix-org/matrix-spec-proposals/pull/3905">MSC3905</a>), Synapse now
  245. only considers local users to be interesting. In other words, the <code>users</code> namespace
  246. regex is only be applied against local users of the homeserver.</p>
  247. <p>Please note, this probably doesn't affect the expected behavior of your application
  248. service, since an interesting local user in a room still means all messages in the room
  249. (from local or remote users) will still be considered interesting. And matching a room
  250. with the <code>rooms</code> or <code>aliases</code> namespace regex will still consider all events sent in the
  251. room to be interesting to the application service.</p>
  252. <p>If one of your application service's <code>users</code> regex was intending to match a remote user,
  253. this will no longer match as you expect. The behavioral mismatch between matching all
  254. local users and some remote users is why the spec was changed/clarified and this
  255. caveat is no longer supported.</p>
  256. <h2 id="legacy-prometheus-metric-names-are-now-disabled-by-default"><a class="header" href="#legacy-prometheus-metric-names-are-now-disabled-by-default">Legacy Prometheus metric names are now disabled by default</a></h2>
  257. <p>Synapse v1.71.0 disables legacy Prometheus metric names by default.
  258. For administrators that still rely on them and have not yet had chance to update their
  259. uses of the metrics, it's still possible to specify <code>enable_legacy_metrics: true</code> in
  260. the configuration to re-enable them temporarily.</p>
  261. <p>Synapse v1.73.0 will <strong>remove legacy metric names altogether</strong> and at that point,
  262. it will no longer be possible to re-enable them.</p>
  263. <p>If you do not use metrics or you have already updated your Grafana dashboard(s),
  264. Prometheus console(s) and alerting rule(s), there is no action needed.</p>
  265. <p>See <a href="#deprecation-of-legacy-prometheus-metric-names">v1.69.0: Deprecation of legacy Prometheus metric names</a>.</p>
  266. <h1 id="upgrading-to-v1690"><a class="header" href="#upgrading-to-v1690">Upgrading to v1.69.0</a></h1>
  267. <h2 id="changes-to-the-receipts-replication-streams"><a class="header" href="#changes-to-the-receipts-replication-streams">Changes to the receipts replication streams</a></h2>
  268. <p>Synapse now includes information indicating if a receipt applies to a thread when
  269. replicating it to other workers. This is a forwards- and backwards-incompatible
  270. change: v1.68 and workers cannot process receipts replicated by v1.69 workers, and
  271. vice versa.</p>
  272. <p>Once all workers are upgraded to v1.69 (or downgraded to v1.68), receipts
  273. replication will resume as normal.</p>
  274. <h2 id="deprecation-of-legacy-prometheus-metric-names"><a class="header" href="#deprecation-of-legacy-prometheus-metric-names">Deprecation of legacy Prometheus metric names</a></h2>
  275. <p>In current versions of Synapse, some Prometheus metrics are emitted under two different names,
  276. with one of the names being older but non-compliant with OpenMetrics and Prometheus conventions
  277. and one of the names being newer but compliant.</p>
  278. <p>Synapse v1.71.0 will turn the old metric names off <em>by default</em>.
  279. For administrators that still rely on them and have not had chance to update their
  280. uses of the metrics, it's possible to specify <code>enable_legacy_metrics: true</code> in
  281. the configuration to re-enable them temporarily.</p>
  282. <p>Synapse v1.73.0 will <strong>remove legacy metric names altogether</strong> and it will no longer
  283. be possible to re-enable them.</p>
  284. <p>The Grafana dashboard, Prometheus recording rules and Prometheus Consoles included
  285. in the <code>contrib</code> directory in the Synapse repository have been updated to no longer
  286. rely on the legacy names. These can be used on a current version of Synapse
  287. because current versions of Synapse emit both old and new names.</p>
  288. <p>You may need to update your alerting rules or any other rules that depend on
  289. the names of Prometheus metrics.
  290. If you want to test your changes before legacy names are disabled by default,
  291. you may specify <code>enable_legacy_metrics: false</code> in your homeserver configuration.</p>
  292. <p>A list of affected metrics is available on the <a href="https://matrix-org.github.io/synapse/v1.69/metrics-howto.html?highlight=metrics%20deprecated#renaming-of-metrics--deprecation-of-old-names-in-12">Metrics How-to page</a>.</p>
  293. <h2 id="deprecation-of-the-generate_short_term_login_token-module-api-method"><a class="header" href="#deprecation-of-the-generate_short_term_login_token-module-api-method">Deprecation of the <code>generate_short_term_login_token</code> module API method</a></h2>
  294. <p>The following method of the module API has been deprecated, and is scheduled to
  295. be remove in v1.71.0:</p>
  296. <pre><code class="language-python">def generate_short_term_login_token(
  297. self,
  298. user_id: str,
  299. duration_in_ms: int = (2 * 60 * 1000),
  300. auth_provider_id: str = &quot;&quot;,
  301. auth_provider_session_id: Optional[str] = None,
  302. ) -&gt; str:
  303. ...
  304. </code></pre>
  305. <p>It has been replaced by an asynchronous equivalent:</p>
  306. <pre><code class="language-python">async def create_login_token(
  307. self,
  308. user_id: str,
  309. duration_in_ms: int = (2 * 60 * 1000),
  310. auth_provider_id: Optional[str] = None,
  311. auth_provider_session_id: Optional[str] = None,
  312. ) -&gt; str:
  313. ...
  314. </code></pre>
  315. <p>Synapse will log a warning when a module uses the deprecated method, to help
  316. administrators find modules using it.</p>
  317. <h1 id="upgrading-to-v1680"><a class="header" href="#upgrading-to-v1680">Upgrading to v1.68.0</a></h1>
  318. <p>Two changes announced in the upgrade notes for v1.67.0 have now landed in v1.68.0.</p>
  319. <h2 id="sqlite-version-requirement"><a class="header" href="#sqlite-version-requirement">SQLite version requirement</a></h2>
  320. <p>Synapse now requires a SQLite version of 3.27.0 or higher if SQLite is configured as
  321. Synapse's database.</p>
  322. <p>Installations using</p>
  323. <ul>
  324. <li>Docker images <a href="https://hub.docker.com/r/matrixdotorg/synapse">from <code>matrixdotorg</code></a>,</li>
  325. <li>Debian packages <a href="https://packages.matrix.org/">from Matrix.org</a>, or</li>
  326. <li>a PostgreSQL database</li>
  327. </ul>
  328. <p>are not affected.</p>
  329. <h2 id="rust-requirement-when-building-from-source"><a class="header" href="#rust-requirement-when-building-from-source">Rust requirement when building from source.</a></h2>
  330. <p>Building from a source checkout of Synapse now requires a recent Rust compiler
  331. (currently Rust 1.58.1, but see also the
  332. <a href="https://matrix-org.github.io/synapse/latest/deprecation_policy.html">Platform Dependency Policy</a>).</p>
  333. <p>Installations using</p>
  334. <ul>
  335. <li>Docker images <a href="https://hub.docker.com/r/matrixdotorg/synapse">from <code>matrixdotorg</code></a>,</li>
  336. <li>Debian packages <a href="https://packages.matrix.org/">from Matrix.org</a>, or</li>
  337. <li>PyPI wheels via <code>pip install matrix-synapse</code> (on supported platforms and architectures)</li>
  338. </ul>
  339. <p>will not be affected.</p>
  340. <h1 id="upgrading-to-v1670"><a class="header" href="#upgrading-to-v1670">Upgrading to v1.67.0</a></h1>
  341. <h2 id="direct-tcp-replication-is-no-longer-supported-migrate-to-redis"><a class="header" href="#direct-tcp-replication-is-no-longer-supported-migrate-to-redis">Direct TCP replication is no longer supported: migrate to Redis</a></h2>
  342. <p>Redis support was added in v1.13.0 with it becoming the recommended method in
  343. v1.18.0. It replaced the old direct TCP connections (which was deprecated as of
  344. v1.18.0) to the main process. With Redis, rather than all the workers connecting
  345. to the main process, all the workers and the main process connect to Redis,
  346. which relays replication commands between processes. This can give a significant
  347. CPU saving on the main process and is a prerequisite for upcoming
  348. performance improvements.</p>
  349. <p>To migrate to Redis add the <a href="./workers.html#shared-configuration"><code>redis</code> config</a>,
  350. and remove the TCP <code>replication</code> listener from config of the master and
  351. <code>worker_replication_port</code> from worker config. Note that a HTTP listener with a
  352. <code>replication</code> resource is still required.</p>
  353. <h2 id="minimum-version-of-poetry-is-now-v120"><a class="header" href="#minimum-version-of-poetry-is-now-v120">Minimum version of Poetry is now v1.2.0</a></h2>
  354. <p>The minimum supported version of poetry is now 1.2. This should only affect
  355. those installing from a source checkout.</p>
  356. <h2 id="rust-requirement-in-the-next-release"><a class="header" href="#rust-requirement-in-the-next-release">Rust requirement in the next release</a></h2>
  357. <p>From the next major release (v1.68.0) installing Synapse from a source checkout
  358. will require a recent Rust compiler. Those using packages or
  359. <code>pip install matrix-synapse</code> will not be affected.</p>
  360. <p>The simplest way of installing Rust is via <a href="https://rustup.rs/">rustup.rs</a></p>
  361. <h2 id="sqlite-version-requirement-in-the-next-release"><a class="header" href="#sqlite-version-requirement-in-the-next-release">SQLite version requirement in the next release</a></h2>
  362. <p>From the next major release (v1.68.0) Synapse will require SQLite 3.27.0 or
  363. higher. Synapse v1.67.0 will be the last major release supporting SQLite
  364. versions 3.22 to 3.26.</p>
  365. <p>Those using Docker images or Debian packages from Matrix.org will not be
  366. affected. If you have installed from source, you should check the version of
  367. SQLite used by Python with:</p>
  368. <pre><code class="language-shell">python -c &quot;import sqlite3; print(sqlite3.sqlite_version)&quot;
  369. </code></pre>
  370. <p>If this is too old, refer to your distribution for advice on upgrading.</p>
  371. <h1 id="upgrading-to-v1660"><a class="header" href="#upgrading-to-v1660">Upgrading to v1.66.0</a></h1>
  372. <h2 id="delegation-of-email-validation-no-longer-supported"><a class="header" href="#delegation-of-email-validation-no-longer-supported">Delegation of email validation no longer supported</a></h2>
  373. <p>As of this version, Synapse no longer allows the tasks of verifying email address
  374. ownership, and password reset confirmation, to be delegated to an identity server.
  375. This removal was previously planned for Synapse 1.64.0, but was
  376. <a href="https://github.com/matrix-org/synapse/issues/13421">delayed</a> until now to give
  377. homeserver administrators more notice of the change.</p>
  378. <p>To continue to allow users to add email addresses to their homeserver accounts,
  379. and perform password resets, make sure that Synapse is configured with a working
  380. email server in the <a href="https://matrix-org.github.io/synapse/latest/usage/configuration/config_documentation.html#email"><code>email</code> configuration
  381. section</a>
  382. (including, at a minimum, a <code>notif_from</code> setting.)</p>
  383. <p>Specifying an <code>email</code> setting under <code>account_threepid_delegates</code> will now cause
  384. an error at startup.</p>
  385. <h1 id="upgrading-to-v1640"><a class="header" href="#upgrading-to-v1640">Upgrading to v1.64.0</a></h1>
  386. <h2 id="deprecation-of-the-ability-to-delegate-e-mail-verification-to-identity-servers"><a class="header" href="#deprecation-of-the-ability-to-delegate-e-mail-verification-to-identity-servers">Deprecation of the ability to delegate e-mail verification to identity servers</a></h2>
  387. <p>Synapse v1.66.0 will remove the ability to delegate the tasks of verifying email address ownership, and password reset confirmation, to an identity server.</p>
  388. <p>If you require your homeserver to verify e-mail addresses or to support password resets via e-mail, please configure your homeserver with SMTP access so that it can send e-mails on its own behalf.
  389. <a href="https://matrix-org.github.io/synapse/latest/usage/configuration/config_documentation.html#email">Consult the configuration documentation for more information.</a></p>
  390. <p>The option that will be removed is <code>account_threepid_delegates.email</code>.</p>
  391. <h2 id="changes-to-the-event-replication-streams"><a class="header" href="#changes-to-the-event-replication-streams">Changes to the event replication streams</a></h2>
  392. <p>Synapse now includes a flag indicating if an event is an outlier when
  393. replicating it to other workers. This is a forwards- and backwards-incompatible
  394. change: v1.63 and workers cannot process events replicated by v1.64 workers, and
  395. vice versa.</p>
  396. <p>Once all workers are upgraded to v1.64 (or downgraded to v1.63), event
  397. replication will resume as normal.</p>
  398. <h2 id="frozendict-release"><a class="header" href="#frozendict-release">frozendict release</a></h2>
  399. <p><a href="https://github.com/Marco-Sulla/python-frozendict/releases/tag/v2.3.3">frozendict 2.3.3</a>
  400. has recently been released, which fixes a memory leak that occurs during <code>/sync</code>
  401. requests. We advise server administrators who installed Synapse via pip to upgrade
  402. frozendict with <code>pip install --upgrade frozendict</code>. The Docker image
  403. <code>matrixdotorg/synapse</code> and the Debian packages from <code>packages.matrix.org</code> already
  404. include the updated library.</p>
  405. <h1 id="upgrading-to-v1620"><a class="header" href="#upgrading-to-v1620">Upgrading to v1.62.0</a></h1>
  406. <h2 id="new-signatures-for-spam-checker-callbacks"><a class="header" href="#new-signatures-for-spam-checker-callbacks">New signatures for spam checker callbacks</a></h2>
  407. <p>As a followup to changes in v1.60.0, the following spam-checker callbacks have changed signature:</p>
  408. <ul>
  409. <li><code>user_may_join_room</code></li>
  410. <li><code>user_may_invite</code></li>
  411. <li><code>user_may_send_3pid_invite</code></li>
  412. <li><code>user_may_create_room</code></li>
  413. <li><code>user_may_create_room_alias</code></li>
  414. <li><code>user_may_publish_room</code></li>
  415. <li><code>check_media_file_for_spam</code></li>
  416. </ul>
  417. <p>For each of these methods, the previous callback signature has been deprecated.</p>
  418. <p>Whereas callbacks used to return <code>bool</code>, they should now return <code>Union[&quot;synapse.module_api.NOT_SPAM&quot;, &quot;synapse.module_api.errors.Codes&quot;]</code>.</p>
  419. <p>For instance, if your module implements <code>user_may_join_room</code> as follows:</p>
  420. <pre><code class="language-python">async def user_may_join_room(self, user_id: str, room_id: str, is_invited: bool)
  421. if ...:
  422. # Request is spam
  423. return False
  424. # Request is not spam
  425. return True
  426. </code></pre>
  427. <p>you should rewrite it as follows:</p>
  428. <pre><code class="language-python">async def user_may_join_room(self, user_id: str, room_id: str, is_invited: bool)
  429. if ...:
  430. # Request is spam, mark it as forbidden (you may use some more precise error
  431. # code if it is useful).
  432. return synapse.module_api.errors.Codes.FORBIDDEN
  433. # Request is not spam, mark it as such.
  434. return synapse.module_api.NOT_SPAM
  435. </code></pre>
  436. <h1 id="upgrading-to-v1610"><a class="header" href="#upgrading-to-v1610">Upgrading to v1.61.0</a></h1>
  437. <h2 id="removal-of-deprecated-communitygroups"><a class="header" href="#removal-of-deprecated-communitygroups">Removal of deprecated community/groups</a></h2>
  438. <p>This release of Synapse will remove deprecated community/groups from codebase.</p>
  439. <h3 id="worker-endpoints"><a class="header" href="#worker-endpoints">Worker endpoints</a></h3>
  440. <p>For those who have deployed workers, following worker endpoints will no longer
  441. exist and they can be removed from the reverse proxy configuration:</p>
  442. <ul>
  443. <li><code>^/_matrix/federation/v1/get_groups_publicised$</code></li>
  444. <li><code>^/_matrix/client/(r0|v3|unstable)/joined_groups$</code></li>
  445. <li><code>^/_matrix/client/(r0|v3|unstable)/publicised_groups$</code></li>
  446. <li><code>^/_matrix/client/(r0|v3|unstable)/publicised_groups/</code></li>
  447. <li><code>^/_matrix/federation/v1/groups/</code></li>
  448. <li><code>^/_matrix/client/(r0|v3|unstable)/groups/</code></li>
  449. </ul>
  450. <h1 id="upgrading-to-v1600"><a class="header" href="#upgrading-to-v1600">Upgrading to v1.60.0</a></h1>
  451. <h2 id="adding-a-new-unique-index-to-state_group_edges-could-fail-if-your-database-is-corrupted"><a class="header" href="#adding-a-new-unique-index-to-state_group_edges-could-fail-if-your-database-is-corrupted">Adding a new unique index to <code>state_group_edges</code> could fail if your database is corrupted</a></h2>
  452. <p>This release of Synapse will add a unique index to the <code>state_group_edges</code> table, in order
  453. to prevent accidentally introducing duplicate information (for example, because a database
  454. backup was restored multiple times).</p>
  455. <p>Duplicate rows being present in this table could cause drastic performance problems; see
  456. <a href="https://github.com/matrix-org/synapse/issues/11779">issue 11779</a> for more details.</p>
  457. <p>If your Synapse database already has had duplicate rows introduced into this table,
  458. this could fail, with either of these errors:</p>
  459. <p><strong>On Postgres:</strong></p>
  460. <pre><code>synapse.storage.background_updates - 623 - INFO - background_updates-0 - Adding index state_group_edges_unique_idx to state_group_edges
  461. synapse.storage.background_updates - 282 - ERROR - background_updates-0 - Error doing update
  462. ...
  463. psycopg2.errors.UniqueViolation: could not create unique index &quot;state_group_edges_unique_idx&quot;
  464. DETAIL: Key (state_group, prev_state_group)=(2, 1) is duplicated.
  465. </code></pre>
  466. <p>(The numbers may be different.)</p>
  467. <p><strong>On SQLite:</strong></p>
  468. <pre><code>synapse.storage.background_updates - 623 - INFO - background_updates-0 - Adding index state_group_edges_unique_idx to state_group_edges
  469. synapse.storage.background_updates - 282 - ERROR - background_updates-0 - Error doing update
  470. ...
  471. sqlite3.IntegrityError: UNIQUE constraint failed: state_group_edges.state_group, state_group_edges.prev_state_group
  472. </code></pre>
  473. <details>
  474. <summary><b>Expand this section for steps to resolve this problem</b></summary>
  475. <h3 id="on-postgres"><a class="header" href="#on-postgres">On Postgres</a></h3>
  476. <p>Connect to your database with <code>psql</code>.</p>
  477. <pre><code class="language-sql">BEGIN;
  478. DELETE FROM state_group_edges WHERE (ctid, state_group, prev_state_group) IN (
  479. SELECT row_id, state_group, prev_state_group
  480. FROM (
  481. SELECT
  482. ctid AS row_id,
  483. MIN(ctid) OVER (PARTITION BY state_group, prev_state_group) AS min_row_id,
  484. state_group,
  485. prev_state_group
  486. FROM state_group_edges
  487. ) AS t1
  488. WHERE row_id &lt;&gt; min_row_id
  489. );
  490. COMMIT;
  491. </code></pre>
  492. <h3 id="on-sqlite"><a class="header" href="#on-sqlite">On SQLite</a></h3>
  493. <p>At the command-line, use <code>sqlite3 path/to/your-homeserver-database.db</code>:</p>
  494. <pre><code class="language-sql">BEGIN;
  495. DELETE FROM state_group_edges WHERE (rowid, state_group, prev_state_group) IN (
  496. SELECT row_id, state_group, prev_state_group
  497. FROM (
  498. SELECT
  499. rowid AS row_id,
  500. MIN(rowid) OVER (PARTITION BY state_group, prev_state_group) AS min_row_id,
  501. state_group,
  502. prev_state_group
  503. FROM state_group_edges
  504. )
  505. WHERE row_id &lt;&gt; min_row_id
  506. );
  507. COMMIT;
  508. </code></pre>
  509. <h3 id="for-more-details"><a class="header" href="#for-more-details">For more details</a></h3>
  510. <p><a href="https://github.com/matrix-org/synapse/issues/11779#issuecomment-1131545970">This comment on issue 11779</a>
  511. has queries that can be used to check a database for this problem in advance.</p>
  512. </details>
  513. <h2 id="new-signature-for-the-spam-checker-callback-check_event_for_spam"><a class="header" href="#new-signature-for-the-spam-checker-callback-check_event_for_spam">New signature for the spam checker callback <code>check_event_for_spam</code></a></h2>
  514. <p>The previous signature has been deprecated.</p>
  515. <p>Whereas <code>check_event_for_spam</code> callbacks used to return <code>Union[str, bool]</code>, they should now return <code>Union[&quot;synapse.module_api.NOT_SPAM&quot;, &quot;synapse.module_api.errors.Codes&quot;]</code>.</p>
  516. <p>This is part of an ongoing refactoring of the SpamChecker API to make it less ambiguous and more powerful.</p>
  517. <p>If your module implements <code>check_event_for_spam</code> as follows:</p>
  518. <pre><code class="language-python">async def check_event_for_spam(event):
  519. if ...:
  520. # Event is spam
  521. return True
  522. # Event is not spam
  523. return False
  524. </code></pre>
  525. <p>you should rewrite it as follows:</p>
  526. <pre><code class="language-python">async def check_event_for_spam(event):
  527. if ...:
  528. # Event is spam, mark it as forbidden (you may use some more precise error
  529. # code if it is useful).
  530. return synapse.module_api.errors.Codes.FORBIDDEN
  531. # Event is not spam, mark it as such.
  532. return synapse.module_api.NOT_SPAM
  533. </code></pre>
  534. <h1 id="upgrading-to-v1590"><a class="header" href="#upgrading-to-v1590">Upgrading to v1.59.0</a></h1>
  535. <h2 id="device-name-lookup-over-federation-has-been-disabled-by-default"><a class="header" href="#device-name-lookup-over-federation-has-been-disabled-by-default">Device name lookup over federation has been disabled by default</a></h2>
  536. <p>The names of user devices are no longer visible to users on other homeservers by default.
  537. Device IDs are unaffected, as these are necessary to facilitate end-to-end encryption.</p>
  538. <p>To re-enable this functionality, set the
  539. <a href="https://matrix-org.github.io/synapse/v1.59/usage/configuration/config_documentation.html#federation"><code>allow_device_name_lookup_over_federation</code></a>
  540. homeserver config option to <code>true</code>.</p>
  541. <h2 id="deprecation-of-the-synapseappappservice-and-synapseappuser_dir-worker-application-types"><a class="header" href="#deprecation-of-the-synapseappappservice-and-synapseappuser_dir-worker-application-types">Deprecation of the <code>synapse.app.appservice</code> and <code>synapse.app.user_dir</code> worker application types</a></h2>
  542. <p>The <code>synapse.app.appservice</code> worker application type allowed you to configure a
  543. single worker to use to notify application services of new events, as long
  544. as this functionality was disabled on the main process with <code>notify_appservices: False</code>.
  545. Further, the <code>synapse.app.user_dir</code> worker application type allowed you to configure
  546. a single worker to be responsible for updating the user directory, as long as this
  547. was disabled on the main process with <code>update_user_directory: False</code>.</p>
  548. <p>To unify Synapse's worker types, the <code>synapse.app.appservice</code> worker application
  549. type and the <code>notify_appservices</code> configuration option have been deprecated.
  550. The <code>synapse.app.user_dir</code> worker application type and <code>update_user_directory</code>
  551. configuration option have also been deprecated.</p>
  552. <p>To get the same functionality as was provided by the deprecated options, it's now recommended that the <code>synapse.app.generic_worker</code>
  553. worker application type is used and that the <code>notify_appservices_from_worker</code> and/or
  554. <code>update_user_directory_from_worker</code> options are set to the name of a worker.</p>
  555. <p>For the time being, the old options can be used alongside the new options to make
  556. it easier to transition between the two configurations, however please note that:</p>
  557. <ul>
  558. <li>the options must not contradict each other (otherwise Synapse won't start); and</li>
  559. <li>the <code>notify_appservices</code> and <code>update_user_directory</code> options will be removed in a future release of Synapse.</li>
  560. </ul>
  561. <p>Please see the <a href="workers.html#notifying-application-services"><em>Notifying Application Services</em></a> and
  562. <a href="workers.html#updating-the-user-directory"><em>Updating the User Directory</em></a> sections of the worker
  563. documentation for more information.</p>
  564. <h1 id="upgrading-to-v1580"><a class="header" href="#upgrading-to-v1580">Upgrading to v1.58.0</a></h1>
  565. <h2 id="groupscommunities-feature-has-been-disabled-by-default"><a class="header" href="#groupscommunities-feature-has-been-disabled-by-default">Groups/communities feature has been disabled by default</a></h2>
  566. <p>The non-standard groups/communities feature in Synapse has been disabled by default
  567. and will be removed in Synapse v1.61.0.</p>
  568. <h1 id="upgrading-to-v1570"><a class="header" href="#upgrading-to-v1570">Upgrading to v1.57.0</a></h1>
  569. <h2 id="changes-to-database-schema-for-application-services"><a class="header" href="#changes-to-database-schema-for-application-services">Changes to database schema for application services</a></h2>
  570. <p>Synapse v1.57.0 includes a <a href="https://github.com/matrix-org/synapse/pull/12209">change</a> to the
  571. way transaction IDs are managed for application services. If your deployment uses a dedicated
  572. worker for application service traffic, <strong>it must be stopped</strong> when the database is upgraded
  573. (which normally happens when the main process is upgraded), to ensure the change is made safely
  574. without any risk of reusing transaction IDs.</p>
  575. <p>Deployments which do not use separate worker processes can be upgraded as normal. Similarly,
  576. deployments where no application services are in use can be upgraded as normal.</p>
  577. <details>
  578. <summary><b>Recovering from an incorrect upgrade</b></summary>
  579. <p>If the database schema is upgraded <em>without</em> stopping the worker responsible
  580. for AS traffic, then the following error may be given when attempting to start
  581. a Synapse worker or master process:</p>
  582. <pre><code>**********************************************************************************
  583. Error during initialisation:
  584. Postgres sequence 'application_services_txn_id_seq' is inconsistent with associated
  585. table 'application_services_txns'. This can happen if Synapse has been downgraded and
  586. then upgraded again, or due to a bad migration.
  587. To fix this error, shut down Synapse (including any and all workers)
  588. and run the following SQL:
  589. SELECT setval('application_services_txn_id_seq', (
  590. SELECT GREATEST(MAX(txn_id), 0) FROM application_services_txns
  591. ));
  592. See docs/postgres.md for more information.
  593. There may be more information in the logs.
  594. **********************************************************************************
  595. </code></pre>
  596. <p>This error may also be seen if Synapse is <em>downgraded</em> to an earlier version,
  597. and then upgraded again to v1.57.0 or later.</p>
  598. <p>In either case:</p>
  599. <ol>
  600. <li>Ensure that the worker responsible for AS traffic is stopped.</li>
  601. <li>Run the SQL command given in the error message via <code>psql</code>.</li>
  602. </ol>
  603. <p>Synapse should then start correctly.</p>
  604. </details>
  605. <h1 id="upgrading-to-v1560"><a class="header" href="#upgrading-to-v1560">Upgrading to v1.56.0</a></h1>
  606. <h2 id="open-registration-without-verification-is-now-disabled-by-default"><a class="header" href="#open-registration-without-verification-is-now-disabled-by-default">Open registration without verification is now disabled by default</a></h2>
  607. <p>Synapse will refuse to start if registration is enabled without email, captcha, or token-based verification unless the new config
  608. flag <code>enable_registration_without_verification</code> is set to &quot;true&quot;.</p>
  609. <h2 id="groupscommunities-feature-has-been-deprecated"><a class="header" href="#groupscommunities-feature-has-been-deprecated">Groups/communities feature has been deprecated</a></h2>
  610. <p>The non-standard groups/communities feature in Synapse has been deprecated and will
  611. be disabled by default in Synapse v1.58.0.</p>
  612. <p>You can test disabling it by adding the following to your homeserver configuration:</p>
  613. <pre><code class="language-yaml">experimental_features:
  614. groups_enabled: false
  615. </code></pre>
  616. <h2 id="change-in-behaviour-for-postgresql-databases-with-unsafe-locale"><a class="header" href="#change-in-behaviour-for-postgresql-databases-with-unsafe-locale">Change in behaviour for PostgreSQL databases with unsafe locale</a></h2>
  617. <p>Synapse now refuses to start when using PostgreSQL with non-<code>C</code> values for <code>COLLATE</code> and
  618. <code>CTYPE</code> unless the config flag <code>allow_unsafe_locale</code>, found in the database section of
  619. the configuration file, is set to <code>true</code>. See the <a href="https://matrix-org.github.io/synapse/latest/postgres.html#fixing-incorrect-collate-or-ctype">PostgreSQL documentation</a>
  620. for more information and instructions on how to fix a database with incorrect values.</p>
  621. <h1 id="upgrading-to-v1550"><a class="header" href="#upgrading-to-v1550">Upgrading to v1.55.0</a></h1>
  622. <h2 id="synctl-script-has-been-moved"><a class="header" href="#synctl-script-has-been-moved"><code>synctl</code> script has been moved</a></h2>
  623. <p>The <code>synctl</code> script
  624. <a href="https://github.com/matrix-org/synapse/pull/12140">has been made</a> an
  625. <a href="https://packaging.python.org/en/latest/specifications/entry-points/">entry point</a>
  626. and no longer exists at the root of Synapse's source tree. If you wish to use
  627. <code>synctl</code> to manage your homeserver, you should invoke <code>synctl</code> directly, e.g.
  628. <code>synctl start</code> instead of <code>./synctl start</code> or <code>/path/to/synctl start</code>.</p>
  629. <p>You will need to ensure <code>synctl</code> is on your <code>PATH</code>.</p>
  630. <ul>
  631. <li>This is automatically the case when using
  632. <a href="https://packages.matrix.org/debian/">Debian packages</a> or
  633. <a href="https://hub.docker.com/r/matrixdotorg/synapse">docker images</a>
  634. provided by Matrix.org.</li>
  635. <li>When installing from a wheel, sdist, or PyPI, a <code>synctl</code> executable is added
  636. to your Python installation's <code>bin</code>. This should be on your <code>PATH</code>
  637. automatically, though you might need to activate a virtual environment
  638. depending on how you installed Synapse.</li>
  639. </ul>
  640. <h2 id="compatibility-dropped-for-mjolnir-131-and-earlier"><a class="header" href="#compatibility-dropped-for-mjolnir-131-and-earlier">Compatibility dropped for Mjolnir 1.3.1 and earlier</a></h2>
  641. <p>Synapse v1.55.0 drops support for Mjolnir 1.3.1 and earlier.
  642. If you use the Mjolnir module to moderate your homeserver,
  643. please upgrade Mjolnir to version 1.3.2 or later before upgrading Synapse.</p>
  644. <h1 id="upgrading-to-v1540"><a class="header" href="#upgrading-to-v1540">Upgrading to v1.54.0</a></h1>
  645. <h2 id="legacy-structured-logging-configuration-removal"><a class="header" href="#legacy-structured-logging-configuration-removal">Legacy structured logging configuration removal</a></h2>
  646. <p>This release removes support for the <code>structured: true</code> logging configuration
  647. which was deprecated in Synapse v1.23.0. If your logging configuration contains
  648. <code>structured: true</code> then it should be modified based on the
  649. <a href="https://matrix-org.github.io/synapse/v1.56/structured_logging.html#upgrading-from-legacy-structured-logging-configuration">structured logging documentation</a>.</p>
  650. <h1 id="upgrading-to-v1530"><a class="header" href="#upgrading-to-v1530">Upgrading to v1.53.0</a></h1>
  651. <h2 id="dropping-support-for-webclient-listeners-and-non-https-web_client_location"><a class="header" href="#dropping-support-for-webclient-listeners-and-non-https-web_client_location">Dropping support for <code>webclient</code> listeners and non-HTTP(S) <code>web_client_location</code></a></h2>
  652. <p>Per the deprecation notice in Synapse v1.51.0, listeners of type <code>webclient</code>
  653. are no longer supported and configuring them is a now a configuration error.</p>
  654. <p>Configuring a non-HTTP(S) <code>web_client_location</code> configuration is is now a
  655. configuration error. Since the <code>webclient</code> listener is no longer supported, this
  656. setting only applies to the root path <code>/</code> of Synapse's web server and no longer
  657. the <code>/_matrix/client/</code> path.</p>
  658. <h2 id="stablisation-of-msc3231"><a class="header" href="#stablisation-of-msc3231">Stablisation of MSC3231</a></h2>
  659. <p>The unstable validity-check endpoint for the
  660. <a href="https://spec.matrix.org/v1.2/client-server-api/#get_matrixclientv1registermloginregistration_tokenvalidity">Registration Tokens</a>
  661. feature has been stabilised and moved from:</p>
  662. <p><code>/_matrix/client/unstable/org.matrix.msc3231/register/org.matrix.msc3231.login.registration_token/validity</code></p>
  663. <p>to:</p>
  664. <p><code>/_matrix/client/v1/register/m.login.registration_token/validity</code></p>
  665. <p>Please update any relevant reverse proxy or firewall configurations appropriately.</p>
  666. <h2 id="time-based-cache-expiry-is-now-enabled-by-default"><a class="header" href="#time-based-cache-expiry-is-now-enabled-by-default">Time-based cache expiry is now enabled by default</a></h2>
  667. <p>Formerly, entries in the cache were not evicted regardless of whether they were accessed after storing.
  668. This behavior has now changed. By default entries in the cache are now evicted after 30m of not being accessed.
  669. To change the default behavior, go to the <code>caches</code> section of the config and change the <code>expire_caches</code> and
  670. <code>cache_entry_ttl</code> flags as necessary. Please note that these flags replace the <code>expiry_time</code> flag in the config.
  671. The <code>expiry_time</code> flag will still continue to work, but it has been deprecated and will be removed in the future.</p>
  672. <h2 id="deprecation-of-capability-orgmatrixmsc3283"><a class="header" href="#deprecation-of-capability-orgmatrixmsc3283">Deprecation of <code>capability</code> <code>org.matrix.msc3283.*</code></a></h2>
  673. <p>The <code>capabilities</code> of MSC3283 from the REST API <code>/_matrix/client/r0/capabilities</code>
  674. becomes stable.</p>
  675. <p>The old <code>capabilities</code></p>
  676. <ul>
  677. <li><code>org.matrix.msc3283.set_displayname</code>,</li>
  678. <li><code>org.matrix.msc3283.set_avatar_url</code> and</li>
  679. <li><code>org.matrix.msc3283.3pid_changes</code></li>
  680. </ul>
  681. <p>are deprecated and scheduled to be removed in Synapse v1.54.0.</p>
  682. <p>The new <code>capabilities</code></p>
  683. <ul>
  684. <li><code>m.set_displayname</code>,</li>
  685. <li><code>m.set_avatar_url</code> and</li>
  686. <li><code>m.3pid_changes</code></li>
  687. </ul>
  688. <p>are now active by default.</p>
  689. <h2 id="removal-of-user_may_create_room_with_invites"><a class="header" href="#removal-of-user_may_create_room_with_invites">Removal of <code>user_may_create_room_with_invites</code></a></h2>
  690. <p>As announced with the release of <a href="#deprecation-of-the-user_may_create_room_with_invites-module-callback">Synapse 1.47.0</a>,
  691. the deprecated <code>user_may_create_room_with_invites</code> module callback has been removed.</p>
  692. <p>Modules relying on it can instead implement <a href="https://matrix-org.github.io/synapse/latest/modules/spam_checker_callbacks.html#user_may_invite"><code>user_may_invite</code></a>
  693. and use the <a href="https://github.com/matrix-org/synapse/blob/872f23b95fa980a61b0866c1475e84491991fa20/synapse/module_api/__init__.py#L869-L876"><code>get_room_state</code></a>
  694. module API to infer whether the invite is happening while creating a room (see <a href="https://github.com/matrix-org/synapse-domain-rule-checker/blob/e7d092dd9f2a7f844928771dbfd9fd24c2332e48/synapse_domain_rule_checker/__init__.py#L56-L89">this function</a>
  695. as an example). Alternately, modules can also implement <a href="https://matrix-org.github.io/synapse/latest/modules/third_party_rules_callbacks.html#on_create_room"><code>on_create_room</code></a>.</p>
  696. <h1 id="upgrading-to-v1520"><a class="header" href="#upgrading-to-v1520">Upgrading to v1.52.0</a></h1>
  697. <h2 id="twisted-security-release"><a class="header" href="#twisted-security-release">Twisted security release</a></h2>
  698. <p>Note that <a href="https://github.com/twisted/twisted/releases/tag/twisted-22.1.0">Twisted 22.1.0</a>
  699. has recently been released, which fixes a <a href="https://github.com/twisted/twisted/security/advisories/GHSA-92x2-jw7w-xvvx">security issue</a>
  700. within the Twisted library. We do not believe Synapse is affected by this vulnerability,
  701. though we advise server administrators who installed Synapse via pip to upgrade Twisted
  702. with <code>pip install --upgrade Twisted treq</code> as a matter of good practice. The Docker image
  703. <code>matrixdotorg/synapse</code> and the Debian packages from <code>packages.matrix.org</code> are using the
  704. updated library.</p>
  705. <h1 id="upgrading-to-v1510"><a class="header" href="#upgrading-to-v1510">Upgrading to v1.51.0</a></h1>
  706. <h2 id="deprecation-of-webclient-listeners-and-non-https-web_client_location"><a class="header" href="#deprecation-of-webclient-listeners-and-non-https-web_client_location">Deprecation of <code>webclient</code> listeners and non-HTTP(S) <code>web_client_location</code></a></h2>
  707. <p>Listeners of type <code>webclient</code> are deprecated and scheduled to be removed in
  708. Synapse v1.53.0.</p>
  709. <p>Similarly, a non-HTTP(S) <code>web_client_location</code> configuration is deprecated and
  710. will become a configuration error in Synapse v1.53.0.</p>
  711. <h1 id="upgrading-to-v1500"><a class="header" href="#upgrading-to-v1500">Upgrading to v1.50.0</a></h1>
  712. <h2 id="dropping-support-for-old-python-and-postgres-versions"><a class="header" href="#dropping-support-for-old-python-and-postgres-versions">Dropping support for old Python and Postgres versions</a></h2>
  713. <p>In line with our <a href="deprecation_policy.html">deprecation policy</a>,
  714. we've dropped support for Python 3.6 and PostgreSQL 9.6, as they are no
  715. longer supported upstream.</p>
  716. <p>This release of Synapse requires Python 3.7+ and PostgreSQL 10+.</p>
  717. <h1 id="upgrading-to-v1470"><a class="header" href="#upgrading-to-v1470">Upgrading to v1.47.0</a></h1>
  718. <h2 id="removal-of-old-room-admin-api"><a class="header" href="#removal-of-old-room-admin-api">Removal of old Room Admin API</a></h2>
  719. <p>The following admin APIs were deprecated in <a href="https://github.com/matrix-org/synapse/blob/v1.34.0/CHANGES.md#deprecations-and-removals">Synapse 1.34</a>
  720. (released on 2021-05-17) and have now been removed:</p>
  721. <ul>
  722. <li><code>POST /_synapse/admin/v1/&lt;room_id&gt;/delete</code></li>
  723. </ul>
  724. <p>Any scripts still using the above APIs should be converted to use the
  725. <a href="https://matrix-org.github.io/synapse/latest/admin_api/rooms.html#delete-room-api">Delete Room API</a>.</p>
  726. <h2 id="deprecation-of-the-user_may_create_room_with_invites-module-callback"><a class="header" href="#deprecation-of-the-user_may_create_room_with_invites-module-callback">Deprecation of the <code>user_may_create_room_with_invites</code> module callback</a></h2>
  727. <p>The <code>user_may_create_room_with_invites</code> is deprecated and will be removed in a future
  728. version of Synapse. Modules implementing this callback can instead implement
  729. <a href="https://matrix-org.github.io/synapse/latest/modules/spam_checker_callbacks.html#user_may_invite"><code>user_may_invite</code></a>
  730. and use the <a href="https://github.com/matrix-org/synapse/blob/872f23b95fa980a61b0866c1475e84491991fa20/synapse/module_api/__init__.py#L869-L876"><code>get_room_state</code></a>
  731. module API method to infer whether the invite is happening in the context of creating a
  732. room.</p>
  733. <p>We plan to remove this callback in January 2022.</p>
  734. <h1 id="upgrading-to-v1450"><a class="header" href="#upgrading-to-v1450">Upgrading to v1.45.0</a></h1>
  735. <h2 id="changes-required-to-media-storage-provider-modules-when-reading-from-the-synapse-configuration-object"><a class="header" href="#changes-required-to-media-storage-provider-modules-when-reading-from-the-synapse-configuration-object">Changes required to media storage provider modules when reading from the Synapse configuration object</a></h2>
  736. <p>Media storage provider modules that read from the Synapse configuration object (i.e. that
  737. read the value of <code>hs.config.[...]</code>) now need to specify the configuration section they're
  738. reading from. This means that if a module reads the value of e.g. <code>hs.config.media_store_path</code>,
  739. it needs to replace it with <code>hs.config.media.media_store_path</code>.</p>
  740. <h1 id="upgrading-to-v1440"><a class="header" href="#upgrading-to-v1440">Upgrading to v1.44.0</a></h1>
  741. <h2 id="the-url-preview-cache-is-no-longer-mirrored-to-storage-providers"><a class="header" href="#the-url-preview-cache-is-no-longer-mirrored-to-storage-providers">The URL preview cache is no longer mirrored to storage providers</a></h2>
  742. <p>The <code>url_cache/</code> and <code>url_cache_thumbnails/</code> directories in the media store are
  743. no longer mirrored to storage providers. These two directories can be safely
  744. deleted from any configured storage providers to reclaim space.</p>
  745. <h1 id="upgrading-to-v1430"><a class="header" href="#upgrading-to-v1430">Upgrading to v1.43.0</a></h1>
  746. <h2 id="the-spaces-summary-apis-can-now-be-handled-by-workers"><a class="header" href="#the-spaces-summary-apis-can-now-be-handled-by-workers">The spaces summary APIs can now be handled by workers</a></h2>
  747. <p>The <a href="https://matrix-org.github.io/synapse/latest/workers.html#available-worker-applications">available worker applications documentation</a>
  748. has been updated to reflect that calls to the <code>/spaces</code>, <code>/hierarchy</code>, and
  749. <code>/summary</code> endpoints can now be routed to workers for both client API and
  750. federation requests.</p>
  751. <h1 id="upgrading-to-v1420"><a class="header" href="#upgrading-to-v1420">Upgrading to v1.42.0</a></h1>
  752. <h2 id="removal-of-old-room-admin-api-1"><a class="header" href="#removal-of-old-room-admin-api-1">Removal of old Room Admin API</a></h2>
  753. <p>The following admin APIs were deprecated in <a href="https://github.com/matrix-org/synapse/blob/v1.25.0/CHANGES.md#removal-warning">Synapse 1.25</a>
  754. (released on 2021-01-13) and have now been removed:</p>
  755. <ul>
  756. <li><code>POST /_synapse/admin/v1/purge_room</code></li>
  757. <li><code>POST /_synapse/admin/v1/shutdown_room/&lt;room_id&gt;</code></li>
  758. </ul>
  759. <p>Any scripts still using the above APIs should be converted to use the
  760. <a href="https://matrix-org.github.io/synapse/latest/admin_api/rooms.html#delete-room-api">Delete Room API</a>.</p>
  761. <h2 id="user-interactive-authentication-fallback-templates-can-now-display-errors"><a class="header" href="#user-interactive-authentication-fallback-templates-can-now-display-errors">User-interactive authentication fallback templates can now display errors</a></h2>
  762. <p>This may affect you if you make use of custom HTML templates for the
  763. <a href="../synapse/res/templates/recaptcha.html">reCAPTCHA</a> or
  764. <a href="../synapse/res/templates/terms.html">terms</a> fallback pages.</p>
  765. <p>The template is now provided an <code>error</code> variable if the authentication
  766. process failed. See the default templates linked above for an example.</p>
  767. <h2 id="removal-of-out-of-date-email-pushers"><a class="header" href="#removal-of-out-of-date-email-pushers">Removal of out-of-date email pushers</a></h2>
  768. <p>Users will stop receiving message updates via email for addresses that were
  769. once, but not still, linked to their account.</p>
  770. <h1 id="upgrading-to-v1410"><a class="header" href="#upgrading-to-v1410">Upgrading to v1.41.0</a></h1>
  771. <h2 id="add-support-for-routing-outbound-http-requests-via-a-proxy-for-federation"><a class="header" href="#add-support-for-routing-outbound-http-requests-via-a-proxy-for-federation">Add support for routing outbound HTTP requests via a proxy for federation</a></h2>
  772. <p>Since Synapse 1.6.0 (2019-11-26) you can set a proxy for outbound HTTP requests via
  773. http_proxy/https_proxy environment variables. This proxy was set for:</p>
  774. <ul>
  775. <li>push</li>
  776. <li>url previews</li>
  777. <li>phone-home stats</li>
  778. <li>recaptcha validation</li>
  779. <li>CAS auth validation</li>
  780. <li>OpenID Connect</li>
  781. <li>Federation (checking public key revocation)</li>
  782. </ul>
  783. <p>In this version we have added support for outbound requests for:</p>
  784. <ul>
  785. <li>Outbound federation</li>
  786. <li>Downloading remote media</li>
  787. <li>Fetching public keys of other servers</li>
  788. </ul>
  789. <p>These requests use the same proxy configuration. If you have a proxy configuration we
  790. recommend to verify the configuration. It may be necessary to adjust the <code>no_proxy</code>
  791. environment variable.</p>
  792. <p>See <a href="setup/forward_proxy.html">using a forward proxy with Synapse documentation</a> for
  793. details.</p>
  794. <h2 id="deprecation-of-template_dir"><a class="header" href="#deprecation-of-template_dir">Deprecation of <code>template_dir</code></a></h2>
  795. <p>The <code>template_dir</code> settings in the <code>sso</code>, <code>account_validity</code> and <code>email</code> sections of the
  796. configuration file are now deprecated. Server admins should use the new
  797. <code>templates.custom_template_directory</code> setting in the configuration file and use one single
  798. custom template directory for all aforementioned features. Template file names remain
  799. unchanged. See <a href="https://matrix-org.github.io/synapse/latest/templates.html">the related documentation</a>
  800. for more information and examples.</p>
  801. <p>We plan to remove support for these settings in October 2021.</p>
  802. <h2 id="_synapseadminv1usersuseridmedia-must-be-handled-by-media-workers"><a class="header" href="#_synapseadminv1usersuseridmedia-must-be-handled-by-media-workers"><code>/_synapse/admin/v1/users/{userId}/media</code> must be handled by media workers</a></h2>
  803. <p>The <a href="https://matrix-org.github.io/synapse/latest/workers.html#synapseappmedia_repository">media repository worker documentation</a>
  804. has been updated to reflect that calls to <code>/_synapse/admin/v1/users/{userId}/media</code>
  805. must now be handled by media repository workers. This is due to the new <code>DELETE</code> method
  806. of this endpoint modifying the media store.</p>
  807. <h1 id="upgrading-to-v1390"><a class="header" href="#upgrading-to-v1390">Upgrading to v1.39.0</a></h1>
  808. <h2 id="deprecation-of-the-current-third-party-rules-module-interface"><a class="header" href="#deprecation-of-the-current-third-party-rules-module-interface">Deprecation of the current third-party rules module interface</a></h2>
  809. <p>The current third-party rules module interface is deprecated in favour of the new generic
  810. modules system introduced in Synapse v1.37.0. Authors of third-party rules modules can refer
  811. to <a href="modules/porting_legacy_module.html">this documentation</a>
  812. to update their modules. Synapse administrators can refer to <a href="modules/index.html">this documentation</a>
  813. to update their configuration once the modules they are using have been updated.</p>
  814. <p>We plan to remove support for the current third-party rules interface in September 2021.</p>
  815. <h1 id="upgrading-to-v1380"><a class="header" href="#upgrading-to-v1380">Upgrading to v1.38.0</a></h1>
  816. <h2 id="re-indexing-of-events-table-on-postgres-databases"><a class="header" href="#re-indexing-of-events-table-on-postgres-databases">Re-indexing of <code>events</code> table on Postgres databases</a></h2>
  817. <p>This release includes a database schema update which requires re-indexing one of
  818. the larger tables in the database, <code>events</code>. This could result in increased
  819. disk I/O for several hours or days after upgrading while the migration
  820. completes. Furthermore, because we have to keep the old indexes until the new
  821. indexes are ready, it could result in a significant, temporary, increase in
  822. disk space.</p>
  823. <p>To get a rough idea of the disk space required, check the current size of one
  824. of the indexes. For example, from a <code>psql</code> shell, run the following sql:</p>
  825. <pre><code class="language-sql">SELECT pg_size_pretty(pg_relation_size('events_order_room'));
  826. </code></pre>
  827. <p>We need to rebuild <strong>four</strong> indexes, so you will need to multiply this result
  828. by four to give an estimate of the disk space required. For example, on one
  829. particular server:</p>
  830. <pre><code>synapse=# select pg_size_pretty(pg_relation_size('events_order_room'));
  831. pg_size_pretty
  832. ----------------
  833. 288 MB
  834. (1 row)
  835. </code></pre>
  836. <p>On this server, it would be wise to ensure that at least 1152MB are free.</p>
  837. <p>The additional disk space will be freed once the migration completes.</p>
  838. <p>SQLite databases are unaffected by this change.</p>
  839. <h1 id="upgrading-to-v1370"><a class="header" href="#upgrading-to-v1370">Upgrading to v1.37.0</a></h1>
  840. <h2 id="deprecation-of-the-current-spam-checker-interface"><a class="header" href="#deprecation-of-the-current-spam-checker-interface">Deprecation of the current spam checker interface</a></h2>
  841. <p>The current spam checker interface is deprecated in favour of a new generic modules system.
  842. Authors of spam checker modules can refer to [this
  843. documentation](modules/porting_legacy_module.md
  844. to update their modules. Synapse administrators can refer to <a href="modules/index.html">this
  845. documentation</a>
  846. to update their configuration once the modules they are using have been updated.</p>
  847. <p>We plan to remove support for the current spam checker interface in August 2021.</p>
  848. <p>More module interfaces will be ported over to this new generic system in future versions
  849. of Synapse.</p>
  850. <h1 id="upgrading-to-v1340"><a class="header" href="#upgrading-to-v1340">Upgrading to v1.34.0</a></h1>
  851. <h2 id="room_invite_state_types-configuration-setting"><a class="header" href="#room_invite_state_types-configuration-setting"><code>room_invite_state_types</code> configuration setting</a></h2>
  852. <p>The <code>room_invite_state_types</code> configuration setting has been deprecated
  853. and replaced with <code>room_prejoin_state</code>. See the <a href="https://github.com/matrix-org/synapse/blob/v1.34.0/docs/sample_config.yaml#L1515">sample configuration
  854. file</a>.</p>
  855. <p>If you have set <code>room_invite_state_types</code> to the default value you
  856. should simply remove it from your configuration file. The default value
  857. used to be:</p>
  858. <pre><code class="language-yaml">room_invite_state_types:
  859. - &quot;m.room.join_rules&quot;
  860. - &quot;m.room.canonical_alias&quot;
  861. - &quot;m.room.avatar&quot;
  862. - &quot;m.room.encryption&quot;
  863. - &quot;m.room.name&quot;
  864. </code></pre>
  865. <p>If you have customised this value, you should remove
  866. <code>room_invite_state_types</code> and configure <code>room_prejoin_state</code> instead.</p>
  867. <h1 id="upgrading-to-v1330"><a class="header" href="#upgrading-to-v1330">Upgrading to v1.33.0</a></h1>
  868. <h2 id="account-validity-html-templates-can-now-display-a-users-expiration-date"><a class="header" href="#account-validity-html-templates-can-now-display-a-users-expiration-date">Account Validity HTML templates can now display a user's expiration date</a></h2>
  869. <p>This may affect you if you have enabled the account validity feature,
  870. and have made use of a custom HTML template specified by the
  871. <code>account_validity.template_dir</code> or
  872. <code>account_validity.account_renewed_html_path</code> Synapse config options.</p>
  873. <p>The template can now accept an <code>expiration_ts</code> variable, which
  874. represents the unix timestamp in milliseconds for the future date of
  875. which their account has been renewed until. See the <a href="https://github.com/matrix-org/synapse/blob/release-v1.33.0/synapse/res/templates/account_renewed.html">default
  876. template</a>
  877. for an example of usage.</p>
  878. <p>ALso note that a new HTML template, <code>account_previously_renewed.html</code>,
  879. has been added. This is is shown to users when they attempt to renew
  880. their account with a valid renewal token that has already been used
  881. before. The default template contents can been found
  882. <a href="https://github.com/matrix-org/synapse/blob/release-v1.33.0/synapse/res/templates/account_previously_renewed.html">here</a>,
  883. and can also accept an <code>expiration_ts</code> variable. This template replaces
  884. the error message users would previously see upon attempting to use a
  885. valid renewal token more than once.</p>
  886. <h1 id="upgrading-to-v1320"><a class="header" href="#upgrading-to-v1320">Upgrading to v1.32.0</a></h1>
  887. <h2 id="regression-causing-connected-prometheus-instances-to-become-overwhelmed"><a class="header" href="#regression-causing-connected-prometheus-instances-to-become-overwhelmed">Regression causing connected Prometheus instances to become overwhelmed</a></h2>
  888. <p>This release introduces <a href="https://github.com/matrix-org/synapse/issues/9853">a
  889. regression</a> that can
  890. overwhelm connected Prometheus instances. This issue is not present in
  891. Synapse v1.32.0rc1.</p>
  892. <p>If you have been affected, please downgrade to 1.31.0. You then may need
  893. to remove excess writeahead logs in order for Prometheus to recover.
  894. Instructions for doing so are provided
  895. <a href="https://github.com/matrix-org/synapse/pull/9854#issuecomment-823472183">here</a>.</p>
  896. <h2 id="dropping-support-for-old-python-postgres-and-sqlite-versions"><a class="header" href="#dropping-support-for-old-python-postgres-and-sqlite-versions">Dropping support for old Python, Postgres and SQLite versions</a></h2>
  897. <p>In line with our <a href="deprecation_policy.html">deprecation policy</a>,
  898. we've dropped support for Python 3.5 and PostgreSQL 9.5, as they are no
  899. longer supported upstream.</p>
  900. <p>This release of Synapse requires Python 3.6+ and PostgresSQL 9.6+ or
  901. SQLite 3.22+.</p>
  902. <h2 id="removal-of-old-list-accounts-admin-api"><a class="header" href="#removal-of-old-list-accounts-admin-api">Removal of old List Accounts Admin API</a></h2>
  903. <p>The deprecated v1 &quot;list accounts&quot; admin API
  904. (<code>GET /_synapse/admin/v1/users/&lt;user_id&gt;</code>) has been removed in this
  905. version.</p>
  906. <p>The <a href="admin_api/user_admin_api.html#list-accounts">v2 list accounts API</a>
  907. has been available since Synapse 1.7.0 (2019-12-13), and is accessible
  908. under <code>GET /_synapse/admin/v2/users</code>.</p>
  909. <p>The deprecation of the old endpoint was announced with Synapse 1.28.0
  910. (released on 2021-02-25).</p>
  911. <h2 id="application-services-must-use-type-mloginapplication_service-when-registering-users"><a class="header" href="#application-services-must-use-type-mloginapplication_service-when-registering-users">Application Services must use type <code>m.login.application_service</code> when registering users</a></h2>
  912. <p>In compliance with the <a href="https://matrix.org/docs/spec/application_service/r0.1.2#server-admin-style-permissions">Application Service
  913. spec</a>,
  914. Application Services are now required to use the
  915. <code>m.login.application_service</code> type when registering users via the
  916. <code>/_matrix/client/r0/register</code> endpoint. This behaviour was deprecated in
  917. Synapse v1.30.0.</p>
  918. <p>Please ensure your Application Services are up to date.</p>
  919. <h1 id="upgrading-to-v1290"><a class="header" href="#upgrading-to-v1290">Upgrading to v1.29.0</a></h1>
  920. <h2 id="requirement-for-x-forwarded-proto-header"><a class="header" href="#requirement-for-x-forwarded-proto-header">Requirement for X-Forwarded-Proto header</a></h2>
  921. <p>When using Synapse with a reverse proxy (in particular, when using the
  922. <code>x_forwarded</code> option on an HTTP listener), Synapse now
  923. expects to receive an <code>X-Forwarded-Proto</code> header on incoming
  924. HTTP requests. If it is not set, Synapse will log a warning on each
  925. received request.</p>
  926. <p>To avoid the warning, administrators using a reverse proxy should ensure
  927. that the reverse proxy sets <code>X-Forwarded-Proto</code> header to
  928. <code>https</code> or <code>http</code> to indicate the protocol used
  929. by the client.</p>
  930. <p>Synapse also requires the <code>Host</code> header to be preserved.</p>
  931. <p>See the <a href="reverse_proxy.html">reverse proxy documentation</a>, where the
  932. example configurations have been updated to show how to set these
  933. headers.</p>
  934. <p>(Users of <a href="https://caddyserver.com/">Caddy</a> are unaffected, since we
  935. believe it sets <code>X-Forwarded-Proto</code> by default.)</p>
  936. <h1 id="upgrading-to-v1270"><a class="header" href="#upgrading-to-v1270">Upgrading to v1.27.0</a></h1>
  937. <h2 id="changes-to-callback-uri-for-oauth2--openid-connect-and-saml2"><a class="header" href="#changes-to-callback-uri-for-oauth2--openid-connect-and-saml2">Changes to callback URI for OAuth2 / OpenID Connect and SAML2</a></h2>
  938. <p>This version changes the URI used for callbacks from OAuth2 and SAML2
  939. identity providers:</p>
  940. <ul>
  941. <li>
  942. <p>If your server is configured for single sign-on via an OpenID
  943. Connect or OAuth2 identity provider, you will need to add
  944. <code>[synapse public baseurl]/_synapse/client/oidc/callback</code> to the list
  945. of permitted &quot;redirect URIs&quot; at the identity provider.</p>
  946. <p>See the <a href="openid.html">OpenID docs</a> for more information on setting
  947. up OpenID Connect.</p>
  948. </li>
  949. <li>
  950. <p>If your server is configured for single sign-on via a SAML2 identity
  951. provider, you will need to add
  952. <code>[synapse public baseurl]/_synapse/client/saml2/authn_response</code> as a
  953. permitted &quot;ACS location&quot; (also known as &quot;allowed callback URLs&quot;)
  954. at the identity provider.</p>
  955. <p>The &quot;Issuer&quot; in the &quot;AuthnRequest&quot; to the SAML2 identity
  956. provider is also updated to
  957. <code>[synapse public baseurl]/_synapse/client/saml2/metadata.xml</code>. If
  958. your SAML2 identity provider uses this property to validate or
  959. otherwise identify Synapse, its configuration will need to be
  960. updated to use the new URL. Alternatively you could create a new,
  961. separate &quot;EntityDescriptor&quot; in your SAML2 identity provider with
  962. the new URLs and leave the URLs in the existing &quot;EntityDescriptor&quot;
  963. as they were.</p>
  964. </li>
  965. </ul>
  966. <h2 id="changes-to-html-templates"><a class="header" href="#changes-to-html-templates">Changes to HTML templates</a></h2>
  967. <p>The HTML templates for SSO and email notifications now have <a href="https://jinja.palletsprojects.com/en/2.11.x/api/#autoescaping">Jinja2's
  968. autoescape</a>
  969. enabled for files ending in <code>.html</code>, <code>.htm</code>, and <code>.xml</code>. If you have
  970. customised these templates and see issues when viewing them you might
  971. need to update them. It is expected that most configurations will need
  972. no changes.</p>
  973. <p>If you have customised the templates <em>names</em> for these templates, it is
  974. recommended to verify they end in <code>.html</code> to ensure autoescape is
  975. enabled.</p>
  976. <p>The above applies to the following templates:</p>
  977. <ul>
  978. <li><code>add_threepid.html</code></li>
  979. <li><code>add_threepid_failure.html</code></li>
  980. <li><code>add_threepid_success.html</code></li>
  981. <li><code>notice_expiry.html</code></li>
  982. <li><code>notice_expiry.html</code></li>
  983. <li><code>notif_mail.html</code> (which, by default, includes <code>room.html</code> and
  984. <code>notif.html</code>)</li>
  985. <li><code>password_reset.html</code></li>
  986. <li><code>password_reset_confirmation.html</code></li>
  987. <li><code>password_reset_failure.html</code></li>
  988. <li><code>password_reset_success.html</code></li>
  989. <li><code>registration.html</code></li>
  990. <li><code>registration_failure.html</code></li>
  991. <li><code>registration_success.html</code></li>
  992. <li><code>sso_account_deactivated.html</code></li>
  993. <li><code>sso_auth_bad_user.html</code></li>
  994. <li><code>sso_auth_confirm.html</code></li>
  995. <li><code>sso_auth_success.html</code></li>
  996. <li><code>sso_error.html</code></li>
  997. <li><code>sso_login_idp_picker.html</code></li>
  998. <li><code>sso_redirect_confirm.html</code></li>
  999. </ul>
  1000. <h1 id="upgrading-to-v1260"><a class="header" href="#upgrading-to-v1260">Upgrading to v1.26.0</a></h1>
  1001. <h2 id="rolling-back-to-v1250-after-a-failed-upgrade"><a class="header" href="#rolling-back-to-v1250-after-a-failed-upgrade">Rolling back to v1.25.0 after a failed upgrade</a></h2>
  1002. <p>v1.26.0 includes a lot of large changes. If something problematic
  1003. occurs, you may want to roll-back to a previous version of Synapse.
  1004. Because v1.26.0 also includes a new database schema version, reverting
  1005. that version is also required alongside the generic rollback
  1006. instructions mentioned above. In short, to roll back to v1.25.0 you need
  1007. to:</p>
  1008. <ol>
  1009. <li>
  1010. <p>Stop the server</p>
  1011. </li>
  1012. <li>
  1013. <p>Decrease the schema version in the database:</p>
  1014. <pre><code class="language-sql">UPDATE schema_version SET version = 58;
  1015. </code></pre>
  1016. </li>
  1017. <li>
  1018. <p>Delete the ignored users &amp; chain cover data:</p>
  1019. <pre><code class="language-sql">DROP TABLE IF EXISTS ignored_users;
  1020. UPDATE rooms SET has_auth_chain_index = false;
  1021. </code></pre>
  1022. <p>For PostgreSQL run:</p>
  1023. <pre><code class="language-sql">TRUNCATE event_auth_chain_links;
  1024. TRUNCATE event_auth_chains;
  1025. </code></pre>
  1026. <p>For SQLite run:</p>
  1027. <pre><code class="language-sql">DELETE FROM event_auth_chain_links;
  1028. DELETE FROM event_auth_chains;
  1029. </code></pre>
  1030. </li>
  1031. <li>
  1032. <p>Mark the deltas as not run (so they will re-run on upgrade).</p>
  1033. <pre><code class="language-sql">DELETE FROM applied_schema_deltas WHERE version = 59 AND file = &quot;59/01ignored_user.py&quot;;
  1034. DELETE FROM applied_schema_deltas WHERE version = 59 AND file = &quot;59/06chain_cover_index.sql&quot;;
  1035. </code></pre>
  1036. </li>
  1037. <li>
  1038. <p>Downgrade Synapse by following the instructions for your
  1039. installation method in the &quot;Rolling back to older versions&quot;
  1040. section above.</p>
  1041. </li>
  1042. </ol>
  1043. <h1 id="upgrading-to-v1250"><a class="header" href="#upgrading-to-v1250">Upgrading to v1.25.0</a></h1>
  1044. <h2 id="last-release-supporting-python-35"><a class="header" href="#last-release-supporting-python-35">Last release supporting Python 3.5</a></h2>
  1045. <p>This is the last release of Synapse which guarantees support with Python
  1046. 3.5, which passed its upstream End of Life date several months ago.</p>
  1047. <p>We will attempt to maintain support through March 2021, but without
  1048. guarantees.</p>
  1049. <p>In the future, Synapse will follow upstream schedules for ending support
  1050. of older versions of Python and PostgreSQL. Please upgrade to at least
  1051. Python 3.6 and PostgreSQL 9.6 as soon as possible.</p>
  1052. <h2 id="blacklisting-ip-ranges"><a class="header" href="#blacklisting-ip-ranges">Blacklisting IP ranges</a></h2>
  1053. <p>Synapse v1.25.0 includes new settings, <code>ip_range_blacklist</code> and
  1054. <code>ip_range_whitelist</code>, for controlling outgoing requests from Synapse for
  1055. federation, identity servers, push, and for checking key validity for
  1056. third-party invite events. The previous setting,
  1057. <code>federation_ip_range_blacklist</code>, is deprecated. The new
  1058. <code>ip_range_blacklist</code> defaults to private IP ranges if it is not defined.</p>
  1059. <p>If you have never customised <code>federation_ip_range_blacklist</code> it is
  1060. recommended that you remove that setting.</p>
  1061. <p>If you have customised <code>federation_ip_range_blacklist</code> you should update
  1062. the setting name to <code>ip_range_blacklist</code>.</p>
  1063. <p>If you have a custom push server that is reached via private IP space
  1064. you may need to customise <code>ip_range_blacklist</code> or <code>ip_range_whitelist</code>.</p>
  1065. <h1 id="upgrading-to-v1240"><a class="header" href="#upgrading-to-v1240">Upgrading to v1.24.0</a></h1>
  1066. <h2 id="custom-openid-connect-mapping-provider-breaking-change"><a class="header" href="#custom-openid-connect-mapping-provider-breaking-change">Custom OpenID Connect mapping provider breaking change</a></h2>
  1067. <p>This release allows the OpenID Connect mapping provider to perform
  1068. normalisation of the localpart of the Matrix ID. This allows for the
  1069. mapping provider to specify different algorithms, instead of the
  1070. <a href="https://matrix.org/docs/spec/appendices#mapping-from-other-character-sets">default
  1071. way</a>.</p>
  1072. <p>If your Synapse configuration uses a custom mapping provider
  1073. (<code>oidc_config.user_mapping_provider.module</code> is specified and
  1074. not equal to
  1075. <code>synapse.handlers.oidc_handler.JinjaOidcMappingProvider</code>)
  1076. then you <em>must</em> ensure that <code>map_user_attributes</code> of the
  1077. mapping provider performs some normalisation of the
  1078. <code>localpart</code> returned. To match previous behaviour you can
  1079. use the <code>map_username_to_mxid_localpart</code> function provided
  1080. by Synapse. An example is shown below:</p>
  1081. <pre><code class="language-python">from synapse.types import map_username_to_mxid_localpart
  1082. class MyMappingProvider:
  1083. def map_user_attributes(self, userinfo, token):
  1084. # ... your custom logic ...
  1085. sso_user_id = ...
  1086. localpart = map_username_to_mxid_localpart(sso_user_id)
  1087. return {&quot;localpart&quot;: localpart}
  1088. </code></pre>
  1089. <h2 id="removal-historical-synapse-admin-api"><a class="header" href="#removal-historical-synapse-admin-api">Removal historical Synapse Admin API</a></h2>
  1090. <p>Historically, the Synapse Admin API has been accessible under:</p>
  1091. <ul>
  1092. <li><code>/_matrix/client/api/v1/admin</code></li>
  1093. <li><code>/_matrix/client/unstable/admin</code></li>
  1094. <li><code>/_matrix/client/r0/admin</code></li>
  1095. <li><code>/_synapse/admin/v1</code></li>
  1096. </ul>
  1097. <p>The endpoints with <code>/_matrix/client/*</code> prefixes have been removed as of
  1098. v1.24.0. The Admin API is now only accessible under:</p>
  1099. <ul>
  1100. <li><code>/_synapse/admin/v1</code></li>
  1101. </ul>
  1102. <p>The only exception is the <code>/admin/whois</code> endpoint, which is
  1103. <a href="https://matrix.org/docs/spec/client_server/r0.6.1#get-matrix-client-r0-admin-whois-userid">also available via the client-server
  1104. API</a>.</p>
  1105. <p>The deprecation of the old endpoints was announced with Synapse 1.20.0
  1106. (released on 2020-09-22) and makes it easier for homeserver admins to
  1107. lock down external access to the Admin API endpoints.</p>
  1108. <h1 id="upgrading-to-v1230"><a class="header" href="#upgrading-to-v1230">Upgrading to v1.23.0</a></h1>
  1109. <h2 id="structured-logging-configuration-breaking-changes"><a class="header" href="#structured-logging-configuration-breaking-changes">Structured logging configuration breaking changes</a></h2>
  1110. <p>This release deprecates use of the <code>structured: true</code> logging
  1111. configuration for structured logging. If your logging configuration
  1112. contains <code>structured: true</code> then it should be modified based on the
  1113. <a href="https://matrix-org.github.io/synapse/v1.56/structured_logging.html#upgrading-from-legacy-structured-logging-configuration">structured logging documentation</a>.</p>
  1114. <p>The <code>structured</code> and <code>drains</code> logging options are now deprecated and
  1115. should be replaced by standard logging configuration of <code>handlers</code> and
  1116. <code>formatters</code>.</p>
  1117. <p>A future will release of Synapse will make using <code>structured: true</code> an
  1118. error.</p>
  1119. <h1 id="upgrading-to-v1220"><a class="header" href="#upgrading-to-v1220">Upgrading to v1.22.0</a></h1>
  1120. <h2 id="thirdpartyeventrules-breaking-changes"><a class="header" href="#thirdpartyeventrules-breaking-changes">ThirdPartyEventRules breaking changes</a></h2>
  1121. <p>This release introduces a backwards-incompatible change to modules
  1122. making use of <code>ThirdPartyEventRules</code> in Synapse. If you make use of a
  1123. module defined under the <code>third_party_event_rules</code> config option, please
  1124. make sure it is updated to handle the below change:</p>
  1125. <p>The <code>http_client</code> argument is no longer passed to modules as they are
  1126. initialised. Instead, modules are expected to make use of the
  1127. <code>http_client</code> property on the <code>ModuleApi</code> class. Modules are now passed
  1128. a <code>module_api</code> argument during initialisation, which is an instance of
  1129. <code>ModuleApi</code>. <code>ModuleApi</code> instances have a <code>http_client</code> property which
  1130. acts the same as the <code>http_client</code> argument previously passed to
  1131. <code>ThirdPartyEventRules</code> modules.</p>
  1132. <h1 id="upgrading-to-v1210"><a class="header" href="#upgrading-to-v1210">Upgrading to v1.21.0</a></h1>
  1133. <h2 id="forwarding-_synapseclient-through-your-reverse-proxy"><a class="header" href="#forwarding-_synapseclient-through-your-reverse-proxy">Forwarding <code>/_synapse/client</code> through your reverse proxy</a></h2>
  1134. <p>The <a href="reverse_proxy.html">reverse proxy documentation</a>
  1135. has been updated to include reverse proxy directives for
  1136. <code>/_synapse/client/*</code> endpoints. As the user password reset flow now uses
  1137. endpoints under this prefix, <strong>you must update your reverse proxy
  1138. configurations for user password reset to work</strong>.</p>
  1139. <p>Additionally, note that the <a href="workers.html">Synapse worker documentation</a> has been updated to</p>
  1140. <p>: state that the <code>/_synapse/client/password_reset/email/submit_token</code>
  1141. endpoint can be handled</p>
  1142. <p>by all workers. If you make use of Synapse's worker feature, please
  1143. update your reverse proxy configuration to reflect this change.</p>
  1144. <h2 id="new-html-templates"><a class="header" href="#new-html-templates">New HTML templates</a></h2>
  1145. <p>A new HTML template,
  1146. <a href="https://github.com/matrix-org/synapse/blob/develop/synapse/res/templates/password_reset_confirmation.html">password_reset_confirmation.html</a>,
  1147. has been added to the <code>synapse/res/templates</code> directory. If you are
  1148. using a custom template directory, you may want to copy the template
  1149. over and modify it.</p>
  1150. <p>Note that as of v1.20.0, templates do not need to be included in custom
  1151. template directories for Synapse to start. The default templates will be
  1152. used if a custom template cannot be found.</p>
  1153. <p>This page will appear to the user after clicking a password reset link
  1154. that has been emailed to them.</p>
  1155. <p>To complete password reset, the page must include a way to make a
  1156. <code>POST</code> request to
  1157. <code>/_synapse/client/password_reset/{medium}/submit_token</code> with the query
  1158. parameters from the original link, presented as a URL-encoded form. See
  1159. the file itself for more details.</p>
  1160. <h2 id="updated-single-sign-on-html-templates"><a class="header" href="#updated-single-sign-on-html-templates">Updated Single Sign-on HTML Templates</a></h2>
  1161. <p>The <code>saml_error.html</code> template was removed from Synapse and replaced
  1162. with the <code>sso_error.html</code> template. If your Synapse is configured to use
  1163. SAML and a custom <code>sso_redirect_confirm_template_dir</code> configuration then
  1164. any customisations of the <code>saml_error.html</code> template will need to be
  1165. merged into the <code>sso_error.html</code> template. These templates are similar,
  1166. but the parameters are slightly different:</p>
  1167. <ul>
  1168. <li>The <code>msg</code> parameter should be renamed to <code>error_description</code>.</li>
  1169. <li>There is no longer a <code>code</code> parameter for the response code.</li>
  1170. <li>A string <code>error</code> parameter is available that includes a short hint
  1171. of why a user is seeing the error page.</li>
  1172. </ul>
  1173. <h1 id="upgrading-to-v1180"><a class="header" href="#upgrading-to-v1180">Upgrading to v1.18.0</a></h1>
  1174. <h2 id="docker--py3-suffix-will-be-removed-in-future-versions"><a class="header" href="#docker--py3-suffix-will-be-removed-in-future-versions">Docker <code>-py3</code> suffix will be removed in future versions</a></h2>
  1175. <p>From 10th August 2020, we will no longer publish Docker images with the
  1176. <code>-py3</code> tag suffix. The images tagged with the
  1177. <code>-py3</code> suffix have been identical to the non-suffixed tags
  1178. since release 0.99.0, and the suffix is obsolete.</p>
  1179. <p>On 10th August, we will remove the <code>latest-py3</code> tag.
  1180. Existing per-release tags (such as <code>v1.18.0-py3</code> will not
  1181. be removed, but no new <code>-py3</code> tags will be added.</p>
  1182. <p>Scripts relying on the <code>-py3</code> suffix will need to be
  1183. updated.</p>
  1184. <h2 id="redis-replication-is-now-recommended-in-lieu-of-tcp-replication"><a class="header" href="#redis-replication-is-now-recommended-in-lieu-of-tcp-replication">Redis replication is now recommended in lieu of TCP replication</a></h2>
  1185. <p>When setting up worker processes, we now recommend the use of a Redis
  1186. server for replication. <strong>The old direct TCP connection method is
  1187. deprecated and will be removed in a future release.</strong> See
  1188. the <a href="https://matrix-org.github.io/synapse/v1.66/workers.html">worker documentation</a> for more details.</p>
  1189. <h1 id="upgrading-to-v1140"><a class="header" href="#upgrading-to-v1140">Upgrading to v1.14.0</a></h1>
  1190. <p>This version includes a database update which is run as part of the
  1191. upgrade, and which may take a couple of minutes in the case of a large
  1192. server. Synapse will not respond to HTTP requests while this update is
  1193. taking place.</p>
  1194. <h1 id="upgrading-to-v1130"><a class="header" href="#upgrading-to-v1130">Upgrading to v1.13.0</a></h1>
  1195. <h2 id="incorrect-database-migration-in-old-synapse-versions"><a class="header" href="#incorrect-database-migration-in-old-synapse-versions">Incorrect database migration in old synapse versions</a></h2>
  1196. <p>A bug was introduced in Synapse 1.4.0 which could cause the room
  1197. directory to be incomplete or empty if Synapse was upgraded directly
  1198. from v1.2.1 or earlier, to versions between v1.4.0 and v1.12.x.</p>
  1199. <p>This will <em>not</em> be a problem for Synapse installations which were:</p>
  1200. <p>: - created at v1.4.0 or later,
  1201. - upgraded via v1.3.x, or
  1202. - upgraded straight from v1.2.1 or earlier to v1.13.0 or later.</p>
  1203. <p>If completeness of the room directory is a concern, installations which
  1204. are affected can be repaired as follows:</p>
  1205. <ol>
  1206. <li>
  1207. <p>Run the following sql from a <code>psql</code> or
  1208. <code>sqlite3</code> console:</p>
  1209. <pre><code class="language-sql">INSERT INTO background_updates (update_name, progress_json, depends_on) VALUES
  1210. ('populate_stats_process_rooms', '{}', 'current_state_events_membership');
  1211. INSERT INTO background_updates (update_name, progress_json, depends_on) VALUES
  1212. ('populate_stats_process_users', '{}', 'populate_stats_process_rooms');
  1213. </code></pre>
  1214. </li>
  1215. <li>
  1216. <p>Restart synapse.</p>
  1217. </li>
  1218. </ol>
  1219. <h2 id="new-single-sign-on-html-templates"><a class="header" href="#new-single-sign-on-html-templates">New Single Sign-on HTML Templates</a></h2>
  1220. <p>New templates (<code>sso_auth_confirm.html</code>, <code>sso_auth_success.html</code>, and
  1221. <code>sso_account_deactivated.html</code>) were added to Synapse. If your Synapse
  1222. is configured to use SSO and a custom
  1223. <code>sso_redirect_confirm_template_dir</code> configuration then these templates
  1224. will need to be copied from
  1225. <a href="synapse/res/templates">synapse/res/templates</a> into that directory.</p>
  1226. <h2 id="synapse-sso-plugins-method-deprecation"><a class="header" href="#synapse-sso-plugins-method-deprecation">Synapse SSO Plugins Method Deprecation</a></h2>
  1227. <p>Plugins using the <code>complete_sso_login</code> method of
  1228. <code>synapse.module_api.ModuleApi</code> should update to using the async/await
  1229. version <code>complete_sso_login_async</code> which includes additional checks. The
  1230. non-async version is considered deprecated.</p>
  1231. <h2 id="rolling-back-to-v1124-after-a-failed-upgrade"><a class="header" href="#rolling-back-to-v1124-after-a-failed-upgrade">Rolling back to v1.12.4 after a failed upgrade</a></h2>
  1232. <p>v1.13.0 includes a lot of large changes. If something problematic
  1233. occurs, you may want to roll-back to a previous version of Synapse.
  1234. Because v1.13.0 also includes a new database schema version, reverting
  1235. that version is also required alongside the generic rollback
  1236. instructions mentioned above. In short, to roll back to v1.12.4 you need
  1237. to:</p>
  1238. <ol>
  1239. <li>
  1240. <p>Stop the server</p>
  1241. </li>
  1242. <li>
  1243. <p>Decrease the schema version in the database:</p>
  1244. <pre><code class="language-sql">UPDATE schema_version SET version = 57;
  1245. </code></pre>
  1246. </li>
  1247. <li>
  1248. <p>Downgrade Synapse by following the instructions for your
  1249. installation method in the &quot;Rolling back to older versions&quot;
  1250. section above.</p>
  1251. </li>
  1252. </ol>
  1253. <h1 id="upgrading-to-v1120"><a class="header" href="#upgrading-to-v1120">Upgrading to v1.12.0</a></h1>
  1254. <p>This version includes a database update which is run as part of the
  1255. upgrade, and which may take some time (several hours in the case of a
  1256. large server). Synapse will not respond to HTTP requests while this
  1257. update is taking place.</p>
  1258. <p>This is only likely to be a problem in the case of a server which is
  1259. participating in many rooms.</p>
  1260. <ol start="0">
  1261. <li>
  1262. <p>As with all upgrades, it is recommended that you have a recent
  1263. backup of your database which can be used for recovery in the event
  1264. of any problems.</p>
  1265. </li>
  1266. <li>
  1267. <p>As an initial check to see if you will be affected, you can try
  1268. running the following query from the <code>psql</code> or
  1269. <code>sqlite3</code> console. It is safe to run it while Synapse is
  1270. still running.</p>
  1271. <pre><code class="language-sql">SELECT MAX(q.v) FROM (
  1272. SELECT (
  1273. SELECT ej.json AS v
  1274. FROM state_events se INNER JOIN event_json ej USING (event_id)
  1275. WHERE se.room_id=rooms.room_id AND se.type='m.room.create' AND se.state_key=''
  1276. LIMIT 1
  1277. ) FROM rooms WHERE rooms.room_version IS NULL
  1278. ) q;
  1279. </code></pre>
  1280. <p>This query will take about the same amount of time as the upgrade
  1281. process: ie, if it takes 5 minutes, then it is likely that Synapse
  1282. will be unresponsive for 5 minutes during the upgrade.</p>
  1283. <p>If you consider an outage of this duration to be acceptable, no
  1284. further action is necessary and you can simply start Synapse 1.12.0.</p>
  1285. <p>If you would prefer to reduce the downtime, continue with the steps
  1286. below.</p>
  1287. </li>
  1288. <li>
  1289. <p>The easiest workaround for this issue is to manually create a new
  1290. index before upgrading. On PostgreSQL, his can be done as follows:</p>
  1291. <pre><code class="language-sql">CREATE INDEX CONCURRENTLY tmp_upgrade_1_12_0_index
  1292. ON state_events(room_id) WHERE type = 'm.room.create';
  1293. </code></pre>
  1294. <p>The above query may take some time, but is also safe to run while
  1295. Synapse is running.</p>
  1296. <p>We assume that no SQLite users have databases large enough to be
  1297. affected. If you <em>are</em> affected, you can run a similar query,
  1298. omitting the <code>CONCURRENTLY</code> keyword. Note however that this
  1299. operation may in itself cause Synapse to stop running for some time.
  1300. Synapse admins are reminded that <a href="postgres.html">SQLite is not recommended for use
  1301. outside a test environment</a>.</p>
  1302. </li>
  1303. <li>
  1304. <p>Once the index has been created, the <code>SELECT</code> query in step 1 above
  1305. should complete quickly. It is therefore safe to upgrade to Synapse
  1306. 1.12.0.</p>
  1307. </li>
  1308. <li>
  1309. <p>Once Synapse 1.12.0 has successfully started and is responding to
  1310. HTTP requests, the temporary index can be removed:</p>
  1311. <pre><code class="language-sql">DROP INDEX tmp_upgrade_1_12_0_index;
  1312. </code></pre>
  1313. </li>
  1314. </ol>
  1315. <h1 id="upgrading-to-v1100"><a class="header" href="#upgrading-to-v1100">Upgrading to v1.10.0</a></h1>
  1316. <p>Synapse will now log a warning on start up if used with a PostgreSQL
  1317. database that has a non-recommended locale set.</p>
  1318. <p>See <a href="postgres.html">Postgres</a> for details.</p>
  1319. <h1 id="upgrading-to-v180"><a class="header" href="#upgrading-to-v180">Upgrading to v1.8.0</a></h1>
  1320. <p>Specifying a <code>log_file</code> config option will now cause Synapse to refuse
  1321. to start, and should be replaced by with the <code>log_config</code> option.
  1322. Support for the <code>log_file</code> option was removed in v1.3.0 and has since
  1323. had no effect.</p>
  1324. <h1 id="upgrading-to-v170"><a class="header" href="#upgrading-to-v170">Upgrading to v1.7.0</a></h1>
  1325. <p>In an attempt to configure Synapse in a privacy preserving way, the
  1326. default behaviours of <code>allow_public_rooms_without_auth</code> and
  1327. <code>allow_public_rooms_over_federation</code> have been inverted. This means that
  1328. by default, only authenticated users querying the Client/Server API will
  1329. be able to query the room directory, and relatedly that the server will
  1330. not share room directory information with other servers over federation.</p>
  1331. <p>If your installation does not explicitly set these settings one way or
  1332. the other and you want either setting to be <code>true</code> then it will
  1333. necessary to update your homeserver configuration file accordingly.</p>
  1334. <p>For more details on the surrounding context see our
  1335. <a href="https://matrix.org/blog/2019/11/09/avoiding-unwelcome-visitors-on-private-matrix-servers">explainer</a>.</p>
  1336. <h1 id="upgrading-to-v150"><a class="header" href="#upgrading-to-v150">Upgrading to v1.5.0</a></h1>
  1337. <p>This release includes a database migration which may take several
  1338. minutes to complete if there are a large number (more than a million or
  1339. so) of entries in the <code>devices</code> table. This is only likely to a be a
  1340. problem on very large installations.</p>
  1341. <h1 id="upgrading-to-v140"><a class="header" href="#upgrading-to-v140">Upgrading to v1.4.0</a></h1>
  1342. <h2 id="new-custom-templates"><a class="header" href="#new-custom-templates">New custom templates</a></h2>
  1343. <p>If you have configured a custom template directory with the
  1344. <code>email.template_dir</code> option, be aware that there are new templates
  1345. regarding registration and threepid management (see below) that must be
  1346. included.</p>
  1347. <ul>
  1348. <li><code>registration.html</code> and <code>registration.txt</code></li>
  1349. <li><code>registration_success.html</code> and <code>registration_failure.html</code></li>
  1350. <li><code>add_threepid.html</code> and <code>add_threepid.txt</code></li>
  1351. <li><code>add_threepid_failure.html</code> and <code>add_threepid_success.html</code></li>
  1352. </ul>
  1353. <p>Synapse will expect these files to exist inside the configured template
  1354. directory, and <strong>will fail to start</strong> if they are absent. To view the
  1355. default templates, see
  1356. <a href="https://github.com/matrix-org/synapse/tree/master/synapse/res/templates">synapse/res/templates</a>.</p>
  1357. <h2 id="3pid-verification-changes"><a class="header" href="#3pid-verification-changes">3pid verification changes</a></h2>
  1358. <p><strong>Note: As of this release, users will be unable to add phone numbers or
  1359. email addresses to their accounts, without changes to the Synapse
  1360. configuration. This includes adding an email address during
  1361. registration.</strong></p>
  1362. <p>It is possible for a user to associate an email address or phone number
  1363. with their account, for a number of reasons:</p>
  1364. <ul>
  1365. <li>for use when logging in, as an alternative to the user id.</li>
  1366. <li>in the case of email, as an alternative contact to help with account
  1367. recovery.</li>
  1368. <li>in the case of email, to receive notifications of missed messages.</li>
  1369. </ul>
  1370. <p>Before an email address or phone number can be added to a user's
  1371. account, or before such an address is used to carry out a
  1372. password-reset, Synapse must confirm the operation with the owner of the
  1373. email address or phone number. It does this by sending an email or text
  1374. giving the user a link or token to confirm receipt. This process is
  1375. known as '3pid verification'. ('3pid', or 'threepid', stands for
  1376. third-party identifier, and we use it to refer to external identifiers
  1377. such as email addresses and phone numbers.)</p>
  1378. <p>Previous versions of Synapse delegated the task of 3pid verification to
  1379. an identity server by default. In most cases this server is <code>vector.im</code>
  1380. or <code>matrix.org</code>.</p>
  1381. <p>In Synapse 1.4.0, for security and privacy reasons, the homeserver will
  1382. no longer delegate this task to an identity server by default. Instead,
  1383. the server administrator will need to explicitly decide how they would
  1384. like the verification messages to be sent.</p>
  1385. <p>In the medium term, the <code>vector.im</code> and <code>matrix.org</code> identity servers
  1386. will disable support for delegated 3pid verification entirely. However,
  1387. in order to ease the transition, they will retain the capability for a
  1388. limited period. Delegated email verification will be disabled on Monday
  1389. 2nd December 2019 (giving roughly 2 months notice). Disabling delegated
  1390. SMS verification will follow some time after that once SMS verification
  1391. support lands in Synapse.</p>
  1392. <p>Once delegated 3pid verification support has been disabled in the
  1393. <code>vector.im</code> and <code>matrix.org</code> identity servers, all Synapse versions that
  1394. depend on those instances will be unable to verify email and phone
  1395. numbers through them. There are no imminent plans to remove delegated
  1396. 3pid verification from Sydent generally. (Sydent is the identity server
  1397. project that backs the <code>vector.im</code> and <code>matrix.org</code> instances).</p>
  1398. <h3 id="email"><a class="header" href="#email">Email</a></h3>
  1399. <p>Following upgrade, to continue verifying email (e.g. as part of the
  1400. registration process), admins can either:-</p>
  1401. <ul>
  1402. <li>Configure Synapse to use an email server.</li>
  1403. <li>Run or choose an identity server which allows delegated email
  1404. verification and delegate to it.</li>
  1405. </ul>
  1406. <h4 id="configure-smtp-in-synapse"><a class="header" href="#configure-smtp-in-synapse">Configure SMTP in Synapse</a></h4>
  1407. <p>To configure an SMTP server for Synapse, modify the configuration
  1408. section headed <code>email</code>, and be sure to have at least the
  1409. <code>smtp_host, smtp_port</code> and <code>notif_from</code> fields filled out.</p>
  1410. <p>You may also need to set <code>smtp_user</code>, <code>smtp_pass</code>, and
  1411. <code>require_transport_security</code>.</p>
  1412. <p>See the <a href="usage/configuration/homeserver_sample_config.html">sample configuration file</a>
  1413. for more details on these settings.</p>
  1414. <h4 id="delegate-email-to-an-identity-server"><a class="header" href="#delegate-email-to-an-identity-server">Delegate email to an identity server</a></h4>
  1415. <p>Some admins will wish to continue using email verification as part of
  1416. the registration process, but will not immediately have an appropriate
  1417. SMTP server at hand.</p>
  1418. <p>To this end, we will continue to support email verification delegation
  1419. via the <code>vector.im</code> and <code>matrix.org</code> identity servers for two months.
  1420. Support for delegated email verification will be disabled on Monday 2nd
  1421. December.</p>
  1422. <p>The <code>account_threepid_delegates</code> dictionary defines whether the
  1423. homeserver should delegate an external server (typically an <a href="https://matrix.org/docs/spec/identity_service/r0.2.1">identity
  1424. server</a>) to handle
  1425. sending confirmation messages via email and SMS.</p>
  1426. <p>So to delegate email verification, in <code>homeserver.yaml</code>, set
  1427. <code>account_threepid_delegates.email</code> to the base URL of an identity
  1428. server. For example:</p>
  1429. <pre><code class="language-yaml">account_threepid_delegates:
  1430. email: https://example.com # Delegate email sending to example.com
  1431. </code></pre>
  1432. <p>Note that <code>account_threepid_delegates.email</code> replaces the deprecated
  1433. <code>email.trust_identity_server_for_password_resets</code>: if
  1434. <code>email.trust_identity_server_for_password_resets</code> is set to <code>true</code>, and
  1435. <code>account_threepid_delegates.email</code> is not set, then the first entry in
  1436. <code>trusted_third_party_id_servers</code> will be used as the
  1437. <code>account_threepid_delegate</code> for email. This is to ensure compatibility
  1438. with existing Synapse installs that set up external server handling for
  1439. these tasks before v1.4.0. If
  1440. <code>email.trust_identity_server_for_password_resets</code> is <code>true</code> and no
  1441. trusted identity server domains are configured, Synapse will report an
  1442. error and refuse to start.</p>
  1443. <p>If <code>email.trust_identity_server_for_password_resets</code> is <code>false</code> or
  1444. absent and no <code>email</code> delegate is configured in
  1445. <code>account_threepid_delegates</code>, then Synapse will send email verification
  1446. messages itself, using the configured SMTP server (see above). that
  1447. type.</p>
  1448. <h3 id="phone-numbers"><a class="header" href="#phone-numbers">Phone numbers</a></h3>
  1449. <p>Synapse does not support phone-number verification itself, so the only
  1450. way to maintain the ability for users to add phone numbers to their
  1451. accounts will be by continuing to delegate phone number verification to
  1452. the <code>matrix.org</code> and <code>vector.im</code> identity servers (or another identity
  1453. server that supports SMS sending).</p>
  1454. <p>The <code>account_threepid_delegates</code> dictionary defines whether the
  1455. homeserver should delegate an external server (typically an <a href="https://matrix.org/docs/spec/identity_service/r0.2.1">identity
  1456. server</a>) to handle
  1457. sending confirmation messages via email and SMS.</p>
  1458. <p>So to delegate phone number verification, in <code>homeserver.yaml</code>, set
  1459. <code>account_threepid_delegates.msisdn</code> to the base URL of an identity
  1460. server. For example:</p>
  1461. <pre><code class="language-yaml">account_threepid_delegates:
  1462. msisdn: https://example.com # Delegate sms sending to example.com
  1463. </code></pre>
  1464. <p>The <code>matrix.org</code> and <code>vector.im</code> identity servers will continue to
  1465. support delegated phone number verification via SMS until such time as
  1466. it is possible for admins to configure their servers to perform phone
  1467. number verification directly. More details will follow in a future
  1468. release.</p>
  1469. <h2 id="rolling-back-to-v131"><a class="header" href="#rolling-back-to-v131">Rolling back to v1.3.1</a></h2>
  1470. <p>If you encounter problems with v1.4.0, it should be possible to roll
  1471. back to v1.3.1, subject to the following:</p>
  1472. <ul>
  1473. <li>
  1474. <p>The 'room statistics' engine was heavily reworked in this release
  1475. (see <a href="https://github.com/matrix-org/synapse/pull/5971">#5971</a>),
  1476. including significant changes to the database schema, which are not
  1477. easily reverted. This will cause the room statistics engine to stop
  1478. updating when you downgrade.</p>
  1479. <p>The room statistics are essentially unused in v1.3.1 (in future
  1480. versions of Synapse, they will be used to populate the room
  1481. directory), so there should be no loss of functionality. However,
  1482. the statistics engine will write errors to the logs, which can be
  1483. avoided by setting the following in <code>homeserver.yaml</code>:</p>
  1484. <pre><code class="language-yaml">stats:
  1485. enabled: false
  1486. </code></pre>
  1487. <p>Don't forget to re-enable it when you upgrade again, in preparation
  1488. for its use in the room directory!</p>
  1489. </li>
  1490. </ul>
  1491. <h1 id="upgrading-to-v120"><a class="header" href="#upgrading-to-v120">Upgrading to v1.2.0</a></h1>
  1492. <p>Some counter metrics have been renamed, with the old names deprecated.
  1493. See <a href="metrics-howto.html#renaming-of-metrics--deprecation-of-old-names-in-12">the metrics
  1494. documentation</a>
  1495. for details.</p>
  1496. <h1 id="upgrading-to-v110"><a class="header" href="#upgrading-to-v110">Upgrading to v1.1.0</a></h1>
  1497. <p>Synapse v1.1.0 removes support for older Python and PostgreSQL versions,
  1498. as outlined in <a href="https://matrix.org/blog/2019/04/08/synapse-deprecating-postgres-9-4-and-python-2-x">our deprecation
  1499. notice</a>.</p>
  1500. <h2 id="minimum-python-version"><a class="header" href="#minimum-python-version">Minimum Python Version</a></h2>
  1501. <p>Synapse v1.1.0 has a minimum Python requirement of Python 3.5. Python
  1502. 3.6 or Python 3.7 are recommended as they have improved internal string
  1503. handling, significantly reducing memory usage.</p>
  1504. <p>If you use current versions of the Matrix.org-distributed Debian
  1505. packages or Docker images, action is not required.</p>
  1506. <p>If you install Synapse in a Python virtual environment, please see
  1507. &quot;Upgrading to v0.34.0&quot; for notes on setting up a new virtualenv under
  1508. Python 3.</p>
  1509. <h2 id="minimum-postgresql-version"><a class="header" href="#minimum-postgresql-version">Minimum PostgreSQL Version</a></h2>
  1510. <p>If using PostgreSQL under Synapse, you will need to use PostgreSQL 9.5
  1511. or above. Please see the <a href="https://www.postgresql.org/docs/11/upgrading.html">PostgreSQL
  1512. documentation</a> for
  1513. more details on upgrading your database.</p>
  1514. <h1 id="upgrading-to-v10"><a class="header" href="#upgrading-to-v10">Upgrading to v1.0</a></h1>
  1515. <h2 id="validation-of-tls-certificates"><a class="header" href="#validation-of-tls-certificates">Validation of TLS certificates</a></h2>
  1516. <p>Synapse v1.0 is the first release to enforce validation of TLS
  1517. certificates for the federation API. It is therefore essential that your
  1518. certificates are correctly configured.</p>
  1519. <p>Note, v1.0 installations will also no longer be able to federate with
  1520. servers that have not correctly configured their certificates.</p>
  1521. <p>In rare cases, it may be desirable to disable certificate checking: for
  1522. example, it might be essential to be able to federate with a given
  1523. legacy server in a closed federation. This can be done in one of two
  1524. ways:-</p>
  1525. <ul>
  1526. <li>Configure the global switch <code>federation_verify_certificates</code> to
  1527. <code>false</code>.</li>
  1528. <li>Configure a whitelist of server domains to trust via
  1529. <code>federation_certificate_verification_whitelist</code>.</li>
  1530. </ul>
  1531. <p>See the <a href="usage/configuration/homeserver_sample_config.html">sample configuration file</a>
  1532. for more details on these settings.</p>
  1533. <h2 id="email-1"><a class="header" href="#email-1">Email</a></h2>
  1534. <p>When a user requests a password reset, Synapse will send an email to the
  1535. user to confirm the request.</p>
  1536. <p>Previous versions of Synapse delegated the job of sending this email to
  1537. an identity server. If the identity server was somehow malicious or
  1538. became compromised, it would be theoretically possible to hijack an
  1539. account through this means.</p>
  1540. <p>Therefore, by default, Synapse v1.0 will send the confirmation email
  1541. itself. If Synapse is not configured with an SMTP server, password reset
  1542. via email will be disabled.</p>
  1543. <p>To configure an SMTP server for Synapse, modify the configuration
  1544. section headed <code>email</code>, and be sure to have at least the <code>smtp_host</code>,
  1545. <code>smtp_port</code> and <code>notif_from</code> fields filled out. You may also need to set
  1546. <code>smtp_user</code>, <code>smtp_pass</code>, and <code>require_transport_security</code>.</p>
  1547. <p>If you are absolutely certain that you wish to continue using an
  1548. identity server for password resets, set
  1549. <code>trust_identity_server_for_password_resets</code> to <code>true</code>.</p>
  1550. <p>See the <a href="usage/configuration/homeserver_sample_config.html">sample configuration file</a>
  1551. for more details on these settings.</p>
  1552. <h2 id="new-email-templates"><a class="header" href="#new-email-templates">New email templates</a></h2>
  1553. <p>Some new templates have been added to the default template directory for the purpose of
  1554. the homeserver sending its own password reset emails. If you have configured a
  1555. custom <code>template_dir</code> in your Synapse config, these files will need to be added.</p>
  1556. <p><code>password_reset.html</code> and <code>password_reset.txt</code> are HTML and plain text
  1557. templates respectively that contain the contents of what will be emailed
  1558. to the user upon attempting to reset their password via email.
  1559. <code>password_reset_success.html</code> and <code>password_reset_failure.html</code> are HTML
  1560. files that the content of which (assuming no redirect URL is set) will
  1561. be shown to the user after they attempt to click the link in the email
  1562. sent to them.</p>
  1563. <h1 id="upgrading-to-v0990"><a class="header" href="#upgrading-to-v0990">Upgrading to v0.99.0</a></h1>
  1564. <p>Please be aware that, before Synapse v1.0 is released around March 2019,
  1565. you will need to replace any self-signed certificates with those
  1566. verified by a root CA. Information on how to do so can be found at the
  1567. ACME docs.</p>
  1568. <h1 id="upgrading-to-v0340"><a class="header" href="#upgrading-to-v0340">Upgrading to v0.34.0</a></h1>
  1569. <ol>
  1570. <li>
  1571. <p>This release is the first to fully support Python 3. Synapse will
  1572. now run on Python versions 3.5, or 3.6 (as well as 2.7). We
  1573. recommend switching to Python 3, as it has been shown to give
  1574. performance improvements.</p>
  1575. <p>For users who have installed Synapse into a virtualenv, we recommend
  1576. doing this by creating a new virtualenv. For example:</p>
  1577. <pre><code class="language-sh">virtualenv -p python3 ~/synapse/env3
  1578. source ~/synapse/env3/bin/activate
  1579. pip install matrix-synapse
  1580. </code></pre>
  1581. <p>You can then start synapse as normal, having activated the new
  1582. virtualenv:</p>
  1583. <pre><code class="language-sh">cd ~/synapse
  1584. source env3/bin/activate
  1585. synctl start
  1586. </code></pre>
  1587. <p>Users who have installed from distribution packages should see the
  1588. relevant package documentation. See below for notes on Debian
  1589. packages.</p>
  1590. <ul>
  1591. <li>
  1592. <p>When upgrading to Python 3, you <strong>must</strong> make sure that your log
  1593. files are configured as UTF-8, by adding <code>encoding: utf8</code> to the
  1594. <code>RotatingFileHandler</code> configuration (if you have one) in your
  1595. <code>&lt;server&gt;.log.config</code> file. For example, if your <code>log.config</code>
  1596. file contains:</p>
  1597. <pre><code class="language-yaml">handlers:
  1598. file:
  1599. class: logging.handlers.RotatingFileHandler
  1600. formatter: precise
  1601. filename: homeserver.log
  1602. maxBytes: 104857600
  1603. backupCount: 10
  1604. filters: [context]
  1605. console:
  1606. class: logging.StreamHandler
  1607. formatter: precise
  1608. filters: [context]
  1609. </code></pre>
  1610. <p>Then you should update this to be:</p>
  1611. <pre><code class="language-yaml">handlers:
  1612. file:
  1613. class: logging.handlers.RotatingFileHandler
  1614. formatter: precise
  1615. filename: homeserver.log
  1616. maxBytes: 104857600
  1617. backupCount: 10
  1618. filters: [context]
  1619. encoding: utf8
  1620. console:
  1621. class: logging.StreamHandler
  1622. formatter: precise
  1623. filters: [context]
  1624. </code></pre>
  1625. <p>There is no need to revert this change if downgrading to
  1626. Python 2.</p>
  1627. </li>
  1628. </ul>
  1629. <p>We are also making available Debian packages which will run Synapse
  1630. on Python 3. You can switch to these packages with
  1631. <code>apt-get install matrix-synapse-py3</code>, however, please read
  1632. <a href="https://github.com/matrix-org/synapse/blob/release-v0.34.0/debian/NEWS">debian/NEWS</a>
  1633. before doing so. The existing <code>matrix-synapse</code> packages will
  1634. continue to use Python 2 for the time being.</p>
  1635. </li>
  1636. <li>
  1637. <p>This release removes the <code>riot.im</code> from the default list of trusted
  1638. identity servers.</p>
  1639. <p>If <code>riot.im</code> is in your homeserver's list of
  1640. <code>trusted_third_party_id_servers</code>, you should remove it. It was added
  1641. in case a hypothetical future identity server was put there. If you
  1642. don't remove it, users may be unable to deactivate their accounts.</p>
  1643. </li>
  1644. <li>
  1645. <p>This release no longer installs the (unmaintained) Matrix Console
  1646. web client as part of the default installation. It is possible to
  1647. re-enable it by installing it separately and setting the
  1648. <code>web_client_location</code> config option, but please consider switching
  1649. to another client.</p>
  1650. </li>
  1651. </ol>
  1652. <h1 id="upgrading-to-v0337"><a class="header" href="#upgrading-to-v0337">Upgrading to v0.33.7</a></h1>
  1653. <p>This release removes the example email notification templates from
  1654. <code>res/templates</code> (they are now internal to the python package). This
  1655. should only affect you if you (a) deploy your Synapse instance from a
  1656. git checkout or a github snapshot URL, and (b) have email notifications
  1657. enabled.</p>
  1658. <p>If you have email notifications enabled, you should ensure that
  1659. <code>email.template_dir</code> is either configured to point at a directory where
  1660. you have installed customised templates, or leave it unset to use the
  1661. default templates.</p>
  1662. <h1 id="upgrading-to-v0273"><a class="header" href="#upgrading-to-v0273">Upgrading to v0.27.3</a></h1>
  1663. <p>This release expands the anonymous usage stats sent if the opt-in
  1664. <code>report_stats</code> configuration is set to <code>true</code>. We now capture RSS memory
  1665. and cpu use at a very coarse level. This requires administrators to
  1666. install the optional <code>psutil</code> python module.</p>
  1667. <p>We would appreciate it if you could assist by ensuring this module is
  1668. available and <code>report_stats</code> is enabled. This will let us see if
  1669. performance changes to synapse are having an impact to the general
  1670. community.</p>
  1671. <h1 id="upgrading-to-v0150"><a class="header" href="#upgrading-to-v0150">Upgrading to v0.15.0</a></h1>
  1672. <p>If you want to use the new URL previewing API
  1673. (<code>/_matrix/media/r0/preview_url</code>) then you have to explicitly enable it
  1674. in the config and update your dependencies dependencies. See README.rst
  1675. for details.</p>
  1676. <h1 id="upgrading-to-v0110"><a class="header" href="#upgrading-to-v0110">Upgrading to v0.11.0</a></h1>
  1677. <p>This release includes the option to send anonymous usage stats to
  1678. matrix.org, and requires that administrators explictly opt in or out by
  1679. setting the <code>report_stats</code> option to either <code>true</code> or <code>false</code>.</p>
  1680. <p>We would really appreciate it if you could help our project out by
  1681. reporting anonymized usage statistics from your homeserver. Only very
  1682. basic aggregate data (e.g. number of users) will be reported, but it
  1683. helps us to track the growth of the Matrix community, and helps us to
  1684. make Matrix a success, as well as to convince other networks that they
  1685. should peer with us.</p>
  1686. <h1 id="upgrading-to-v090"><a class="header" href="#upgrading-to-v090">Upgrading to v0.9.0</a></h1>
  1687. <p>Application services have had a breaking API change in this version.</p>
  1688. <p>They can no longer register themselves with a home server using the AS
  1689. HTTP API. This decision was made because a compromised application
  1690. service with free reign to register any regex in effect grants full
  1691. read/write access to the home server if a regex of <code>.*</code> is used. An
  1692. attack where a compromised AS re-registers itself with <code>.*</code> was deemed
  1693. too big of a security risk to ignore, and so the ability to register
  1694. with the HS remotely has been removed.</p>
  1695. <p>It has been replaced by specifying a list of application service
  1696. registrations in <code>homeserver.yaml</code>:</p>
  1697. <pre><code class="language-yaml">app_service_config_files: [&quot;registration-01.yaml&quot;, &quot;registration-02.yaml&quot;]
  1698. </code></pre>
  1699. <p>Where <code>registration-01.yaml</code> looks like:</p>
  1700. <pre><code class="language-yaml">url: &lt;String&gt; # e.g. &quot;https://my.application.service.com&quot;
  1701. as_token: &lt;String&gt;
  1702. hs_token: &lt;String&gt;
  1703. sender_localpart: &lt;String&gt; # This is a new field which denotes the user_id localpart when using the AS token
  1704. namespaces:
  1705. users:
  1706. - exclusive: &lt;Boolean&gt;
  1707. regex: &lt;String&gt; # e.g. &quot;@prefix_.*&quot;
  1708. aliases:
  1709. - exclusive: &lt;Boolean&gt;
  1710. regex: &lt;String&gt;
  1711. rooms:
  1712. - exclusive: &lt;Boolean&gt;
  1713. regex: &lt;String&gt;
  1714. </code></pre>
  1715. <h1 id="upgrading-to-v080"><a class="header" href="#upgrading-to-v080">Upgrading to v0.8.0</a></h1>
  1716. <p>Servers which use captchas will need to add their public key to:</p>
  1717. <pre><code>static/client/register/register_config.js
  1718. window.matrixRegistrationConfig = {
  1719. recaptcha_public_key: &quot;YOUR_PUBLIC_KEY&quot;
  1720. };
  1721. </code></pre>
  1722. <p>This is required in order to support registration fallback (typically
  1723. used on mobile devices).</p>
  1724. <h1 id="upgrading-to-v070"><a class="header" href="#upgrading-to-v070">Upgrading to v0.7.0</a></h1>
  1725. <p>New dependencies are:</p>
  1726. <ul>
  1727. <li>pydenticon</li>
  1728. <li>simplejson</li>
  1729. <li>syutil</li>
  1730. <li>matrix-angular-sdk</li>
  1731. </ul>
  1732. <p>To pull in these dependencies in a virtual env, run:</p>
  1733. <pre><code>python synapse/python_dependencies.py | xargs -n 1 pip install
  1734. </code></pre>
  1735. <h1 id="upgrading-to-v060"><a class="header" href="#upgrading-to-v060">Upgrading to v0.6.0</a></h1>
  1736. <p>To pull in new dependencies, run:</p>
  1737. <pre><code>python setup.py develop --user
  1738. </code></pre>
  1739. <p>This update includes a change to the database schema. To upgrade you
  1740. first need to upgrade the database by running:</p>
  1741. <pre><code>python scripts/upgrade_db_to_v0.6.0.py &lt;db&gt; &lt;server_name&gt; &lt;signing_key&gt;
  1742. </code></pre>
  1743. <p>Where <code>&lt;db&gt;</code> is the location of the database,
  1744. <code>&lt;server_name&gt;</code> is the server name as specified in the
  1745. synapse configuration, and <code>&lt;signing_key&gt;</code> is the location
  1746. of the signing key as specified in the synapse configuration.</p>
  1747. <p>This may take some time to complete. Failures of signatures and content
  1748. hashes can safely be ignored.</p>
  1749. <h1 id="upgrading-to-v051"><a class="header" href="#upgrading-to-v051">Upgrading to v0.5.1</a></h1>
  1750. <p>Depending on precisely when you installed v0.5.0 you may have ended up
  1751. with a stale release of the reference matrix webclient installed as a
  1752. python module. To uninstall it and ensure you are depending on the
  1753. latest module, please run:</p>
  1754. <pre><code>$ pip uninstall syweb
  1755. </code></pre>
  1756. <h1 id="upgrading-to-v050"><a class="header" href="#upgrading-to-v050">Upgrading to v0.5.0</a></h1>
  1757. <p>The webclient has been split out into a seperate repository/pacakage in
  1758. this release. Before you restart your homeserver you will need to pull
  1759. in the webclient package by running:</p>
  1760. <pre><code>python setup.py develop --user
  1761. </code></pre>
  1762. <p>This release completely changes the database schema and so requires
  1763. upgrading it before starting the new version of the homeserver.</p>
  1764. <p>The script &quot;database-prepare-for-0.5.0.sh&quot; should be used to upgrade
  1765. the database. This will save all user information, such as logins and
  1766. profiles, but will otherwise purge the database. This includes messages,
  1767. which rooms the home server was a member of and room alias mappings.</p>
  1768. <p>If you would like to keep your history, please take a copy of your
  1769. database file and ask for help in #matrix:matrix.org. The upgrade
  1770. process is, unfortunately, non trivial and requires human intervention
  1771. to resolve any resulting conflicts during the upgrade process.</p>
  1772. <p>Before running the command the homeserver should be first completely
  1773. shutdown. To run it, simply specify the location of the database, e.g.:</p>
  1774. <blockquote>
  1775. <p>./scripts/database-prepare-for-0.5.0.sh &quot;homeserver.db&quot;</p>
  1776. </blockquote>
  1777. <p>Once this has successfully completed it will be safe to restart the
  1778. homeserver. You may notice that the homeserver takes a few seconds
  1779. longer to restart than usual as it reinitializes the database.</p>
  1780. <p>On startup of the new version, users can either rejoin remote rooms
  1781. using room aliases or by being reinvited. Alternatively, if any other
  1782. homeserver sends a message to a room that the homeserver was previously
  1783. in the local HS will automatically rejoin the room.</p>
  1784. <h1 id="upgrading-to-v040"><a class="header" href="#upgrading-to-v040">Upgrading to v0.4.0</a></h1>
  1785. <p>This release needs an updated syutil version. Run:</p>
  1786. <pre><code>python setup.py develop
  1787. </code></pre>
  1788. <p>You will also need to upgrade your configuration as the signing key
  1789. format has changed. Run:</p>
  1790. <pre><code>python -m synapse.app.homeserver --config-path &lt;CONFIG&gt; --generate-config
  1791. </code></pre>
  1792. <h1 id="upgrading-to-v030"><a class="header" href="#upgrading-to-v030">Upgrading to v0.3.0</a></h1>
  1793. <p>This registration API now closely matches the login API. This introduces
  1794. a bit more backwards and forwards between the HS and the client, but
  1795. this improves the overall flexibility of the API. You can now GET on
  1796. /register to retrieve a list of valid registration flows. Upon choosing
  1797. one, they are submitted in the same way as login, e.g:</p>
  1798. <pre><code>{
  1799. type: m.login.password,
  1800. user: foo,
  1801. password: bar
  1802. }
  1803. </code></pre>
  1804. <p>The default HS supports 2 flows, with and without Identity Server email
  1805. authentication. Enabling captcha on the HS will add in an extra step to
  1806. all flows: <code>m.login.recaptcha</code> which must be completed before you can
  1807. transition to the next stage. There is a new login type:
  1808. <code>m.login.email.identity</code> which contains the <code>threepidCreds</code> key which
  1809. were previously sent in the original register request. For more
  1810. information on this, see the specification.</p>
  1811. <h2 id="web-client"><a class="header" href="#web-client">Web Client</a></h2>
  1812. <p>The VoIP specification has changed between v0.2.0 and v0.3.0. Users
  1813. should refresh any browser tabs to get the latest web client code. Users
  1814. on v0.2.0 of the web client will not be able to call those on v0.3.0 and
  1815. vice versa.</p>
  1816. <h1 id="upgrading-to-v020"><a class="header" href="#upgrading-to-v020">Upgrading to v0.2.0</a></h1>
  1817. <p>The home server now requires setting up of SSL config before it can run.
  1818. To automatically generate default config use:</p>
  1819. <pre><code>$ python synapse/app/homeserver.py \
  1820. --server-name machine.my.domain.name \
  1821. --bind-port 8448 \
  1822. --config-path homeserver.config \
  1823. --generate-config
  1824. </code></pre>
  1825. <p>This config can be edited if desired, for example to specify a different
  1826. SSL certificate to use. Once done you can run the home server using:</p>
  1827. <pre><code>$ python synapse/app/homeserver.py --config-path homeserver.config
  1828. </code></pre>
  1829. <p>See the README.rst for more information.</p>
  1830. <p>Also note that some config options have been renamed, including:</p>
  1831. <ul>
  1832. <li>&quot;host&quot; to &quot;server-name&quot;</li>
  1833. <li>&quot;database&quot; to &quot;database-path&quot;</li>
  1834. <li>&quot;port&quot; to &quot;bind-port&quot; and &quot;unsecure-port&quot;</li>
  1835. </ul>
  1836. <h1 id="upgrading-to-v001"><a class="header" href="#upgrading-to-v001">Upgrading to v0.0.1</a></h1>
  1837. <p>This release completely changes the database schema and so requires
  1838. upgrading it before starting the new version of the homeserver.</p>
  1839. <p>The script &quot;database-prepare-for-0.0.1.sh&quot; should be used to upgrade
  1840. the database. This will save all user information, such as logins and
  1841. profiles, but will otherwise purge the database. This includes messages,
  1842. which rooms the home server was a member of and room alias mappings.</p>
  1843. <p>Before running the command the homeserver should be first completely
  1844. shutdown. To run it, simply specify the location of the database, e.g.:</p>
  1845. <blockquote>
  1846. <p>./scripts/database-prepare-for-0.0.1.sh &quot;homeserver.db&quot;</p>
  1847. </blockquote>
  1848. <p>Once this has successfully completed it will be safe to restart the
  1849. homeserver. You may notice that the homeserver takes a few seconds
  1850. longer to restart than usual as it reinitializes the database.</p>
  1851. <p>On startup of the new version, users can either rejoin remote rooms
  1852. using room aliases or by being reinvited. Alternatively, if any other
  1853. homeserver sends a message to a room that the homeserver was previously
  1854. in the local HS will automatically rejoin the room.</p>
  1855. </main>
  1856. <nav class="nav-wrapper" aria-label="Page navigation">
  1857. <!-- Mobile navigation buttons -->
  1858. <a rel="prev" href="delegate.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left">
  1859. <i class="fa fa-angle-left"></i>
  1860. </a>
  1861. <a rel="next" href="federate.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right">
  1862. <i class="fa fa-angle-right"></i>
  1863. </a>
  1864. <div style="clear: both"></div>
  1865. </nav>
  1866. </div>
  1867. </div>
  1868. <nav class="nav-wide-wrapper" aria-label="Page navigation">
  1869. <a rel="prev" href="delegate.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left">
  1870. <i class="fa fa-angle-left"></i>
  1871. </a>
  1872. <a rel="next" href="federate.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right">
  1873. <i class="fa fa-angle-right"></i>
  1874. </a>
  1875. </nav>
  1876. </div>
  1877. <script type="text/javascript">
  1878. window.playground_copyable = true;
  1879. </script>
  1880. <script src="elasticlunr.min.js" type="text/javascript" charset="utf-8"></script>
  1881. <script src="mark.min.js" type="text/javascript" charset="utf-8"></script>
  1882. <script src="searcher.js" type="text/javascript" charset="utf-8"></script>
  1883. <script src="clipboard.min.js" type="text/javascript" charset="utf-8"></script>
  1884. <script src="highlight.js" type="text/javascript" charset="utf-8"></script>
  1885. <script src="book.js" type="text/javascript" charset="utf-8"></script>
  1886. <!-- Custom JS scripts -->
  1887. <script type="text/javascript" src="docs/website_files/table-of-contents.js"></script>
  1888. <script type="text/javascript" src="docs/website_files/version-picker.js"></script>
  1889. <script type="text/javascript" src="docs/website_files/version.js"></script>
  1890. </body>
  1891. </html>