changelog 54 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944
  1. matrix-synapse-py3 (1.72.0~rc1) stable; urgency=medium
  2. * New Synapse release 1.72.0rc1.
  3. -- Synapse Packaging team <packages@matrix.org> Wed, 16 Nov 2022 15:10:59 +0000
  4. matrix-synapse-py3 (1.71.0) stable; urgency=medium
  5. * New Synapse release 1.71.0.
  6. -- Synapse Packaging team <packages@matrix.org> Tue, 08 Nov 2022 10:38:10 +0000
  7. matrix-synapse-py3 (1.71.0~rc2) stable; urgency=medium
  8. * New Synapse release 1.71.0rc2.
  9. -- Synapse Packaging team <packages@matrix.org> Fri, 04 Nov 2022 12:00:33 +0000
  10. matrix-synapse-py3 (1.71.0~rc1) stable; urgency=medium
  11. * New Synapse release 1.71.0rc1.
  12. -- Synapse Packaging team <packages@matrix.org> Tue, 01 Nov 2022 12:10:17 +0000
  13. matrix-synapse-py3 (1.70.1) stable; urgency=medium
  14. * New Synapse release 1.70.1.
  15. -- Synapse Packaging team <packages@matrix.org> Fri, 28 Oct 2022 12:10:21 +0100
  16. matrix-synapse-py3 (1.70.0) stable; urgency=medium
  17. * New Synapse release 1.70.0.
  18. -- Synapse Packaging team <packages@matrix.org> Wed, 26 Oct 2022 11:11:50 +0100
  19. matrix-synapse-py3 (1.70.0~rc2) stable; urgency=medium
  20. * New Synapse release 1.70.0rc2.
  21. -- Synapse Packaging team <packages@matrix.org> Tue, 25 Oct 2022 10:59:47 +0100
  22. matrix-synapse-py3 (1.70.0~rc1) stable; urgency=medium
  23. * New Synapse release 1.70.0rc1.
  24. -- Synapse Packaging team <packages@matrix.org> Wed, 19 Oct 2022 14:11:57 +0100
  25. matrix-synapse-py3 (1.69.0) stable; urgency=medium
  26. * New Synapse release 1.69.0.
  27. -- Synapse Packaging team <packages@matrix.org> Mon, 17 Oct 2022 11:31:03 +0100
  28. matrix-synapse-py3 (1.69.0~rc4) stable; urgency=medium
  29. * New Synapse release 1.69.0rc4.
  30. -- Synapse Packaging team <packages@matrix.org> Fri, 14 Oct 2022 15:04:47 +0100
  31. matrix-synapse-py3 (1.69.0~rc3) stable; urgency=medium
  32. * New Synapse release 1.69.0rc3.
  33. -- Synapse Packaging team <packages@matrix.org> Wed, 12 Oct 2022 13:24:04 +0100
  34. matrix-synapse-py3 (1.69.0~rc2) stable; urgency=medium
  35. * New Synapse release 1.69.0rc2.
  36. -- Synapse Packaging team <packages@matrix.org> Thu, 06 Oct 2022 14:45:00 +0100
  37. matrix-synapse-py3 (1.69.0~rc1) stable; urgency=medium
  38. * The man page for the hash_password script has been updated to reflect
  39. the correct default value of 'bcrypt_rounds'.
  40. * New Synapse release 1.69.0rc1.
  41. -- Synapse Packaging team <packages@matrix.org> Tue, 04 Oct 2022 11:17:16 +0100
  42. matrix-synapse-py3 (1.68.0) stable; urgency=medium
  43. * New Synapse release 1.68.0.
  44. -- Synapse Packaging team <packages@matrix.org> Tue, 27 Sep 2022 12:02:09 +0100
  45. matrix-synapse-py3 (1.68.0~rc2) stable; urgency=medium
  46. * New Synapse release 1.68.0rc2.
  47. -- Synapse Packaging team <packages@matrix.org> Fri, 23 Sep 2022 09:40:10 +0100
  48. matrix-synapse-py3 (1.68.0~rc1) stable; urgency=medium
  49. * New Synapse release 1.68.0rc1.
  50. -- Synapse Packaging team <packages@matrix.org> Tue, 20 Sep 2022 11:18:20 +0100
  51. matrix-synapse-py3 (1.67.0) stable; urgency=medium
  52. * New Synapse release 1.67.0.
  53. -- Synapse Packaging team <packages@matrix.org> Tue, 13 Sep 2022 09:19:56 +0100
  54. matrix-synapse-py3 (1.67.0~rc1) stable; urgency=medium
  55. [ Erik Johnston ]
  56. * Use stable poetry 1.2.0 version, rather than a prerelease.
  57. [ Synapse Packaging team ]
  58. * New Synapse release 1.67.0rc1.
  59. -- Synapse Packaging team <packages@matrix.org> Tue, 06 Sep 2022 09:01:06 +0100
  60. matrix-synapse-py3 (1.66.0) stable; urgency=medium
  61. * New Synapse release 1.66.0.
  62. -- Synapse Packaging team <packages@matrix.org> Wed, 31 Aug 2022 11:20:17 +0100
  63. matrix-synapse-py3 (1.66.0~rc2+nmu1) UNRELEASED; urgency=medium
  64. [ Jörg Behrmann ]
  65. * Update debhelper to compatibility level 12.
  66. * Drop the preinst script stopping synapse.
  67. * Allocate a group for the system user.
  68. * Change dpkg-statoverride to --force-statoverride-add.
  69. [ Erik Johnston ]
  70. * Disable `dh_auto_configure` as it broke during Rust build.
  71. -- Jörg Behrmann <behrmann@physik.fu-berlin.de> Tue, 23 Aug 2022 17:17:00 +0100
  72. matrix-synapse-py3 (1.66.0~rc2) stable; urgency=medium
  73. * New Synapse release 1.66.0rc2.
  74. -- Synapse Packaging team <packages@matrix.org> Tue, 30 Aug 2022 12:25:19 +0100
  75. matrix-synapse-py3 (1.66.0~rc1) stable; urgency=medium
  76. * New Synapse release 1.66.0rc1.
  77. -- Synapse Packaging team <packages@matrix.org> Tue, 23 Aug 2022 09:48:55 +0100
  78. matrix-synapse-py3 (1.65.0) stable; urgency=medium
  79. * New Synapse release 1.65.0.
  80. -- Synapse Packaging team <packages@matrix.org> Tue, 16 Aug 2022 16:51:26 +0100
  81. matrix-synapse-py3 (1.65.0~rc2) stable; urgency=medium
  82. * New Synapse release 1.65.0rc2.
  83. -- Synapse Packaging team <packages@matrix.org> Thu, 11 Aug 2022 11:38:18 +0100
  84. matrix-synapse-py3 (1.65.0~rc1) stable; urgency=medium
  85. * New Synapse release 1.65.0rc1.
  86. -- Synapse Packaging team <packages@matrix.org> Tue, 09 Aug 2022 11:39:29 +0100
  87. matrix-synapse-py3 (1.64.0) stable; urgency=medium
  88. * New Synapse release 1.64.0.
  89. -- Synapse Packaging team <packages@matrix.org> Tue, 02 Aug 2022 10:32:30 +0100
  90. matrix-synapse-py3 (1.64.0~rc2) stable; urgency=medium
  91. * New Synapse release 1.64.0rc2.
  92. -- Synapse Packaging team <packages@matrix.org> Fri, 29 Jul 2022 12:22:53 +0100
  93. matrix-synapse-py3 (1.64.0~rc1) stable; urgency=medium
  94. * New Synapse release 1.64.0rc1.
  95. -- Synapse Packaging team <packages@matrix.org> Tue, 26 Jul 2022 12:11:49 +0100
  96. matrix-synapse-py3 (1.63.1) stable; urgency=medium
  97. * New Synapse release 1.63.1.
  98. -- Synapse Packaging team <packages@matrix.org> Wed, 20 Jul 2022 13:36:52 +0100
  99. matrix-synapse-py3 (1.63.0) stable; urgency=medium
  100. * Clarify that homeserver server names are included in the data reported
  101. by opt-in server stats reporting (`report_stats` homeserver config option).
  102. * New Synapse release 1.63.0.
  103. -- Synapse Packaging team <packages@matrix.org> Tue, 19 Jul 2022 14:42:24 +0200
  104. matrix-synapse-py3 (1.63.0~rc1) stable; urgency=medium
  105. * New Synapse release 1.63.0rc1.
  106. -- Synapse Packaging team <packages@matrix.org> Tue, 12 Jul 2022 11:26:02 +0100
  107. matrix-synapse-py3 (1.62.0) stable; urgency=medium
  108. * New Synapse release 1.62.0.
  109. -- Synapse Packaging team <packages@matrix.org> Tue, 05 Jul 2022 11:14:15 +0100
  110. matrix-synapse-py3 (1.62.0~rc3) stable; urgency=medium
  111. * New Synapse release 1.62.0rc3.
  112. -- Synapse Packaging team <packages@matrix.org> Mon, 04 Jul 2022 16:07:01 +0100
  113. matrix-synapse-py3 (1.62.0~rc2) stable; urgency=medium
  114. * New Synapse release 1.62.0rc2.
  115. -- Synapse Packaging team <packages@matrix.org> Fri, 01 Jul 2022 11:42:41 +0100
  116. matrix-synapse-py3 (1.62.0~rc1) stable; urgency=medium
  117. * New Synapse release 1.62.0rc1.
  118. -- Synapse Packaging team <packages@matrix.org> Tue, 28 Jun 2022 16:34:57 +0100
  119. matrix-synapse-py3 (1.61.1) stable; urgency=medium
  120. * New Synapse release 1.61.1.
  121. -- Synapse Packaging team <packages@matrix.org> Tue, 28 Jun 2022 14:33:46 +0100
  122. matrix-synapse-py3 (1.61.0) stable; urgency=medium
  123. * New Synapse release 1.61.0.
  124. -- Synapse Packaging team <packages@matrix.org> Tue, 14 Jun 2022 11:44:19 +0100
  125. matrix-synapse-py3 (1.61.0~rc1) stable; urgency=medium
  126. * Remove unused `jitsimeetbridge` experiment from `contrib` directory.
  127. * New Synapse release 1.61.0rc1.
  128. -- Synapse Packaging team <packages@matrix.org> Tue, 07 Jun 2022 12:42:31 +0100
  129. matrix-synapse-py3 (1.60.0) stable; urgency=medium
  130. * New Synapse release 1.60.0.
  131. -- Synapse Packaging team <packages@matrix.org> Tue, 31 May 2022 13:41:22 +0100
  132. matrix-synapse-py3 (1.60.0~rc2) stable; urgency=medium
  133. * New Synapse release 1.60.0rc2.
  134. -- Synapse Packaging team <packages@matrix.org> Fri, 27 May 2022 11:04:55 +0100
  135. matrix-synapse-py3 (1.60.0~rc1) stable; urgency=medium
  136. * New Synapse release 1.60.0rc1.
  137. -- Synapse Packaging team <packages@matrix.org> Tue, 24 May 2022 12:05:01 +0100
  138. matrix-synapse-py3 (1.59.1) stable; urgency=medium
  139. * New Synapse release 1.59.1.
  140. -- Synapse Packaging team <packages@matrix.org> Wed, 18 May 2022 11:41:46 +0100
  141. matrix-synapse-py3 (1.59.0) stable; urgency=medium
  142. * New Synapse release 1.59.0.
  143. -- Synapse Packaging team <packages@matrix.org> Tue, 17 May 2022 10:26:50 +0100
  144. matrix-synapse-py3 (1.59.0~rc2) stable; urgency=medium
  145. * New Synapse release 1.59.0rc2.
  146. -- Synapse Packaging team <packages@matrix.org> Mon, 16 May 2022 12:52:15 +0100
  147. matrix-synapse-py3 (1.59.0~rc1) stable; urgency=medium
  148. * Adjust how the `exported-requirements.txt` file is generated as part of
  149. the process of building these packages. This affects the package
  150. maintainers only; end-users are unaffected.
  151. * New Synapse release 1.59.0rc1.
  152. -- Synapse Packaging team <packages@matrix.org> Tue, 10 May 2022 10:45:08 +0100
  153. matrix-synapse-py3 (1.58.1) stable; urgency=medium
  154. * Include python dependencies from the `systemd` and `cache_memory` extras package groups, which
  155. were incorrectly omitted from the 1.58.0 package.
  156. * New Synapse release 1.58.1.
  157. -- Synapse Packaging team <packages@matrix.org> Thu, 05 May 2022 14:58:23 +0100
  158. matrix-synapse-py3 (1.58.0) stable; urgency=medium
  159. * New Synapse release 1.58.0.
  160. -- Synapse Packaging team <packages@matrix.org> Tue, 03 May 2022 10:52:58 +0100
  161. matrix-synapse-py3 (1.58.0~rc2) stable; urgency=medium
  162. * New Synapse release 1.58.0rc2.
  163. -- Synapse Packaging team <packages@matrix.org> Tue, 26 Apr 2022 17:14:56 +0100
  164. matrix-synapse-py3 (1.58.0~rc1) stable; urgency=medium
  165. * Use poetry to manage the bundled virtualenv included with this package.
  166. * New Synapse release 1.58.0rc1.
  167. -- Synapse Packaging team <packages@matrix.org> Tue, 26 Apr 2022 11:15:20 +0100
  168. matrix-synapse-py3 (1.57.1) stable; urgency=medium
  169. * New synapse release 1.57.1.
  170. -- Synapse Packaging team <packages@matrix.org> Wed, 20 Apr 2022 15:27:21 +0100
  171. matrix-synapse-py3 (1.57.0) stable; urgency=medium
  172. * New synapse release 1.57.0.
  173. -- Synapse Packaging team <packages@matrix.org> Tue, 19 Apr 2022 10:58:42 +0100
  174. matrix-synapse-py3 (1.57.0~rc1) stable; urgency=medium
  175. * New synapse release 1.57.0~rc1.
  176. -- Synapse Packaging team <packages@matrix.org> Tue, 12 Apr 2022 13:36:25 +0100
  177. matrix-synapse-py3 (1.56.0) stable; urgency=medium
  178. * New synapse release 1.56.0.
  179. -- Synapse Packaging team <packages@matrix.org> Tue, 05 Apr 2022 12:38:39 +0100
  180. matrix-synapse-py3 (1.56.0~rc1) stable; urgency=medium
  181. * New synapse release 1.56.0~rc1.
  182. -- Synapse Packaging team <packages@matrix.org> Tue, 29 Mar 2022 10:40:50 +0100
  183. matrix-synapse-py3 (1.55.2) stable; urgency=medium
  184. * New synapse release 1.55.2.
  185. -- Synapse Packaging team <packages@matrix.org> Thu, 24 Mar 2022 19:07:11 +0000
  186. matrix-synapse-py3 (1.55.1) stable; urgency=medium
  187. * New synapse release 1.55.1.
  188. -- Synapse Packaging team <packages@matrix.org> Thu, 24 Mar 2022 17:44:23 +0000
  189. matrix-synapse-py3 (1.55.0) stable; urgency=medium
  190. * New synapse release 1.55.0.
  191. -- Synapse Packaging team <packages@matrix.org> Tue, 22 Mar 2022 13:59:26 +0000
  192. matrix-synapse-py3 (1.55.0~rc1) stable; urgency=medium
  193. * New synapse release 1.55.0~rc1.
  194. -- Synapse Packaging team <packages@matrix.org> Tue, 15 Mar 2022 10:59:31 +0000
  195. matrix-synapse-py3 (1.54.0) stable; urgency=medium
  196. * New synapse release 1.54.0.
  197. -- Synapse Packaging team <packages@matrix.org> Tue, 08 Mar 2022 10:54:52 +0000
  198. matrix-synapse-py3 (1.54.0~rc1) stable; urgency=medium
  199. * New synapse release 1.54.0~rc1.
  200. -- Synapse Packaging team <packages@matrix.org> Wed, 02 Mar 2022 10:43:22 +0000
  201. matrix-synapse-py3 (1.53.0) stable; urgency=medium
  202. * New synapse release 1.53.0.
  203. -- Synapse Packaging team <packages@matrix.org> Tue, 22 Feb 2022 11:32:06 +0000
  204. matrix-synapse-py3 (1.53.0~rc1) stable; urgency=medium
  205. * New synapse release 1.53.0~rc1.
  206. -- Synapse Packaging team <packages@matrix.org> Tue, 15 Feb 2022 10:40:50 +0000
  207. matrix-synapse-py3 (1.52.0) stable; urgency=medium
  208. * New synapse release 1.52.0.
  209. -- Synapse Packaging team <packages@matrix.org> Tue, 08 Feb 2022 11:34:54 +0000
  210. matrix-synapse-py3 (1.52.0~rc1) stable; urgency=medium
  211. * New synapse release 1.52.0~rc1.
  212. -- Synapse Packaging team <packages@matrix.org> Tue, 01 Feb 2022 11:04:09 +0000
  213. matrix-synapse-py3 (1.51.0) stable; urgency=medium
  214. * New synapse release 1.51.0.
  215. -- Synapse Packaging team <packages@matrix.org> Tue, 25 Jan 2022 11:28:51 +0000
  216. matrix-synapse-py3 (1.51.0~rc2) stable; urgency=medium
  217. * New synapse release 1.51.0~rc2.
  218. -- Synapse Packaging team <packages@matrix.org> Mon, 24 Jan 2022 12:25:00 +0000
  219. matrix-synapse-py3 (1.51.0~rc1) stable; urgency=medium
  220. * New synapse release 1.51.0~rc1.
  221. -- Synapse Packaging team <packages@matrix.org> Fri, 21 Jan 2022 10:46:02 +0000
  222. matrix-synapse-py3 (1.50.2) stable; urgency=medium
  223. * New synapse release 1.50.2.
  224. -- Synapse Packaging team <packages@matrix.org> Mon, 24 Jan 2022 13:37:11 +0000
  225. matrix-synapse-py3 (1.50.1) stable; urgency=medium
  226. * New synapse release 1.50.1.
  227. -- Synapse Packaging team <packages@matrix.org> Tue, 18 Jan 2022 16:06:26 +0000
  228. matrix-synapse-py3 (1.50.0) stable; urgency=medium
  229. * New synapse release 1.50.0.
  230. -- Synapse Packaging team <packages@matrix.org> Tue, 18 Jan 2022 10:40:38 +0000
  231. matrix-synapse-py3 (1.50.0~rc2) stable; urgency=medium
  232. * New synapse release 1.50.0~rc2.
  233. -- Synapse Packaging team <packages@matrix.org> Fri, 14 Jan 2022 11:18:06 +0000
  234. matrix-synapse-py3 (1.50.0~rc1) stable; urgency=medium
  235. * New synapse release 1.50.0~rc1.
  236. -- Synapse Packaging team <packages@matrix.org> Wed, 05 Jan 2022 12:36:17 +0000
  237. matrix-synapse-py3 (1.49.2) stable; urgency=medium
  238. * New synapse release 1.49.2.
  239. -- Synapse Packaging team <packages@matrix.org> Tue, 21 Dec 2021 17:31:03 +0000
  240. matrix-synapse-py3 (1.49.1) stable; urgency=medium
  241. * New synapse release 1.49.1.
  242. -- Synapse Packaging team <packages@matrix.org> Tue, 21 Dec 2021 11:07:30 +0000
  243. matrix-synapse-py3 (1.49.0) stable; urgency=medium
  244. * New synapse release 1.49.0.
  245. -- Synapse Packaging team <packages@matrix.org> Tue, 14 Dec 2021 12:39:46 +0000
  246. matrix-synapse-py3 (1.49.0~rc1) stable; urgency=medium
  247. * New synapse release 1.49.0~rc1.
  248. -- Synapse Packaging team <packages@matrix.org> Tue, 07 Dec 2021 13:52:21 +0000
  249. matrix-synapse-py3 (1.48.0) stable; urgency=medium
  250. * New synapse release 1.48.0.
  251. -- Synapse Packaging team <packages@matrix.org> Tue, 30 Nov 2021 11:24:15 +0000
  252. matrix-synapse-py3 (1.48.0~rc1) stable; urgency=medium
  253. * New synapse release 1.48.0~rc1.
  254. -- Synapse Packaging team <packages@matrix.org> Thu, 25 Nov 2021 15:56:03 +0000
  255. matrix-synapse-py3 (1.47.1) stable; urgency=medium
  256. * New synapse release 1.47.1.
  257. -- Synapse Packaging team <packages@matrix.org> Fri, 19 Nov 2021 13:44:32 +0000
  258. matrix-synapse-py3 (1.47.0) stable; urgency=medium
  259. * New synapse release 1.47.0.
  260. -- Synapse Packaging team <packages@matrix.org> Wed, 17 Nov 2021 13:09:43 +0000
  261. matrix-synapse-py3 (1.47.0~rc3) stable; urgency=medium
  262. * New synapse release 1.47.0~rc3.
  263. -- Synapse Packaging team <packages@matrix.org> Tue, 16 Nov 2021 14:32:47 +0000
  264. matrix-synapse-py3 (1.47.0~rc2) stable; urgency=medium
  265. [ Dan Callahan ]
  266. * Update scripts to pass Shellcheck lints.
  267. * Remove unused Vagrant scripts from debian/ directory.
  268. * Allow building Debian packages for any architecture, not just amd64.
  269. * Preinstall the "wheel" package when building virtualenvs.
  270. * Do not error if /etc/default/matrix-synapse is missing.
  271. [ Synapse Packaging team ]
  272. * New synapse release 1.47.0~rc2.
  273. -- Synapse Packaging team <packages@matrix.org> Wed, 10 Nov 2021 09:41:01 +0000
  274. matrix-synapse-py3 (1.46.0) stable; urgency=medium
  275. [ Richard van der Hoff ]
  276. * Compress debs with xz, to fix incompatibility of impish debs with reprepro.
  277. [ Synapse Packaging team ]
  278. * New synapse release 1.46.0.
  279. -- Synapse Packaging team <packages@matrix.org> Tue, 02 Nov 2021 13:22:53 +0000
  280. matrix-synapse-py3 (1.46.0~rc1) stable; urgency=medium
  281. * New synapse release 1.46.0~rc1.
  282. -- Synapse Packaging team <packages@matrix.org> Tue, 26 Oct 2021 14:04:04 +0100
  283. matrix-synapse-py3 (1.45.1) stable; urgency=medium
  284. * New synapse release 1.45.1.
  285. -- Synapse Packaging team <packages@matrix.org> Wed, 20 Oct 2021 11:58:27 +0100
  286. matrix-synapse-py3 (1.45.0) stable; urgency=medium
  287. * New synapse release 1.45.0.
  288. -- Synapse Packaging team <packages@matrix.org> Tue, 19 Oct 2021 11:18:53 +0100
  289. matrix-synapse-py3 (1.45.0~rc2) stable; urgency=medium
  290. * New synapse release 1.45.0~rc2.
  291. -- Synapse Packaging team <packages@matrix.org> Thu, 14 Oct 2021 10:58:24 +0100
  292. matrix-synapse-py3 (1.45.0~rc1) stable; urgency=medium
  293. [ Nick @ Beeper ]
  294. * Include an `update_synapse_database` script in the distribution.
  295. [ Synapse Packaging team ]
  296. * New synapse release 1.45.0~rc1.
  297. -- Synapse Packaging team <packages@matrix.org> Tue, 12 Oct 2021 10:46:27 +0100
  298. matrix-synapse-py3 (1.44.0) stable; urgency=medium
  299. * New synapse release 1.44.0.
  300. -- Synapse Packaging team <packages@matrix.org> Tue, 05 Oct 2021 13:43:57 +0100
  301. matrix-synapse-py3 (1.44.0~rc3) stable; urgency=medium
  302. * New synapse release 1.44.0~rc3.
  303. -- Synapse Packaging team <packages@matrix.org> Mon, 04 Oct 2021 14:57:22 +0100
  304. matrix-synapse-py3 (1.44.0~rc2) stable; urgency=medium
  305. * New synapse release 1.44.0~rc2.
  306. -- Synapse Packaging team <packages@matrix.org> Thu, 30 Sep 2021 12:39:10 +0100
  307. matrix-synapse-py3 (1.44.0~rc1) stable; urgency=medium
  308. * New synapse release 1.44.0~rc1.
  309. -- Synapse Packaging team <packages@matrix.org> Tue, 28 Sep 2021 13:41:28 +0100
  310. matrix-synapse-py3 (1.43.0) stable; urgency=medium
  311. * New synapse release 1.43.0.
  312. -- Synapse Packaging team <packages@matrix.org> Tue, 21 Sep 2021 11:49:05 +0100
  313. matrix-synapse-py3 (1.43.0~rc2) stable; urgency=medium
  314. * New synapse release 1.43.0~rc2.
  315. -- Synapse Packaging team <packages@matrix.org> Fri, 17 Sep 2021 10:43:21 +0100
  316. matrix-synapse-py3 (1.43.0~rc1) stable; urgency=medium
  317. * New synapse release 1.43.0~rc1.
  318. -- Synapse Packaging team <packages@matrix.org> Tue, 14 Sep 2021 11:39:46 +0100
  319. matrix-synapse-py3 (1.42.0) stable; urgency=medium
  320. * New synapse release 1.42.0.
  321. -- Synapse Packaging team <packages@matrix.org> Tue, 07 Sep 2021 16:19:09 +0100
  322. matrix-synapse-py3 (1.42.0~rc2) stable; urgency=medium
  323. * New synapse release 1.42.0~rc2.
  324. -- Synapse Packaging team <packages@matrix.org> Mon, 06 Sep 2021 15:25:13 +0100
  325. matrix-synapse-py3 (1.42.0~rc1) stable; urgency=medium
  326. * New synapse release 1.42.0rc1.
  327. -- Synapse Packaging team <packages@matrix.org> Wed, 01 Sep 2021 11:37:48 +0100
  328. matrix-synapse-py3 (1.41.1) stable; urgency=high
  329. * New synapse release 1.41.1.
  330. -- Synapse Packaging team <packages@matrix.org> Tue, 31 Aug 2021 12:59:10 +0100
  331. matrix-synapse-py3 (1.41.0) stable; urgency=medium
  332. * New synapse release 1.41.0.
  333. -- Synapse Packaging team <packages@matrix.org> Tue, 24 Aug 2021 15:31:45 +0100
  334. matrix-synapse-py3 (1.41.0~rc1) stable; urgency=medium
  335. * New synapse release 1.41.0~rc1.
  336. -- Synapse Packaging team <packages@matrix.org> Wed, 18 Aug 2021 15:52:00 +0100
  337. matrix-synapse-py3 (1.40.0) stable; urgency=medium
  338. * New synapse release 1.40.0.
  339. -- Synapse Packaging team <packages@matrix.org> Tue, 10 Aug 2021 13:50:48 +0100
  340. matrix-synapse-py3 (1.40.0~rc3) stable; urgency=medium
  341. * New synapse release 1.40.0~rc3.
  342. -- Synapse Packaging team <packages@matrix.org> Mon, 09 Aug 2021 13:41:08 +0100
  343. matrix-synapse-py3 (1.40.0~rc2) stable; urgency=medium
  344. * New synapse release 1.40.0~rc2.
  345. -- Synapse Packaging team <packages@matrix.org> Wed, 04 Aug 2021 17:08:55 +0100
  346. matrix-synapse-py3 (1.40.0~rc1) stable; urgency=medium
  347. [ Richard van der Hoff ]
  348. * Drop backwards-compatibility code that was required to support Ubuntu Xenial.
  349. * Update package triggers so that the virtualenv is correctly rebuilt
  350. when the system python is rebuilt, on recent Python versions.
  351. [ Synapse Packaging team ]
  352. * New synapse release 1.40.0~rc1.
  353. -- Synapse Packaging team <packages@matrix.org> Tue, 03 Aug 2021 11:31:49 +0100
  354. matrix-synapse-py3 (1.39.0) stable; urgency=medium
  355. * New synapse release 1.39.0.
  356. -- Synapse Packaging team <packages@matrix.org> Thu, 29 Jul 2021 09:59:00 +0100
  357. matrix-synapse-py3 (1.39.0~rc3) stable; urgency=medium
  358. * New synapse release 1.39.0~rc3.
  359. -- Synapse Packaging team <packages@matrix.org> Wed, 28 Jul 2021 13:30:58 +0100
  360. matrix-synapse-py3 (1.38.1) stable; urgency=medium
  361. * New synapse release 1.38.1.
  362. -- Synapse Packaging team <packages@matrix.org> Thu, 22 Jul 2021 15:37:06 +0100
  363. matrix-synapse-py3 (1.39.0~rc1) stable; urgency=medium
  364. * New synapse release 1.39.0rc1.
  365. -- Synapse Packaging team <packages@matrix.org> Tue, 20 Jul 2021 14:28:34 +0100
  366. matrix-synapse-py3 (1.38.0) stable; urgency=medium
  367. * New synapse release 1.38.0.
  368. -- Synapse Packaging team <packages@matrix.org> Tue, 13 Jul 2021 13:20:56 +0100
  369. matrix-synapse-py3 (1.38.0rc3) prerelease; urgency=medium
  370. [ Erik Johnston ]
  371. * Add synapse_review_recent_signups script
  372. [ Synapse Packaging team ]
  373. * New synapse release 1.38.0rc3.
  374. -- Synapse Packaging team <packages@matrix.org> Tue, 13 Jul 2021 11:53:56 +0100
  375. matrix-synapse-py3 (1.37.1) stable; urgency=medium
  376. * New synapse release 1.37.1.
  377. -- Synapse Packaging team <packages@matrix.org> Wed, 30 Jun 2021 12:24:06 +0100
  378. matrix-synapse-py3 (1.37.0) stable; urgency=medium
  379. * New synapse release 1.37.0.
  380. -- Synapse Packaging team <packages@matrix.org> Tue, 29 Jun 2021 10:15:25 +0100
  381. matrix-synapse-py3 (1.36.0) stable; urgency=medium
  382. * New synapse release 1.36.0.
  383. -- Synapse Packaging team <packages@matrix.org> Tue, 15 Jun 2021 15:41:53 +0100
  384. matrix-synapse-py3 (1.35.1) stable; urgency=medium
  385. * New synapse release 1.35.1.
  386. -- Synapse Packaging team <packages@matrix.org> Thu, 03 Jun 2021 08:11:29 -0400
  387. matrix-synapse-py3 (1.35.0) stable; urgency=medium
  388. * New synapse release 1.35.0.
  389. -- Synapse Packaging team <packages@matrix.org> Tue, 01 Jun 2021 13:23:35 +0100
  390. matrix-synapse-py3 (1.34.0) stable; urgency=medium
  391. * New synapse release 1.34.0.
  392. -- Synapse Packaging team <packages@matrix.org> Mon, 17 May 2021 11:34:18 +0100
  393. matrix-synapse-py3 (1.33.2) stable; urgency=medium
  394. * New synapse release 1.33.2.
  395. -- Synapse Packaging team <packages@matrix.org> Tue, 11 May 2021 11:17:59 +0100
  396. matrix-synapse-py3 (1.33.1) stable; urgency=medium
  397. * New synapse release 1.33.1.
  398. -- Synapse Packaging team <packages@matrix.org> Thu, 06 May 2021 14:06:33 +0100
  399. matrix-synapse-py3 (1.33.0) stable; urgency=medium
  400. * New synapse release 1.33.0.
  401. -- Synapse Packaging team <packages@matrix.org> Wed, 05 May 2021 14:15:27 +0100
  402. matrix-synapse-py3 (1.32.2) stable; urgency=medium
  403. * New synapse release 1.32.2.
  404. -- Synapse Packaging team <packages@matrix.org> Wed, 22 Apr 2021 12:43:52 +0100
  405. matrix-synapse-py3 (1.32.1) stable; urgency=medium
  406. * New synapse release 1.32.1.
  407. -- Synapse Packaging team <packages@matrix.org> Wed, 21 Apr 2021 14:00:55 +0100
  408. matrix-synapse-py3 (1.32.0) stable; urgency=medium
  409. [ Dan Callahan ]
  410. * Skip tests when DEB_BUILD_OPTIONS contains "nocheck".
  411. [ Synapse Packaging team ]
  412. * New synapse release 1.32.0.
  413. -- Synapse Packaging team <packages@matrix.org> Tue, 20 Apr 2021 14:28:39 +0100
  414. matrix-synapse-py3 (1.31.0) stable; urgency=medium
  415. * New synapse release 1.31.0.
  416. -- Synapse Packaging team <packages@matrix.org> Tue, 06 Apr 2021 13:08:29 +0100
  417. matrix-synapse-py3 (1.30.1) stable; urgency=medium
  418. * New synapse release 1.30.1.
  419. -- Synapse Packaging team <packages@matrix.org> Fri, 26 Mar 2021 12:01:28 +0000
  420. matrix-synapse-py3 (1.30.0) stable; urgency=medium
  421. * New synapse release 1.30.0.
  422. -- Synapse Packaging team <packages@matrix.org> Mon, 22 Mar 2021 13:15:34 +0000
  423. matrix-synapse-py3 (1.29.0) stable; urgency=medium
  424. [ Jonathan de Jong ]
  425. * Remove the python -B flag (don't generate bytecode) in scripts and documentation.
  426. [ Synapse Packaging team ]
  427. * New synapse release 1.29.0.
  428. -- Synapse Packaging team <packages@matrix.org> Mon, 08 Mar 2021 13:51:50 +0000
  429. matrix-synapse-py3 (1.28.0) stable; urgency=medium
  430. * New synapse release 1.28.0.
  431. -- Synapse Packaging team <packages@matrix.org> Thu, 25 Feb 2021 10:21:57 +0000
  432. matrix-synapse-py3 (1.27.0) stable; urgency=medium
  433. [ Dan Callahan ]
  434. * Fix build on Ubuntu 16.04 LTS (Xenial).
  435. [ Synapse Packaging team ]
  436. * New synapse release 1.27.0.
  437. -- Synapse Packaging team <packages@matrix.org> Tue, 16 Feb 2021 13:11:28 +0000
  438. matrix-synapse-py3 (1.26.0) stable; urgency=medium
  439. [ Richard van der Hoff ]
  440. * Remove dependency on `python3-distutils`.
  441. [ Synapse Packaging team ]
  442. * New synapse release 1.26.0.
  443. -- Synapse Packaging team <packages@matrix.org> Wed, 27 Jan 2021 12:43:35 -0500
  444. matrix-synapse-py3 (1.25.0) stable; urgency=medium
  445. [ Dan Callahan ]
  446. * Update dependencies to account for the removal of the transitional
  447. dh-systemd package from Debian Bullseye.
  448. [ Synapse Packaging team ]
  449. * New synapse release 1.25.0.
  450. -- Synapse Packaging team <packages@matrix.org> Wed, 13 Jan 2021 10:14:55 +0000
  451. matrix-synapse-py3 (1.24.0) stable; urgency=medium
  452. * New synapse release 1.24.0.
  453. -- Synapse Packaging team <packages@matrix.org> Wed, 09 Dec 2020 10:14:30 +0000
  454. matrix-synapse-py3 (1.23.1) stable; urgency=medium
  455. * New synapse release 1.23.1.
  456. -- Synapse Packaging team <packages@matrix.org> Wed, 09 Dec 2020 10:40:39 +0000
  457. matrix-synapse-py3 (1.23.0) stable; urgency=medium
  458. * New synapse release 1.23.0.
  459. -- Synapse Packaging team <packages@matrix.org> Wed, 18 Nov 2020 11:41:28 +0000
  460. matrix-synapse-py3 (1.22.1) stable; urgency=medium
  461. * New synapse release 1.22.1.
  462. -- Synapse Packaging team <packages@matrix.org> Fri, 30 Oct 2020 15:25:37 +0000
  463. matrix-synapse-py3 (1.22.0) stable; urgency=medium
  464. * New synapse release 1.22.0.
  465. -- Synapse Packaging team <packages@matrix.org> Tue, 27 Oct 2020 12:07:12 +0000
  466. matrix-synapse-py3 (1.21.2) stable; urgency=medium
  467. [ Synapse Packaging team ]
  468. * New synapse release 1.21.2.
  469. -- Synapse Packaging team <packages@matrix.org> Thu, 15 Oct 2020 09:23:27 -0400
  470. matrix-synapse-py3 (1.21.1) stable; urgency=medium
  471. [ Synapse Packaging team ]
  472. * New synapse release 1.21.1.
  473. [ Andrew Morgan ]
  474. * Explicitly install "test" python dependencies.
  475. -- Synapse Packaging team <packages@matrix.org> Tue, 13 Oct 2020 10:24:13 +0100
  476. matrix-synapse-py3 (1.21.0) stable; urgency=medium
  477. * New synapse release 1.21.0.
  478. -- Synapse Packaging team <packages@matrix.org> Mon, 12 Oct 2020 15:47:44 +0100
  479. matrix-synapse-py3 (1.20.1) stable; urgency=medium
  480. * New synapse release 1.20.1.
  481. -- Synapse Packaging team <packages@matrix.org> Thu, 24 Sep 2020 16:25:22 +0100
  482. matrix-synapse-py3 (1.20.0) stable; urgency=medium
  483. [ Synapse Packaging team ]
  484. * New synapse release 1.20.0.
  485. [ Dexter Chua ]
  486. * Use Type=notify in systemd service
  487. -- Synapse Packaging team <packages@matrix.org> Tue, 22 Sep 2020 15:19:32 +0100
  488. matrix-synapse-py3 (1.19.3) stable; urgency=medium
  489. * New synapse release 1.19.3.
  490. -- Synapse Packaging team <packages@matrix.org> Fri, 18 Sep 2020 14:59:30 +0100
  491. matrix-synapse-py3 (1.19.2) stable; urgency=medium
  492. * New synapse release 1.19.2.
  493. -- Synapse Packaging team <packages@matrix.org> Wed, 16 Sep 2020 12:50:30 +0100
  494. matrix-synapse-py3 (1.19.1) stable; urgency=medium
  495. * New synapse release 1.19.1.
  496. -- Synapse Packaging team <packages@matrix.org> Thu, 27 Aug 2020 10:50:19 +0100
  497. matrix-synapse-py3 (1.19.0) stable; urgency=medium
  498. [ Synapse Packaging team ]
  499. * New synapse release 1.19.0.
  500. [ Aaron Raimist ]
  501. * Fix outdated documentation for SYNAPSE_CACHE_FACTOR
  502. -- Synapse Packaging team <packages@matrix.org> Mon, 17 Aug 2020 14:06:42 +0100
  503. matrix-synapse-py3 (1.18.0) stable; urgency=medium
  504. * New synapse release 1.18.0.
  505. -- Synapse Packaging team <packages@matrix.org> Thu, 30 Jul 2020 10:55:53 +0100
  506. matrix-synapse-py3 (1.17.0) stable; urgency=medium
  507. * New synapse release 1.17.0.
  508. -- Synapse Packaging team <packages@matrix.org> Mon, 13 Jul 2020 10:20:31 +0100
  509. matrix-synapse-py3 (1.16.1) stable; urgency=medium
  510. * New synapse release 1.16.1.
  511. -- Synapse Packaging team <packages@matrix.org> Fri, 10 Jul 2020 12:09:24 +0100
  512. matrix-synapse-py3 (1.17.0rc1) stable; urgency=medium
  513. * New synapse release 1.17.0rc1.
  514. -- Synapse Packaging team <packages@matrix.org> Thu, 09 Jul 2020 16:53:12 +0100
  515. matrix-synapse-py3 (1.16.0) stable; urgency=medium
  516. * New synapse release 1.16.0.
  517. -- Synapse Packaging team <packages@matrix.org> Wed, 08 Jul 2020 11:03:48 +0100
  518. matrix-synapse-py3 (1.15.2) stable; urgency=medium
  519. * New synapse release 1.15.2.
  520. -- Synapse Packaging team <packages@matrix.org> Thu, 02 Jul 2020 10:34:00 -0400
  521. matrix-synapse-py3 (1.15.1) stable; urgency=medium
  522. * New synapse release 1.15.1.
  523. -- Synapse Packaging team <packages@matrix.org> Tue, 16 Jun 2020 10:27:50 +0100
  524. matrix-synapse-py3 (1.15.0) stable; urgency=medium
  525. * New synapse release 1.15.0.
  526. -- Synapse Packaging team <packages@matrix.org> Thu, 11 Jun 2020 13:27:06 +0100
  527. matrix-synapse-py3 (1.14.0) stable; urgency=medium
  528. * New synapse release 1.14.0.
  529. -- Synapse Packaging team <packages@matrix.org> Thu, 28 May 2020 10:37:27 +0000
  530. matrix-synapse-py3 (1.13.0) stable; urgency=medium
  531. [ Patrick Cloke ]
  532. * Add information about .well-known files to Debian installation scripts.
  533. [ Synapse Packaging team ]
  534. * New synapse release 1.13.0.
  535. -- Synapse Packaging team <packages@matrix.org> Tue, 19 May 2020 09:16:56 -0400
  536. matrix-synapse-py3 (1.12.4) stable; urgency=medium
  537. * New synapse release 1.12.4.
  538. -- Synapse Packaging team <packages@matrix.org> Thu, 23 Apr 2020 10:58:14 -0400
  539. matrix-synapse-py3 (1.12.3) stable; urgency=medium
  540. [ Richard van der Hoff ]
  541. * Update the Debian build scripts to handle the new installation paths
  542. for the support libraries introduced by Pillow 7.1.1.
  543. [ Synapse Packaging team ]
  544. * New synapse release 1.12.3.
  545. -- Synapse Packaging team <packages@matrix.org> Fri, 03 Apr 2020 10:55:03 +0100
  546. matrix-synapse-py3 (1.12.2) stable; urgency=medium
  547. * New synapse release 1.12.2.
  548. -- Synapse Packaging team <packages@matrix.org> Mon, 02 Apr 2020 19:02:17 +0000
  549. matrix-synapse-py3 (1.12.1) stable; urgency=medium
  550. * New synapse release 1.12.1.
  551. -- Synapse Packaging team <packages@matrix.org> Mon, 02 Apr 2020 11:30:47 +0000
  552. matrix-synapse-py3 (1.12.0) stable; urgency=medium
  553. * New synapse release 1.12.0.
  554. -- Synapse Packaging team <packages@matrix.org> Mon, 23 Mar 2020 12:13:03 +0000
  555. matrix-synapse-py3 (1.11.1) stable; urgency=medium
  556. * New synapse release 1.11.1.
  557. -- Synapse Packaging team <packages@matrix.org> Tue, 03 Mar 2020 15:01:22 +0000
  558. matrix-synapse-py3 (1.11.0) stable; urgency=medium
  559. * New synapse release 1.11.0.
  560. -- Synapse Packaging team <packages@matrix.org> Fri, 21 Feb 2020 08:54:34 +0000
  561. matrix-synapse-py3 (1.10.1) stable; urgency=medium
  562. * New synapse release 1.10.1.
  563. -- Synapse Packaging team <packages@matrix.org> Mon, 17 Feb 2020 16:27:28 +0000
  564. matrix-synapse-py3 (1.10.0) stable; urgency=medium
  565. * New synapse release 1.10.0.
  566. -- Synapse Packaging team <packages@matrix.org> Wed, 12 Feb 2020 12:18:54 +0000
  567. matrix-synapse-py3 (1.9.1) stable; urgency=medium
  568. * New synapse release 1.9.1.
  569. -- Synapse Packaging team <packages@matrix.org> Tue, 28 Jan 2020 13:09:23 +0000
  570. matrix-synapse-py3 (1.9.0) stable; urgency=medium
  571. * New synapse release 1.9.0.
  572. -- Synapse Packaging team <packages@matrix.org> Thu, 23 Jan 2020 12:56:31 +0000
  573. matrix-synapse-py3 (1.8.0) stable; urgency=medium
  574. [ Richard van der Hoff ]
  575. * Automate generation of the default log configuration file.
  576. [ Synapse Packaging team ]
  577. * New synapse release 1.8.0.
  578. -- Synapse Packaging team <packages@matrix.org> Thu, 09 Jan 2020 11:39:27 +0000
  579. matrix-synapse-py3 (1.7.3) stable; urgency=medium
  580. * New synapse release 1.7.3.
  581. -- Synapse Packaging team <packages@matrix.org> Tue, 31 Dec 2019 10:45:04 +0000
  582. matrix-synapse-py3 (1.7.2) stable; urgency=medium
  583. * New synapse release 1.7.2.
  584. -- Synapse Packaging team <packages@matrix.org> Fri, 20 Dec 2019 10:56:50 +0000
  585. matrix-synapse-py3 (1.7.1) stable; urgency=medium
  586. * New synapse release 1.7.1.
  587. -- Synapse Packaging team <packages@matrix.org> Wed, 18 Dec 2019 09:37:59 +0000
  588. matrix-synapse-py3 (1.7.0) stable; urgency=medium
  589. * New synapse release 1.7.0.
  590. -- Synapse Packaging team <packages@matrix.org> Fri, 13 Dec 2019 10:19:38 +0000
  591. matrix-synapse-py3 (1.6.1) stable; urgency=medium
  592. * New synapse release 1.6.1.
  593. -- Synapse Packaging team <packages@matrix.org> Thu, 28 Nov 2019 11:10:40 +0000
  594. matrix-synapse-py3 (1.6.0) stable; urgency=medium
  595. * New synapse release 1.6.0.
  596. -- Synapse Packaging team <packages@matrix.org> Tue, 26 Nov 2019 12:15:40 +0000
  597. matrix-synapse-py3 (1.5.1) stable; urgency=medium
  598. * New synapse release 1.5.1.
  599. -- Synapse Packaging team <packages@matrix.org> Wed, 06 Nov 2019 10:02:14 +0000
  600. matrix-synapse-py3 (1.5.0) stable; urgency=medium
  601. * New synapse release 1.5.0.
  602. -- Synapse Packaging team <packages@matrix.org> Tue, 29 Oct 2019 14:28:41 +0000
  603. matrix-synapse-py3 (1.4.1) stable; urgency=medium
  604. * New synapse release 1.4.1.
  605. -- Synapse Packaging team <packages@matrix.org> Fri, 18 Oct 2019 10:13:27 +0100
  606. matrix-synapse-py3 (1.4.0) stable; urgency=medium
  607. * New synapse release 1.4.0.
  608. -- Synapse Packaging team <packages@matrix.org> Thu, 03 Oct 2019 13:22:25 +0100
  609. matrix-synapse-py3 (1.3.1) stable; urgency=medium
  610. * New synapse release 1.3.1.
  611. -- Synapse Packaging team <packages@matrix.org> Sat, 17 Aug 2019 09:15:49 +0100
  612. matrix-synapse-py3 (1.3.0) stable; urgency=medium
  613. [ Andrew Morgan ]
  614. * Remove libsqlite3-dev from required build dependencies.
  615. [ Synapse Packaging team ]
  616. * New synapse release 1.3.0.
  617. -- Synapse Packaging team <packages@matrix.org> Thu, 15 Aug 2019 12:04:23 +0100
  618. matrix-synapse-py3 (1.2.0) stable; urgency=medium
  619. [ Amber Brown ]
  620. * Update logging config defaults to match API changes in Synapse.
  621. [ Richard van der Hoff ]
  622. * Add Recommends and Depends for some libraries which you probably want.
  623. [ Synapse Packaging team ]
  624. * New synapse release 1.2.0.
  625. -- Synapse Packaging team <packages@matrix.org> Thu, 25 Jul 2019 14:10:07 +0100
  626. matrix-synapse-py3 (1.1.0) stable; urgency=medium
  627. [ Silke Hofstra ]
  628. * Include systemd-python to allow logging to the systemd journal.
  629. [ Synapse Packaging team ]
  630. * New synapse release 1.1.0.
  631. -- Synapse Packaging team <packages@matrix.org> Thu, 04 Jul 2019 11:43:41 +0100
  632. matrix-synapse-py3 (1.0.0) stable; urgency=medium
  633. * New synapse release 1.0.0.
  634. -- Synapse Packaging team <packages@matrix.org> Tue, 11 Jun 2019 17:09:53 +0100
  635. matrix-synapse-py3 (0.99.5.2) stable; urgency=medium
  636. * New synapse release 0.99.5.2.
  637. -- Synapse Packaging team <packages@matrix.org> Thu, 30 May 2019 16:28:07 +0100
  638. matrix-synapse-py3 (0.99.5.1) stable; urgency=medium
  639. * New synapse release 0.99.5.1.
  640. -- Synapse Packaging team <packages@matrix.org> Wed, 22 May 2019 16:22:24 +0000
  641. matrix-synapse-py3 (0.99.4) stable; urgency=medium
  642. [ Christoph Müller ]
  643. * Configure the systemd units to have a log identifier of `matrix-synapse`
  644. [ Synapse Packaging team ]
  645. * New synapse release 0.99.4.
  646. -- Synapse Packaging team <packages@matrix.org> Wed, 15 May 2019 13:58:08 +0100
  647. matrix-synapse-py3 (0.99.3.2) stable; urgency=medium
  648. * New synapse release 0.99.3.2.
  649. -- Synapse Packaging team <packages@matrix.org> Fri, 03 May 2019 18:56:20 +0100
  650. matrix-synapse-py3 (0.99.3.1) stable; urgency=medium
  651. * New synapse release 0.99.3.1.
  652. -- Synapse Packaging team <packages@matrix.org> Fri, 03 May 2019 16:02:43 +0100
  653. matrix-synapse-py3 (0.99.3) stable; urgency=medium
  654. [ Richard van der Hoff ]
  655. * Fix warning during preconfiguration. (Fixes: #4819)
  656. [ Synapse Packaging team ]
  657. * New synapse release 0.99.3.
  658. -- Synapse Packaging team <packages@matrix.org> Mon, 01 Apr 2019 12:48:21 +0000
  659. matrix-synapse-py3 (0.99.2) stable; urgency=medium
  660. * Fix overwriting of config settings on upgrade.
  661. * New synapse release 0.99.2.
  662. -- Synapse Packaging team <packages@matrix.org> Fri, 01 Mar 2019 10:55:08 +0000
  663. matrix-synapse-py3 (0.99.1.1) stable; urgency=medium
  664. * New synapse release 0.99.1.1
  665. -- Synapse Packaging team <packages@matrix.org> Thu, 14 Feb 2019 17:19:44 +0000
  666. matrix-synapse-py3 (0.99.1) stable; urgency=medium
  667. [ Damjan Georgievski ]
  668. * Added ExecReload= in service unit file to send a HUP signal
  669. [ Synapse Packaging team ]
  670. * New synapse release 0.99.1
  671. -- Synapse Packaging team <packages@matrix.org> Thu, 14 Feb 2019 14:12:26 +0000
  672. matrix-synapse-py3 (0.99.0) stable; urgency=medium
  673. * New synapse release 0.99.0
  674. -- Synapse Packaging team <packages@matrix.org> Tue, 5 Feb 2019 18:25:00 +0000
  675. matrix-synapse-py3 (0.34.1.1++1) stable; urgency=medium
  676. * Update conflicts specifications to allow smoother transition from matrix-synapse.
  677. -- Synapse Packaging team <packages@matrix.org> Sat, 12 Jan 2019 12:58:35 +0000
  678. matrix-synapse-py3 (0.34.1.1) stable; urgency=high
  679. * New synapse release 0.34.1.1
  680. -- Synapse Packaging team <packages@matrix.org> Thu, 10 Jan 2019 15:04:52 +0000
  681. matrix-synapse-py3 (0.34.1+1) stable; urgency=medium
  682. * Remove 'Breaks: matrix-synapse-ldap3'. (matrix-synapse-py3 includes
  683. the matrix-synapse-ldap3 python files, which makes the
  684. matrix-synapse-ldap3 debian package redundant but not broken.
  685. -- Synapse Packaging team <packages@matrix.org> Wed, 09 Jan 2019 15:30:00 +0000
  686. matrix-synapse-py3 (0.34.1) stable; urgency=medium
  687. * New synapse release 0.34.1.
  688. * Update Conflicts specifications to allow installation alongside our
  689. matrix-synapse transitional package.
  690. -- Synapse Packaging team <packages@matrix.org> Wed, 09 Jan 2019 14:52:24 +0000
  691. matrix-synapse-py3 (0.34.0) stable; urgency=medium
  692. * New synapse release 0.34.0.
  693. * Synapse is now installed into a Python 3 virtual environment with
  694. up-to-date dependencies.
  695. * The matrix-synapse service will now be restarted when the package is
  696. upgraded.
  697. (Fixes https://github.com/matrix-org/package-synapse-debian/issues/18)
  698. -- Synapse packaging team <packages@matrix.org> Wed, 19 Dec 2018 14:00:00 +0000
  699. matrix-synapse (0.33.9-1matrix1) stretch; urgency=medium
  700. [ Erik Johnston ]
  701. * Remove dependency on python-pydenticon
  702. [ Richard van der Hoff ]
  703. * New upstream version 0.33.9
  704. * Refresh patches for 0.33.9
  705. -- Richard van der Hoff <richard@matrix.org> Tue, 20 Nov 2018 10:26:05 +0000
  706. matrix-synapse (0.33.8-1) stretch; urgency=medium
  707. * New upstream version 0.33.8
  708. -- Erik Johnston <erik@matrix.org> Thu, 01 Nov 2018 14:33:26 +0000
  709. matrix-synapse (0.33.7-1matrix1) stretch; urgency=medium
  710. * New upstream version 0.33.7
  711. -- Richard van der Hoff <richard@matrix.org> Thu, 18 Oct 2018 16:18:26 +0100
  712. matrix-synapse (0.33.6-1matrix1) stretch; urgency=medium
  713. * Imported Upstream version 0.33.6
  714. * Remove redundant explicit dep on python-bcrypt
  715. * Run the tests during build
  716. * Add dependency on python-attr 16.0
  717. * Refresh patches for 0.33.6
  718. -- Richard van der Hoff <richard@matrix.org> Thu, 04 Oct 2018 14:40:29 +0100
  719. matrix-synapse (0.33.5.1-1matrix1) stretch; urgency=medium
  720. * Imported Upstream version 0.33.5.1
  721. -- Richard van der Hoff <richard@matrix.org> Mon, 24 Sep 2018 18:20:51 +0100
  722. matrix-synapse (0.33.5-1matrix1) stretch; urgency=medium
  723. * Imported Upstream version 0.33.5
  724. -- Richard van der Hoff <richard@matrix.org> Mon, 24 Sep 2018 16:06:23 +0100
  725. matrix-synapse (0.33.4-1mx1) stretch; urgency=medium
  726. * Imported Upstream version 0.33.4
  727. * Avoid telling people to install packages with pip
  728. (fixes https://github.com/matrix-org/synapse/issues/3743)
  729. -- Richard van der Hoff <richard@matrix.org> Fri, 07 Sep 2018 14:06:17 +0100
  730. matrix-synapse (0.33.3.1-1mx1) stretch; urgency=critical
  731. [ Richard van der Hoff ]
  732. * Imported Upstream version 0.33.3.1
  733. -- Richard van der Hoff <richard@matrix.org> Thu, 06 Sep 2018 11:20:37 +0100
  734. matrix-synapse (0.33.3-2) stretch; urgency=medium
  735. * We now require python-twisted 17.1.0 or later
  736. * Add recommendations for python-psycopg2 and python-lxml
  737. -- Richard van der Hoff <richard@matrix.org> Thu, 23 Aug 2018 19:04:08 +0100
  738. matrix-synapse (0.33.3-1) jessie; urgency=medium
  739. * New upstream version 0.33.3
  740. -- Richard van der Hoff <richard@matrix.org> Wed, 22 Aug 2018 14:50:30 +0100
  741. matrix-synapse (0.33.2-1) jessie; urgency=medium
  742. * New upstream version 0.33.2
  743. -- Richard van der Hoff <richard@matrix.org> Thu, 09 Aug 2018 15:40:42 +0100
  744. matrix-synapse (0.33.1-1) jessie; urgency=medium
  745. * New upstream version 0.33.1
  746. -- Erik Johnston <erik@matrix.org> Thu, 02 Aug 2018 15:52:19 +0100
  747. matrix-synapse (0.33.0-1) jessie; urgency=medium
  748. * New upstream version 0.33.0
  749. -- Richard van der Hoff <richard@matrix.org> Thu, 19 Jul 2018 13:38:41 +0100
  750. matrix-synapse (0.32.1-1) jessie; urgency=medium
  751. * New upstream version 0.32.1
  752. -- Richard van der Hoff <richard@matrix.org> Fri, 06 Jul 2018 17:16:29 +0100
  753. matrix-synapse (0.32.0-1) jessie; urgency=medium
  754. * New upstream version 0.32.0
  755. -- Erik Johnston <erik@matrix.org> Fri, 06 Jul 2018 15:34:06 +0100
  756. matrix-synapse (0.31.2-1) jessie; urgency=high
  757. * New upstream version 0.31.2
  758. -- Richard van der Hoff <richard@matrix.org> Thu, 14 Jun 2018 16:49:07 +0100
  759. matrix-synapse (0.31.1-1) jessie; urgency=medium
  760. * New upstream version 0.31.1
  761. * Require python-prometheus-client >= 0.0.14
  762. -- Richard van der Hoff <richard@matrix.org> Fri, 08 Jun 2018 16:11:55 +0100
  763. matrix-synapse (0.31.0-1) jessie; urgency=medium
  764. * New upstream version 0.31.0
  765. -- Richard van der Hoff <richard@matrix.org> Wed, 06 Jun 2018 17:23:10 +0100
  766. matrix-synapse (0.30.0-1) jessie; urgency=medium
  767. [ Michael Kaye ]
  768. * update homeserver.yaml to be somewhat more modern.
  769. [ Erik Johnston ]
  770. * New upstream version 0.30.0
  771. -- Erik Johnston <erik@matrix.org> Thu, 24 May 2018 16:43:16 +0100
  772. matrix-synapse (0.29.0-1) jessie; urgency=medium
  773. * New upstream version 0.29.0
  774. -- Erik Johnston <erik@matrix.org> Wed, 16 May 2018 17:43:06 +0100
  775. matrix-synapse (0.28.1-1) jessie; urgency=medium
  776. * New upstream version 0.28.1
  777. -- Erik Johnston <erik@matrix.org> Tue, 01 May 2018 19:21:39 +0100
  778. matrix-synapse (0.28.0-1) jessie; urgency=medium
  779. * New upstream 0.28.0
  780. -- Erik Johnston <erik@matrix.org> Fri, 27 Apr 2018 13:15:49 +0100
  781. matrix-synapse (0.27.4-1) jessie; urgency=medium
  782. * Bump canonicaljson version
  783. * New upstream 0.27.4
  784. -- Erik Johnston <erik@matrix.org> Fri, 13 Apr 2018 13:37:47 +0100
  785. matrix-synapse (0.27.3-1) jessie; urgency=medium
  786. * Report stats should default to off
  787. * Refresh patches
  788. * New upstream 0.27.3
  789. -- Erik Johnston <erik@matrix.org> Wed, 11 Apr 2018 11:43:47 +0100
  790. matrix-synapse (0.27.2-1) jessie; urgency=medium
  791. * New upstream version 0.27.2
  792. -- Erik Johnston <erik@matrix.org> Mon, 26 Mar 2018 16:41:57 +0100
  793. matrix-synapse (0.27.1-1) jessie; urgency=medium
  794. * New upstream version 0.27.1
  795. -- Erik Johnston <erik@matrix.org> Mon, 26 Mar 2018 16:22:03 +0100
  796. matrix-synapse (0.27.0-2) jessie; urgency=medium
  797. * Fix bcrypt dependency
  798. -- Erik Johnston <erik@matrix.org> Mon, 26 Mar 2018 16:00:26 +0100
  799. matrix-synapse (0.27.0-1) jessie; urgency=medium
  800. * New upstream version 0.27.0
  801. -- Erik Johnston <erik@matrix.org> Mon, 26 Mar 2018 15:07:52 +0100
  802. matrix-synapse (0.26.1-1) jessie; urgency=medium
  803. * Ignore RC
  804. * New upstream version 0.26.1
  805. -- Erik Johnston <erik@matrix.org> Fri, 16 Mar 2018 00:40:08 +0000
  806. matrix-synapse (0.26.0-1) jessie; urgency=medium
  807. [ Richard van der Hoff ]
  808. * Remove `level` for `file` log handler
  809. [ Erik Johnston ]
  810. -- Erik Johnston <erik@matrix.org> Fri, 05 Jan 2018 11:21:26 +0000
  811. matrix-synapse (0.25.1-1) jessie; urgency=medium
  812. * New upstream version 0.25.1
  813. -- Erik Johnston <erik@matrix.org> Mon, 20 Nov 2017 10:05:37 +0000
  814. matrix-synapse (0.25.0-1) jessie; urgency=medium
  815. * New upstream version 0.25.0
  816. -- Erik Johnston <erik@matrix.org> Wed, 15 Nov 2017 11:36:32 +0000
  817. matrix-synapse (0.24.1-1) jessie; urgency=medium
  818. * New upstream version 0.24.1
  819. -- Erik Johnston <erik@matrix.org> Tue, 24 Oct 2017 15:05:03 +0100
  820. matrix-synapse (0.24.0-1) jessie; urgency=medium
  821. * New upstream version 0.24.0
  822. -- Erik Johnston <erik@matrix.org> Mon, 23 Oct 2017 14:11:46 +0100
  823. matrix-synapse (0.23.1-1) xenial; urgency=medium
  824. * Imported upstream version 0.23.1
  825. -- Erik Johnston <erikj@matrix.org> Thu, 05 Oct 2017 15:28:25 +0100
  826. matrix-synapse (0.23.0-1) jessie; urgency=medium
  827. * Fix patch after refactor
  828. * Add patch to remove requirement on affinity package
  829. * refresh webclient patch
  830. -- Erik Johnston <erikj@matrix.org> Mon, 02 Oct 2017 15:34:57 +0100
  831. matrix-synapse (0.22.1-1) jessie; urgency=medium
  832. * Imported Upstream version 0.22.1
  833. -- Erik Johnston <erikj@matrix.org> Thu, 06 Jul 2017 18:14:13 +0100
  834. matrix-synapse (0.22.0-1) jessie; urgency=medium
  835. * Imported upstream version 0.22.0
  836. -- Erik Johnston <erikj@matrix.org> Thu, 06 Jul 2017 10:47:45 +0100
  837. matrix-synapse (0.21.1-1) jessie; urgency=medium
  838. * Imported upstream version 0.21.1
  839. -- Erik Johnston <erikj@matrix.org> Thu, 15 Jun 2017 13:31:13 +0100
  840. matrix-synapse (0.21.0-1) jessie; urgency=medium
  841. * Imported upstream version 0.21.0
  842. * Update patches
  843. -- Erik Johnston <erikj@matrix.org> Thu, 18 May 2017 14:16:54 +0100
  844. matrix-synapse (0.20.0-2) jessie; urgency=medium
  845. * Depend on python-jsonschema
  846. -- Erik Johnston <erikj@matrix.org> Wed, 12 Apr 2017 10:41:46 +0100
  847. matrix-synapse (0.20.0-1) jessie; urgency=medium
  848. * Imported upstream version 0.20.0
  849. -- Erik Johnston <erikj@matrix.org> Tue, 11 Apr 2017 12:58:26 +0100
  850. matrix-synapse (0.19.3-1) jessie; urgency=medium
  851. * Imported upstream version 0.19.3
  852. -- Erik Johnston <erikj@matrix.org> Tue, 21 Mar 2017 13:45:41 +0000
  853. matrix-synapse (0.19.2-1) jessie; urgency=medium
  854. [ Sunil Mohan Adapa ]
  855. * Bump standards version to 3.9.8
  856. * Add debian/copyright file
  857. * Don't ignore errors in debian/config
  858. * Reformat depenedencies in debian/control
  859. * Internationalize strings in template file
  860. * Update package description
  861. * Add lsb-base as dependency
  862. * Update questions for debconf style
  863. * Add man pages for all binaries
  864. [ Erik Johnston ]
  865. * Imported upstream version 0.19.2
  866. -- Erik Johnston <erikj@matrix.org> Tue, 21 Feb 2017 13:55:00 +0000
  867. matrix-synapse (0.19.1-1) jessie; urgency=medium
  868. * Imported upstream version 0.19.1
  869. -- Erik Johnston <erikj@matrix.org> Thu, 09 Feb 2017 11:53:27 +0000
  870. matrix-synapse (0.19.0-1) jessie; urgency=medium
  871. This build requires python-twisted 0.19.0, which may need to be installed
  872. from backports.
  873. [ Bryce Chidester ]
  874. * Add EnvironmentFile to the systemd service
  875. * Create matrix-synapse.default
  876. [ Erik Johnston ]
  877. * Imported upstream version 0.19.0
  878. -- Erik Johnston <erikj@matrix.org> Sat, 04 Feb 2017 09:58:29 +0000
  879. matrix-synapse (0.18.7-1) trusty; urgency=medium
  880. * Imported Upstream version 0.18.4
  881. -- Erik Johnston <erikj@matrix.org> Mon, 09 Jan 2017 15:10:21 +0000
  882. matrix-synapse (0.18.5-1) trusty; urgency=medium
  883. * Imported Upstream version 0.18.5
  884. -- Erik Johnston <erikj@matrix.org> Fri, 16 Dec 2016 10:51:59 +0000
  885. matrix-synapse (0.18.4-1) trusty; urgency=medium
  886. * Imported Upstream version 0.18.4
  887. -- Erik Johnston <erikj@matrix.org> Tue, 22 Nov 2016 10:33:41 +0000
  888. matrix-synapse (0.18.3-1) trusty; urgency=medium
  889. * Imported Upstream version 0.18.3
  890. * Remove upstreamed ldap3 patch
  891. -- Erik Johnston <erikj@matrix.org> Tue, 08 Nov 2016 15:01:49 +0000
  892. matrix-synapse (0.18.2-2) trusty; urgency=high
  893. * Patch ldap3 support to workaround differences in python-ldap3 0.9,
  894. bug allowed unauthorized logins if ldap3 0.9 was used.
  895. -- Erik Johnston <erikj@matrix.org> Tue, 08 Nov 2016 13:48:09 +0000
  896. matrix-synapse (0.18.2-1) trusty; urgency=medium
  897. * Imported Upstream version 0.18.2
  898. -- Erik Johnston <erikj@matrix.org> Tue, 01 Nov 2016 13:30:45 +0000
  899. matrix-synapse (0.18.1-1) trusty; urgency=medium
  900. * Imported Upstream version 0.18.1
  901. -- Erik Johnston <erikj@matrix.org> Wed, 05 Oct 2016 14:52:53 +0100
  902. matrix-synapse (0.18.0-1) trusty; urgency=medium
  903. * Imported Upstream version 0.18.0
  904. -- Erik Johnston <erikj@matrix.org> Mon, 19 Sep 2016 17:38:48 +0100
  905. matrix-synapse (0.17.3-1) trusty; urgency=medium
  906. * Imported Upstream version 0.17.3
  907. -- Erik Johnston <erikj@matrix.org> Fri, 09 Sep 2016 11:18:18 +0100
  908. matrix-synapse (0.17.2-1) trusty; urgency=medium
  909. * Imported Upstream version 0.17.2
  910. -- Erik Johnston <erikj@matrix.org> Thu, 08 Sep 2016 15:37:14 +0100
  911. matrix-synapse (0.17.1-1) trusty; urgency=medium
  912. * Imported Upstream version 0.17.1
  913. -- Erik Johnston <erikj@matrix.org> Wed, 24 Aug 2016 15:11:29 +0100
  914. matrix-synapse (0.17.0-1) trusty; urgency=medium
  915. * Imported Upstream version 0.17.0
  916. -- Erik Johnston <erikj@matrix.org> Mon, 08 Aug 2016 13:56:15 +0100
  917. matrix-synapse (0.16.1-r1-1) trusty; urgency=medium
  918. * Imported Upstream version 0.16.1-r1
  919. -- Erik Johnston <erikj@matrix.org> Fri, 08 Jul 2016 16:47:35 +0100
  920. matrix-synapse (0.16.1-2) trusty; urgency=critical
  921. * Apply security patch
  922. -- Erik Johnston <erikj@matrix.org> Fri, 08 Jul 2016 11:05:27 +0100
  923. matrix-synapse (0.16.1-1) trusty; urgency=medium
  924. * New upstream release
  925. -- Erik Johnston <erikj@matrix.org> Tue, 21 Jun 2016 14:56:48 +0100
  926. matrix-synapse (0.16.0-3) trusty; urgency=medium
  927. * Don't require strict nacl==0.3.0 requirement
  928. -- Erik Johnston <erikj@matrix.org> Mon, 20 Jun 2016 13:24:22 +0100
  929. matrix-synapse (0.16.0-2) trusty; urgency=medium
  930. * Also change the permissions of /etc/matrix-synapse
  931. * Add apt webclient instructions
  932. * Fix up patches
  933. * Update default homeserver.yaml
  934. * Add patch
  935. -- Erik Johnston <erikj@matrix.org> Fri, 10 Jun 2016 14:06:20 +0100
  936. matrix-synapse (0.16.0-1) trusty; urgency=medium
  937. [ David A Roberts ]
  938. * systemd
  939. [ Erik Johnston ]
  940. * Fixup postinst and matrix-synapse.service
  941. * Handle email optional deps
  942. * New upstream release
  943. -- Erik Johnston <erikj@matrix.org> Thu, 09 Jun 2016 16:17:01 +0100
  944. matrix-synapse (0.14.0-1) trusty; urgency=medium
  945. * Remove saml2 module requirements
  946. -- Erik Johnston <erikj@matrix.org> Wed, 30 Mar 2016 14:31:17 +0100
  947. matrix-synapse (0.13.3-1) trusty; urgency=medium
  948. * New upstream release
  949. -- Erik Johnston <erikj@matrix.org> Thu, 11 Feb 2016 16:35:39 +0000
  950. matrix-synapse (0.13.2-1) trusty; urgency=medium
  951. * New upstream release
  952. -- Erik Johnston <erikj@matrix.org> Thu, 11 Feb 2016 11:01:16 +0000
  953. matrix-synapse (0.13.0-1) trusty; urgency=medium
  954. * New upstream release
  955. -- Erik Johnston <erikj@matrix.org> Wed, 10 Feb 2016 16:34:39 +0000
  956. matrix-synapse (0.12.0-2) trusty; urgency=medium
  957. * Don't default `registerion_shared_secret` config option
  958. -- Erik Johnston <erikj@matrix.org> Wed, 06 Jan 2016 16:34:02 +0000
  959. matrix-synapse (0.12.0-1) stable; urgency=medium
  960. * Imported Upstream version 0.12.0
  961. -- Mark Haines <mark@matrix.org> Mon, 04 Jan 2016 15:38:33 +0000
  962. matrix-synapse (0.11.1-1) unstable; urgency=medium
  963. * Imported Upstream version 0.11.1
  964. -- Erik Johnston <erikj@matrix.org> Fri, 20 Nov 2015 17:56:52 +0000
  965. matrix-synapse (0.11.0-r2-1) stable; urgency=medium
  966. * Imported Upstream version 0.11.0-r2
  967. * Add gbp.conf
  968. -- Erik Johnston <erikj@matrix.org> Thu, 19 Nov 2015 13:52:36 +0000
  969. matrix-synapse (0.11.0-1) wheezy; urgency=medium
  970. * Fix dependencies.
  971. -- Erik Johnston <erikj@matrix.org> Tue, 17 Nov 2015 16:28:06 +0000
  972. matrix-synapse (0.11.0-0) wheezy; urgency=medium
  973. * New upstream release
  974. -- Erik Johnston <erikj@matrix.org> Tue, 17 Nov 2015 16:03:01 +0000
  975. matrix-synapse (0.10.0-2) wheezy; urgency=medium
  976. * Rebuild for wheezy.
  977. -- Erik Johnston <erikj@matrix.org> Fri, 04 Sep 2015 14:21:03 +0100
  978. matrix-synapse (0.10.0-1) trusty; urgency=medium
  979. * New upstream release
  980. -- Erik Johnston <erikj@matrix.org> Thu, 03 Sep 2015 10:08:34 +0100
  981. matrix-synapse (0.10.0~rc6-3) trusty; urgency=medium
  982. * Create log directory.
  983. -- Erik Johnston <erikj@matrix.org> Wed, 02 Sep 2015 17:49:07 +0100
  984. matrix-synapse (0.10.0~rc6-2) trusty; urgency=medium
  985. * Add patch to work around upstream bug in config directory handling.
  986. -- Erik Johnston <erikj@matrix.org> Wed, 02 Sep 2015 17:42:42 +0100
  987. matrix-synapse (0.10.0~rc6-1) trusty; urgency=medium
  988. * New upstream release
  989. -- Erik Johnston <erikj@matrix.org> Wed, 02 Sep 2015 17:21:21 +0100
  990. matrix-synapse (0.10.0~rc5-3) trusty; urgency=medium
  991. * Update init script to work.
  992. -- Erik Johnston <erikj@matrix.org> Fri, 28 Aug 2015 10:51:56 +0100
  993. matrix-synapse (0.10.0~rc5-2) trusty; urgency=medium
  994. * Fix where python files are installed.
  995. -- Erik Johnston <erikj@matrix.org> Thu, 27 Aug 2015 11:55:39 +0100
  996. matrix-synapse (0.10.0~rc5-1) trusty; urgency=medium
  997. * New upstream release
  998. -- Erik Johnston <erikj@matrix.org> Thu, 27 Aug 2015 11:26:54 +0100
  999. matrix-synapse (0.10.0~rc4-1) trusty; urgency=medium
  1000. * New upstream version.
  1001. -- Erik Johnston <erikj@matrix.org> Thu, 27 Aug 2015 10:29:31 +0100
  1002. matrix-synapse (0.10.0~rc3-7) trusty; urgency=medium
  1003. * Add debian/watch
  1004. -- Erik Johnston <erikj@matrix.org> Wed, 26 Aug 2015 17:57:08 +0100
  1005. matrix-synapse (0.10.0~rc3-6) trusty; urgency=medium
  1006. * Deps.
  1007. -- Erik Johnston <erikj@matrix.org> Wed, 26 Aug 2015 17:07:13 +0100
  1008. matrix-synapse (0.10.0~rc3-5) trusty; urgency=medium
  1009. * Deps.
  1010. -- Erik Johnston <erikj@matrix.org> Wed, 26 Aug 2015 16:18:02 +0100
  1011. matrix-synapse (0.10.0~rc3-4) trusty; urgency=medium
  1012. * More deps.
  1013. -- Erik Johnston <erikj@matrix.org> Wed, 26 Aug 2015 14:09:27 +0100
  1014. matrix-synapse (0.10.0~rc3-3) trusty; urgency=medium
  1015. * Update deps.
  1016. -- Erik Johnston <erikj@matrix.org> Wed, 26 Aug 2015 13:49:20 +0100
  1017. matrix-synapse (0.10.0~rc3-2) trusty; urgency=medium
  1018. * Add more deps.
  1019. -- Erik Johnston <erikj@matrix.org> Wed, 26 Aug 2015 13:25:45 +0100
  1020. matrix-synapse (0.10.0~rc3-1) trusty; urgency=medium
  1021. * New upstream release
  1022. -- Erik Johnston <erikj@matrix.org> Tue, 25 Aug 2015 17:52:33 +0100
  1023. matrix-synapse (0.9.3-1~trusty1) trusty; urgency=medium
  1024. * Rebuild for trusty.
  1025. -- Erik Johnston <erikj@matrix.org> Thu, 20 Aug 2015 15:05:43 +0100
  1026. matrix-synapse (0.9.3-1) wheezy; urgency=medium
  1027. * New upstream release
  1028. * Create a user, "matrix-synapse", to run as
  1029. * Log to /var/log/matrix-synapse/ directory
  1030. * Override the way synapse looks for the angular SDK (syweb) so it finds the
  1031. packaged one
  1032. -- Paul "LeoNerd" Evans <paul@matrix.org> Fri, 07 Aug 2015 15:32:12 +0100
  1033. matrix-synapse (0.9.2-2) wheezy; urgency=medium
  1034. * Supply a default config file
  1035. * Create directory in /var/lib
  1036. * Use debconf to ask the user for the server name at installation time
  1037. -- Paul "LeoNerd" Evans <paul@matrix.org> Thu, 06 Aug 2015 15:28:00 +0100
  1038. matrix-synapse (0.9.2-1) wheezy; urgency=low
  1039. * source package automatically created by stdeb 0.8.2
  1040. -- Paul "LeoNerd" Evans <paul@matrix.org> Fri, 12 Jun 2015 14:32:03 +0100