No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

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