You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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