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.

changelog 52 KiB

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