changelog 86 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190
  1. apt-listchanges (3.3) unstable; urgency=medium
  2. * Upload to unstable.
  3. * postinst.in: don't call ucf when the new configuration file differs in
  4. whitespaces only (closes: #823514).
  5. * Update Dutch translation (closes: #823974).
  6. * Introduce simple ALCLog class for consistent logging.
  7. * Rename ALSeen.py into ALCSeen.py.
  8. * More improvements of changelog files parsing:
  9. + don't try to parse `changelog.gz' file when `changelog.Debian.gz' was
  10. successfully read, but all its entries were filtered out (e.g. because
  11. they had already been seen, what can happen while processing binNMU-ed
  12. packages);
  13. + also stop reading changelog file if the first non-empty line does
  14. not contain valid Debian changelog header;
  15. * Drop support for ancient *.deb files:
  16. + don't look for changelog files in `/usr/doc' directories;
  17. + assume all paths in tarballs created by `dpkg-deb --fsys-tarfile'`
  18. will start with the `./' prefix.
  19. * Regenerate *.pot and *.po files.
  20. * Update Polish translation.
  21. * Update debian/NEWS with a summary of the changes in versions 3.x.
  22. -- Robert Luberda <robert@debian.org> Mon, 15 Aug 2016 21:55:31 +0200
  23. apt-listchanges (3.2) experimental; urgency=medium
  24. * Improve parsing of changelog entries: ignore Emacs stuff and comments
  25. (closes: #336739), and try to recognize ancient changelog headers, so that
  26. they are shown in the proper order when `--reverse --show-all' is used.
  27. * Handle a few signals in apt-listchanges, and update the exit status check
  28. in the apt config file to break the installation not only when the status
  29. is equal to 10, but also when it is greater than 10 (closes: #816054).
  30. * Move the code responsible for reading apt pipeline to new ALCApt module,
  31. refactor it, and add support for reading from file descriptor given in
  32. $APT_HOOK_INFO_FD instead of stdin. This requires InfoFD option to be
  33. set in the apt configuration file.
  34. * Avoid reopening /dev/tty when stdin/stdout is already attached to terminal,
  35. make ttyconfirm use python's input() method instad, so that it should work
  36. correctly when 'su -c apt-get' is used for upgrades (closes: #663738).
  37. * Use named arguments in format strings to fix gettext warnings.
  38. * Rework debconf handling not to use debconf as a registry (closes: #521403).
  39. Introduce debian/debconf-helper.py, that gets inlined into postinst
  40. and config, and use configparser module for reading and writing our
  41. configuration file.
  42. -- Robert Luberda <robert@debian.org> Sat, 30 Apr 2016 15:37:50 +0200
  43. apt-listchanges (3.1) experimental; urgency=medium
  44. * Drop root privileges when running commands spawned by browser,
  45. xterm-browser, and xterm-pager frontends (closes: #456454):
  46. + a non-privileged user is selected by examining the APT_LISTCHANGES_USER,
  47. SUDO_USER, and USERNAME environment variables;
  48. + if temporary directory name ends with '/0', then it is modified to end
  49. with '/<uid-of-new-user>';
  50. + a few environment variables (HOME, SHELL, LOGNAME, TMPDIR, etc.)
  51. are updated;
  52. + os.spawnl() call was replaced with subprocess.Popen() with its env, and
  53. preexec_fn params set properly (BTW. this also mean that shell is no
  54. longer involved in running the commands).
  55. All the above steps are needed, because `su -c' cannot be used, because it
  56. detaches from the controlling terminal...
  57. The pager frontend still runs its command as root, so that it can be usable
  58. in case of any errors in the implementation of the above logic.
  59. * Update man page for the above change. Apply some other minor fixes to it.
  60. * Close temporary files explicitly to have a chance to ignore an error when
  61. the file has been removed already (closes: #772663).
  62. * Exit with an error when invalid command line option is given.
  63. * Permit '+' character in e-mail address while converting output to html.
  64. * Move the code responsible for handling the seen database to new ALSeenDb.py
  65. module and:
  66. + handle the fact that ndbm in python3 adds the '.db' extension by itself,
  67. and update the postinst script to rename the spurious '.db.db' file
  68. created by version 3.0 (closes: #820732);
  69. + increase reliability of saving database changes, and store the previous
  70. version of the database in 'listchanges-old.db', also update the postrm
  71. script for the new file;
  72. + add '--dump-seen' option to display the contents of the database to
  73. stdout, and mention NFS-sharing in README.Debian (closes: #658444).
  74. * Mention `NEWS and/or changelog' in README.Debian (closes: #743366), and
  75. update the description of both the algorithm and recovery procedure.
  76. * Standards-Version: 3.9.8.
  77. -- Robert Luberda <robert@debian.org> Sun, 17 Apr 2016 23:29:25 +0200
  78. apt-listchanges (3.0) experimental; urgency=low
  79. * Switch to python3 (closes: #796061).
  80. Merge James Lu's changes from his GitHub repository given in the
  81. bug report. Apart from the basic python3 syntax related updates,
  82. the change include replacing python-gtk2 and python-glade2 code
  83. with python3-gi for gtk frontend;
  84. * Use gettext() instead of lgettext() as a fix (or work-around)
  85. for an issue with python3 concatenating or not concatenating
  86. bytes to string depending on the current locale (see #818728).
  87. * Fix mail fronted to use 8bit encoding rather than base64 one.
  88. This requires python3 >= 3.5 for subprocess.run().
  89. * Apply more python3 fixes for exceptions occurring in legacy,
  90. non-UTF8 locales.
  91. * Enhance GTK frontend to display different labels for news
  92. items and changelogs.
  93. * Display titles in all other frontends as well (closes: #341917).
  94. Also make sure xterm-based frontends use the same settings as
  95. their console-based equivalents.
  96. * Handle local apt repositories with spaces in path (closes: #534434).
  97. * Fallback to non-xterm frontends when $DISPLAY is not set.
  98. * Drop support for deprecated frontends like w3m.
  99. * debian/control:
  100. + rename X-Python-Version control field to X-Python3-Version
  101. to get correct dependency on python3;
  102. + move dh-python from Build-Depends-Indep to Build-Depends,
  103. it is needed for the clean target due to `dh --with python3';
  104. + sort dependency fields with the wrap-and-sort command.
  105. -- Robert Luberda <robert@debian.org> Sun, 10 Apr 2016 20:33:32 +0200
  106. apt-listchanges (2.89) unstable; urgency=medium
  107. * Fix the 'none' frontend broken since version 2.86.
  108. * Introduce --select-frontend option for testing purposes
  109. to validate different frontends before release.
  110. * Quit early in the apt mode if there are no packages
  111. to process (this partially fixes #514865).
  112. * Standards-Version: 3.9.8 (no changes).
  113. -- Robert Luberda <robert@debian.org> Sat, 09 Apr 2016 21:37:50 +0200
  114. apt-listchanges (2.88) unstable; urgency=medium
  115. * Fix build reproducibility by forcing LC_ALL=C for docbook-to-man calls.
  116. * Update the previous debian/NEWS entry to mention renamed options.
  117. -- Robert Luberda <robert@debian.org> Sun, 03 Apr 2016 10:09:23 +0200
  118. apt-listchanges (2.87) unstable; urgency=medium
  119. * Use po4a for handling translations of man pages:
  120. + convert existing translations to *.po files, and unfuzzy them;
  121. + incorporate minor update of French man page by Alexandre Detiste
  122. from bug#796061;
  123. + make sure the Italian translation is actually installed;
  124. + update Makefiles, and add build dependency on po4a.
  125. * Fix encoding of non-ASCII mails (closes: #604922).
  126. * Convert http(s) and ftp(s) URLs into links in the browser frontend
  127. (closes: #587399). Additionally do the same CVE/CAN identifiers,
  128. and switch to using https for the Debian BTS links.
  129. * Introduce the --email-format option to optionally send mails in
  130. the HTML format (closes: #689731).
  131. * Rename the --save_seen option to --save-seen to match names of
  132. other command line options that contain hyphens rather than
  133. underscores (closes: #707667). Also rename --all to --show-all
  134. to match the name of the configuration file option. (Both older
  135. options are supported for backward compatibility, but no longer
  136. documented in the man page).
  137. * Enhance apt-listchanges(1) man page:
  138. + describe the format of the configuration file together with
  139. possible values of boolean options (see #707667);
  140. + document that browser, pager, and xterm settings can include
  141. arguments (closes: #784781);
  142. + disambiguate description of changes ordering (closes: #594844).
  143. * Introduce --ignore-apt-assume option to disable switching into
  144. non-interactive mode in case of `apt-get -y' (closes: #818712).
  145. * Switch to the non-interactive mode when DEBIAN_FRONTEND environment
  146. variable is set to "noninteractive". Add --ignore-debian-frontend
  147. to disable this.
  148. * Validate package names command line arguments (closes: #522700).
  149. * Try to prompt for confirmation when exception occurs (closes: #479530).
  150. * Update Polish translation.
  151. * Cleanup debian/rules a bit.
  152. * Drop useless build-dependency on libexpat1-dev.
  153. * Add debian/NEWS entry for recent changes.
  154. -- Robert Luberda <robert@debian.org> Sat, 02 Apr 2016 20:24:43 +0200
  155. apt-listchanges (2.86) unstable; urgency=medium
  156. * New maintainer (closes: #813245).
  157. * Merge binnmu entries with regular ones, not to display the low urgency
  158. binnmus before other possibly more important entries (closes: #746428).
  159. * If at least one package is being upgraded, do not ignore newly installed
  160. packages to try to support cases when /u/s/doc/package directory changes
  161. into symlink to another package built from the same source.
  162. * Check if filenames dict contains package name key before deleting it to
  163. avoid exception (closes: #757203).
  164. * Print "Reading changelogs" into stdout, not stderr (closes: #789160).
  165. * Do not override the mail fronted with text when quiet mode is set and
  166. the mail frontend is usable (closes: #502347, #788059).
  167. * Handle the '--assume-yes' option of apt-get by using non-interactive
  168. frontend and disabling confirmation (closes: #687443, LP: #788519),
  169. and fix exception occurring on non-int value while parsing apt
  170. 'quiet=' line (closes: #604130).
  171. * Switch debian/copright to the DEP-5 format.
  172. * debian/copyright:
  173. + use https for Vcs-* fields, and link to cgit rather than gitweb;
  174. + remove remaining uploader;
  175. + bump Standards-Verrsion to 3.9.7 (no changes).
  176. -- Robert Luberda <robert@debian.org> Thu, 17 Mar 2016 23:35:12 +0100
  177. apt-listchanges (2.85.14) unstable; urgency=medium
  178. * Acknowledge NMU; thanks to Ben Hutchings for it; Closes: #718770, #733921,
  179. #742826
  180. * Force quite mode when not running in a TTY; thanks to Micah Anderson for the
  181. report and to Thomas Parmelan for the patch; Closes: #610012
  182. * Bump debhelper compat to 9
  183. * Use dpkg-parsechangelog --show-field
  184. * convert d/rules to DH sequencer
  185. * Switch to dh_python2; Closes: #785943
  186. * Bump Standards-Version to 3.9.6 (no changes needed)
  187. -- Sandro Tosi <morph@debian.org> Sat, 06 Jun 2015 20:24:29 -0400
  188. apt-listchanges (2.85.13+nmu1) unstable; urgency=medium
  189. [ Ben Hutchings ]
  190. * Non-maintainer upload
  191. [ Chris Boot ]
  192. * Use the package's Architecture field when looking for binNMU changelogs.
  193. This removes the use of dpkg-architecture and thus the dependency on
  194. dpkg-dev. Closes: #718770, #733921
  195. [ Sergey Alyoshin ]
  196. * Add .glade file to translation and use xgettext
  197. * Mark message as translatable in .glade file
  198. * Update Russian translation; Closes: #742826
  199. -- Ben Hutchings <ben@decadent.org.uk> Sun, 12 Oct 2014 23:46:51 +0100
  200. apt-listchanges (2.85.13) unstable; urgency=low
  201. * Add missing dep on dpkg-dev, required to run dpkg-architecture; thanks to
  202. Ben Armstrong for the report; Closes: #733825
  203. * Fixed grammar in debconf Italian text; thanks to Riccardo Boninsegna for the
  204. report and to Luca Monducci for the patch; Closes: #709222
  205. -- Sandro Tosi <morph@debian.org> Wed, 01 Jan 2014 15:59:35 +0100
  206. apt-listchanges (2.85.12) unstable; urgency=low
  207. * Update the program Spanish PO file; thanks to Javier Fernandez-Sanguino;
  208. Closes: #686426
  209. * Handle new format of binNMUs; thanks to Thorsten Glaser for the report and
  210. to Simon Ruderich for the patch; Closes: #718770
  211. * Add missing newline in the debconf passtrough frontend output; thanks to
  212. José Manuel Santamaría Lema for the report and patch; Closes: #693805
  213. * bump Standards-Version to 3.9.5 (no changes needed)
  214. * Use Alioth canonical URLs
  215. -- Sandro Tosi <morph@debian.org> Sun, 29 Dec 2013 13:31:26 +0100
  216. apt-listchanges (2.85.12~exp1) experimental; urgency=low
  217. [ Julien Cristau ]
  218. * [022b79c] apt-listchanges: debconf passthrough frontend for use with
  219. packagekit; Closes: #678311
  220. [ Sandro Tosi ]
  221. * [7bbe068] don't show changes only for packages configured early; thanks to
  222. Zack Weinberg for the patch; Closes: #573013
  223. -- Sandro Tosi <morph@debian.org> Tue, 21 Aug 2012 01:20:55 +0200
  224. apt-listchanges (2.85.11) unstable; urgency=low
  225. * Don't use _() if we can't set requested locale; thanks to Ansgar Burchardt
  226. for the report and to Stuart Prescott for the patch; Closes: #602176
  227. * While parsing APT output, only return packages that are being installe, and
  228. not simply configured; thanks to Stuart Prescott for the analysis and the
  229. patch: Closes: #672230
  230. -- Sandro Tosi <morph@debian.org> Sat, 30 Jun 2012 12:36:34 +0200
  231. apt-listchanges (2.85.10) unstable; urgency=low
  232. [ Pierre Habouzit ]
  233. * Remove myself from Maintainer/Uploader as I won't work on it anymore, put
  234. Sandro in charge, since well, it just makes reality official.
  235. [ Josh Triplett ]
  236. * Avoid throwing an exception when sendmail does not exist. (Closes: 666086)
  237. * Move mail-transport-agent from Recommends to Suggests. (Closes: 599667)
  238. * Change exim4 to default-mta in Suggests.
  239. [ Sandro Tosi ]
  240. * Bump Standards-Version to 3.9.3 (no changes needed)
  241. -- Sandro Tosi <morph@debian.org> Sun, 03 Jun 2012 12:32:07 +0200
  242. apt-listchanges (2.85.9) unstable; urgency=low
  243. * Add helpful message to exit from less; thanks to Stuart Prescott for report
  244. and patch; Closes: #633645
  245. * use _render() to show test in GTK frontend; Closes: #551537
  246. * add --since and --reverse to manpage; thanks to Rogério Brito for the
  247. report; Closes: #620548
  248. * bump Standards-Version to 3.9.2 (no changes needed)
  249. * fix build* targets
  250. * add source format + compression options
  251. * added Auto-Submitted header to mails; thanks to Lee Maguire for the report;
  252. Closes: #641228
  253. * Add the debconf Slovak PO file; thanks to Slavko for the patch;
  254. Closes: #614207
  255. -- Sandro Tosi <morph@debian.org> Fri, 17 Feb 2012 21:32:26 +0100
  256. apt-listchanges (2.85.8) unstable; urgency=low
  257. * Update the debconf Danish PO file; thanks to Joe Dalton; Closes: #610566
  258. * Don't skip the very first entry when the NEWS file is added; thanks to Ryo
  259. IGARASHI for the report and to Robert Luberda for the patch; Closes: #590541
  260. -- Sandro Tosi <morph@debian.org> Tue, 31 May 2011 11:57:14 +0200
  261. apt-listchanges (2.85.7) unstable; urgency=low
  262. * Update the program Catalan PO file; thanks to Jordi Mallach; Closes:
  263. #606799
  264. -- Sandro Tosi <morph@debian.org> Sat, 11 Dec 2010 21:27:48 +0100
  265. apt-listchanges (2.85.6) unstable; urgency=low
  266. * Update the program Danish PO file; thanks to Joe Dalton; Closes:
  267. #602226
  268. * Update the program Catalan PO file; thanks to Jordi Mallach
  269. * make postrm be idempotent; thanks to Gonzalo Pérez de Olaguer
  270. Córdoba; Closes: #602742
  271. * Update PO Debconf Chinese (traditional) translation; thanks to Asho
  272. Yeh
  273. -- Sandro Tosi <morph@debian.org> Tue, 16 Nov 2010 22:20:39 +0100
  274. apt-listchanges (2.85.5) unstable; urgency=low
  275. * Update the program French PO file, and revert the wrongly changed
  276. Debconf PO file; really Closes: #593224
  277. -- Sandro Tosi <morph@debian.org> Mon, 20 Sep 2010 23:11:15 +0200
  278. apt-listchanges (2.85.4) unstable; urgency=low
  279. [ Pierre Habouzit ]
  280. * make apt-listchange interruptible by ^C (Closes: #456271)
  281. * Use pythonism to guess the encoding to use (Closes: #511448) -
  282. thanks to Joerg Woelke <joewoe@fsmail.de>
  283. [ Sandro Tosi ]
  284. * Updated French translation; thanks to Christian Perrier; Closes:
  285. #593224
  286. -- Sandro Tosi <morph@debian.org> Sun, 19 Sep 2010 15:19:16 +0200
  287. apt-listchanges (2.85.3) unstable; urgency=low
  288. [ Pierre Habouzit ]
  289. * Make apt-listchanges guess about binNMUs again; Closes: 590989
  290. [ Sandro Tosi ]
  291. * debian/README.Debian
  292. - reported the workaround used to recover from situation like in #587952;
  293. we can't do anything else but to document it, so this also Closes: #587952
  294. * debian/control
  295. - remove Matt Zimmerman from Uploaders: thx for your work! Closes: #521476
  296. -- Sandro Tosi <morph@debian.org> Fri, 06 Aug 2010 17:13:16 +0200
  297. apt-listchanges (2.85.2) unstable; urgency=low
  298. * apt-listchanges no longer supposes that binary packages all have the same
  299. version for a given source package; Closes: #525978, #491306
  300. -- Pierre Habouzit <madcoder@debian.org> Mon, 19 Jul 2010 11:15:50 +0200
  301. apt-listchanges (2.85.1) unstable; urgency=low
  302. * apt-listchanges/DebianFiles.py
  303. - add an empty line (if missing) only if there's something to display;
  304. thanks to Julien Cristau for the report; Closes: #587957
  305. -- Sandro Tosi <morph@debian.org> Mon, 05 Jul 2010 21:02:52 +0200
  306. apt-listchanges (2.85) unstable; urgency=low
  307. * debian/control
  308. - added myself to Uploaders
  309. - removed b-d-i for python-dev, not needed for building the package
  310. - bump Standards-Version to 3.9.0 (no changes needed)
  311. * debian/{config, preinst}
  312. - add 'set -e' explicitly, and not only in the shebang
  313. * po/ar.po
  314. - added Arabic translation; thanks to Ossama Khayat for the report and
  315. patch; Closes: #501636
  316. * apt-listchanges.py, apt-listchanges/DebianFiles.py, debian/control
  317. - update for upcoming python-apt API transition; thanks to Julian Andres
  318. Klode for the report and patch; Closes: #572062
  319. * debian/copyright
  320. - refer to GPL-2 local license file
  321. * apt-listchanges.es.sgml
  322. - use escape sequence instead of apex in 'save_seen' description
  323. * debian/README.Debian
  324. - fix a typo; thanks to Paul Menzel for report and patch; Closes: #516141
  325. * po/et.po
  326. - updated Estonian translation; thanks to Ivar Smolin for the report and
  327. patch; Closes: #576325
  328. * apt-listchanges/DebianFiles.py
  329. - add a blank line at the end of NEWS entry (if it's not already there);
  330. thanks to Martin Michlmayr for the report and to Morita Sho for the patch;
  331. Closes: #247356
  332. -- Sandro Tosi <morph@debian.org> Fri, 02 Jul 2010 00:27:28 +0200
  333. apt-listchanges (2.84) unstable; urgency=low
  334. [ Christian Perrier ]
  335. * Fix typo in Polish translation. Closes: #510618
  336. [ Thadeu Lima de Souza Cascardo ]
  337. * Introduce the --reverse option to list entries in the reverse order.
  338. Closes: #172113:
  339. -- Thadeu Lima de Souza Cascardo <cascardo@minaslivre.org> Mon, 04 Jan 2010 12:17:21 -0200
  340. apt-listchanges (2.83+nmu1) unstable; urgency=low
  341. * Non-maintainer upload with maintainer's agreement
  342. (he likes living dangerously)
  343. [ Pierre Habouzit ]
  344. * Apt-listchanges moves to collab-maint.
  345. [ Christian Perrier ]
  346. * Catalan (Jordi Mallach). Closes: #548654
  347. * Fix pending l10n issues. Program translations:
  348. - Simplified Chinese. Closes: #501042
  349. - Brazilian Portuguese. Closes: #501637
  350. * Fix pending l10n issues. Debconf translations:
  351. - Brazilian Portuguese (Felipe Augusto van de Wiel (faw)).
  352. Closes: #501639
  353. * Add ${misc:Depends} to dependencies to properly
  354. deal with dependencies implied by some debhelper
  355. utilities. As a consequence, drop the dependency on
  356. debconf.
  357. -- Christian Perrier <bubulle@debian.org> Tue, 29 Sep 2009 23:16:26 +0200
  358. apt-listchanges (2.83) unstable; urgency=low
  359. [ Christian Perrier ]
  360. * Fix extra space before exclamation mark in an error
  361. message. Translations unfuzied.
  362. * Fix extra question mark in one string. Translations
  363. unfuzzied and fixed when they had two question marks too.
  364. * Programs translation updates:
  365. - French. Closes: #469248
  366. - Estonian. Closes: #500979
  367. - Basque. Closes: #501010
  368. - Traditional Chinese. Closes: #501034
  369. - Simplified Chinese. Closes: #501039
  370. - Swedish. Closes: #501051
  371. - Japanese. Closes: #501530
  372. - Czech. Closes: #501212
  373. - Italian. Closes: #501238
  374. - German. Closes: #501265
  375. - Russian. Closes: #501469
  376. - Portuguese. Closes: #501494
  377. - Polish. Closes: #501496
  378. - Dutch. Closes: #501621
  379. * Debconf translations:
  380. - Swedish. Closes: #492092
  381. - Simplified Chinese. Closes: #501039
  382. - Polish. Closes: #501296
  383. * Russian. Closes: #501469
  384. [ Pierre Habouzit ]
  385. * Fix the Vcs-* header to add the missing "apps/" in it.
  386. * Thanks a lot to Christian for his invaluable help and the 23 patches he
  387. sent me.
  388. -- Pierre Habouzit <madcoder@debian.org> Thu, 09 Oct 2008 11:29:41 +0200
  389. apt-listchanges (2.82) unstable; urgency=high
  390. * fix a potential security issue in apt-listchanges import paths, thanks for
  391. Felipe Sateler for the heads up.
  392. * update de.po thanks to Helge Kreutzmann (Closes: 456238).
  393. -- Pierre Habouzit <madcoder@debian.org> Mon, 14 Jan 2008 09:39:05 +0100
  394. apt-listchanges (2.81) unstable; urgency=low
  395. * debian/control: Bump priority to standard, as discussed on debian-devel,
  396. and don't recommend python-{glade,gtk} because of that (Closes: 459258).
  397. * Check for the .glade file existence before passing it to glade, to avoid
  398. spurious error messages (Closes: 454161).
  399. * Update po/eu.po from Piarres Beobide (Closes: 419673 for real this time).
  400. -- Pierre Habouzit <madcoder@debian.org> Tue, 08 Jan 2008 23:48:11 +0100
  401. apt-listchanges (2.80) unstable; urgency=low
  402. [ Christian Perrier ]
  403. * Debconf templates and debian/control reviewed by the debian-l10n-
  404. English team as part of the Smith review project. Closes: #455772
  405. * [Debconf translation updates]
  406. * Japanese. Closes: #455864
  407. * Basque. Closes: #455885
  408. * Galician. Closes: #455984
  409. * German. Closes: #456238
  410. * Portuguese. Closes: #456364
  411. * Norwegian Bokmål. Closes: #456397
  412. * Spanish. Closes: #456412
  413. * Italian. Closes: #456511
  414. * Vietnamese. Closes: #457310
  415. * Czech. Closes: #457676
  416. * Finnish. Closes: #457779
  417. * Russian. Closes: #457874
  418. * Dutch; Flemish. Closes: #458310
  419. * French. Closes: #458513
  420. * Japanese. Closes: #455864
  421. -- Pierre Habouzit <madcoder@debian.org> Sun, 06 Jan 2008 11:44:16 +0100
  422. apt-listchanges (2.79) unstable; urgency=medium
  423. * Force locale to C if python does not groks the locale at all
  424. (Closes: 455811)
  425. * Force unicode for subject (Closes: 455704).
  426. -- Pierre Habouzit <madcoder@debian.org> Wed, 12 Dec 2007 11:33:34 +0100
  427. apt-listchanges (2.78) unstable; urgency=medium
  428. * Stupid typo in the apt_listchanges module, for the mail front-end.
  429. (Closes: 455474).
  430. -- Pierre Habouzit <madcoder@debian.org> Mon, 10 Dec 2007 17:45:36 +0100
  431. apt-listchanges (2.77) unstable; urgency=low
  432. * Clean up debian/preinst: removing the pyo/pyc was needed for sarge -> etch
  433. upgrades only.
  434. * Bump Standards-Version to 3.7.3, no changes required.
  435. * Fix the email header encoding issue, it's not a python bug after all
  436. (Closes: 391014).
  437. * Document the gtk frontend in the manpage (Closes: 452500).
  438. * Fix the postrm that checked for ucf presence the wrong way
  439. (Closes: 440384).
  440. -- Pierre Habouzit <madcoder@debian.org> Sun, 09 Dec 2007 18:03:50 +0100
  441. apt-listchanges (2.76) unstable; urgency=low
  442. * Add patch from Michael Vogt to support launchpad bug numbers
  443. (Closes: 451995, 454581).
  444. * Add patch from Felipe Sateler to have a better title to html output
  445. (Closes: 431501).
  446. * Add po/eu.po from Piarres Beobide (Closes: 419673).
  447. * Update debian/po/fr.po thanks to Christian Perrier (Closes: 452482).
  448. * Update debian/po/nl.po thanks to Frans Pop (Closes: 453932).
  449. -- Pierre Habouzit <madcoder@debian.org> Thu, 06 Dec 2007 14:54:58 +0100
  450. apt-listchanges (2.75) unstable; urgency=low
  451. * Recode po files in utf-8 (Closes: 391014).
  452. * Fail gracefully if the database cannot be loaded (Closes: 444478).
  453. * Fail gracefully if on Ubuntu with braindead locales (Closes: 431364).
  454. * apt-listchanges on Debian gains a new gtk front-end (Closes: 451845),
  455. thanks to Michael Vogt.
  456. * debian/control: add the vcs-* headers so that noone can pretend he cannot
  457. send patches.
  458. * fix wrong path in the .es documentation (good eyes lintian !).
  459. -- Pierre Habouzit <madcoder@debian.org> Sun, 18 Nov 2007 23:40:24 +0100
  460. apt-listchanges (2.74) unstable; urgency=low
  461. * binNMUs were not shown because we tracked source packages versions, and
  462. not binary package ones (Closes: 423371).
  463. * Document apt-listchanges internals (Closes: 411075).
  464. -- Pierre Habouzit <madcoder@debian.org> Mon, 18 Jun 2007 15:22:43 +0100
  465. apt-listchanges (2.73.3) unstable; urgency=low
  466. * It seems that even if present, /dev/tty cannot always be opened, fall back
  467. to a brute force try/except block (Closes: 311919).
  468. -- Pierre Habouzit <madcoder@debian.org> Fri, 11 May 2007 23:12:05 +0200
  469. apt-listchanges (2.73.2) unstable; urgency=low
  470. * Only open /dev/tty if present (Closes: 311919), properly this time.
  471. -- Pierre Habouzit <madcoder@debian.org> Thu, 19 Apr 2007 23:42:19 +0200
  472. apt-listchanges (2.73.1) unstable; urgency=low
  473. * Only open /dev/tty if present (Closes: 311919).
  474. -- Pierre Habouzit <madcoder@debian.org> Thu, 19 Apr 2007 12:07:47 +0200
  475. apt-listchanges (2.73) unstable; urgency=low
  476. * Fix a problem in how configuration file is handled with ucf, thanks to
  477. Franck Küster (Closes: 393470, 393886, 412925).
  478. * Fix a problem with applications running in a terminal, thanks to Justin
  479. Pryzby (Closes: 343423).
  480. * Fix buggy man pages wrongly stating that --which=both was default whereas
  481. it's --which=news (Closes: 417931):
  482. + [es] update thanks to Martin Ferrari.
  483. + [it] update thanks to Francesco Pedrini.
  484. -- Pierre Habouzit <madcoder@debian.org> Wed, 11 Apr 2007 01:34:18 +0200
  485. apt-listchanges (2.72.5) unstable; urgency=low
  486. * Fix a typo in the preinst: .pyo -> .pyc, thanks to Marc Brockschmidt.
  487. -- Pierre Habouzit <madcoder@debian.org> Sun, 18 Feb 2007 23:39:32 +0100
  488. apt-listchanges (2.72.4) unstable; urgency=low
  489. * Big l10n upload, thanks to many contributors, especially Christian
  490. Perrier, Frans Pop and Jens Seidel. (Closes: 411340, 410544).
  491. * preinst: rm -f ... || true is useless.
  492. -- Pierre Habouzit <madcoder@debian.org> Sun, 18 Feb 2007 21:18:02 +0100
  493. apt-listchanges (2.72.2) unstable; urgency=low
  494. * Remove useless pt_PT.po (Closes: 408880).
  495. * Update nl.po thans to Frans Pop (Closes: 410544).
  496. * Remove old .pyo/.pyc from quite older packages (Closes: 397107).
  497. -- Pierre Habouzit <madcoder@debian.org> Tue, 13 Feb 2007 10:43:11 +0100
  498. apt-listchanges (2.72.1) unstable; urgency=low
  499. * Add Czech debconf messages thanks to Miroslav Kure (Closes: 407827).
  500. -- Pierre Habouzit <madcoder@debian.org> Sun, 21 Jan 2007 21:09:00 +0100
  501. apt-listchanges (2.72) unstable; urgency=high
  502. * Fix missing import in DebianFiles.py, thanks to Julián Hernández Gómez.
  503. (Closes: 400744).
  504. -- Pierre Habouzit <madcoder@debian.org> Tue, 28 Nov 2006 15:41:16 +0100
  505. apt-listchanges (2.71) unstable; urgency=low
  506. [ Fixes ]
  507. * Hack function _(x) so that it works even with LANGUAGE set and LC_CTYPE
  508. set to C (Closes: #397108). It can lead to curious half translated
  509. messages, but say that to python locale handling that is completely
  510. braindead.
  511. * Update program's fr.po thanks to Christian Perrier (Closes: 393621).
  512. * Update portuguese debconf template translations thanks to Rui Branco
  513. (Closes: 396643).
  514. [ Packaging ]
  515. * Simplify debian/config from old cruft from 1.x series.
  516. * Update debian/copyright.
  517. [ Library ]
  518. * DebianControl* classes are renamed into Control*.
  519. * Move Packages, Changes classes (and Control* ones) into DebianFiles.py.
  520. * Move Config to ALCConfig.py.
  521. * Add copyright statements in .py's.
  522. -- Pierre Habouzit <madcoder@debian.org> Tue, 28 Nov 2006 00:21:20 +0100
  523. apt-listchanges (2.70) unstable; urgency=low
  524. [ Damien Laniel ]
  525. * Fixed the postrm script to remove /etc/apt/listchanges.conf on purge
  526. and rewrote the test for ucf existence (was using "which" which isn't
  527. essential)
  528. * Fixed the postinst script not to use ucf if /etc/apt/listchanges.conf
  529. doesn't exist, ie was purged
  530. [ Pierre Habouzit ]
  531. * Use Damien's patch that also should fix the `code 10 ` postinst problem.
  532. (Closes: 391628, 390997)
  533. -- Pierre Habouzit <madcoder@debian.org> Sat, 7 Oct 2006 22:00:54 +0200
  534. apt-listchanges (2.69) unstable; urgency=low
  535. * Final upload targetting etch, the l10n upload:
  536. + fr.po thanks to Christian Perrier (Closes: 390979),
  537. + es.po thanks to Javier Fernández-Sanguino Peña (Closes: 391114).
  538. -- Pierre Habouzit <madcoder@debian.org> Sat, 7 Oct 2006 17:39:53 +0200
  539. apt-listchanges (2.68) unstable; urgency=low
  540. * Fix the mail instantiation, thanks to Daniel Lublin (Closes: 391016).
  541. -- Pierre Habouzit <madcoder@debian.org> Wed, 4 Oct 2006 12:06:34 +0200
  542. apt-listchanges (2.67) unstable; urgency=low
  543. * Fix confirm behaviour, broken in 2.65 upload (Closes: 390784).
  544. -- Pierre Habouzit <madcoder@debian.org> Tue, 3 Oct 2006 10:01:27 +0200
  545. apt-listchanges (2.66) unstable; urgency=low
  546. * Remove cruft in postinst for versions older than sarge ones.
  547. * Remove /var/lib/apt/listchanges.db at purge (Closes: 319603).
  548. * Use 8bit encoding for the mails, so that they are greppable again
  549. (Closes: 211714)
  550. * If we are hit by a signal, abort with exit 10, making the upgrade fail.
  551. (Closes: 338717, 301604)
  552. -- Pierre Habouzit <madcoder@debian.org> Mon, 2 Oct 2006 23:09:47 +0200
  553. apt-listchanges (2.65) unstable; urgency=low
  554. * Change confirm semantics: negative value means confirmation cannot be run.
  555. Assume we don't want to save our state in that case, and proceed as usual
  556. (Closes: 311919, 355399).
  557. * Use more clever regexps (even sub regexps!) to recognize Closes: 316531
  558. correctly (the recursion is a courtesy of Christoph Berg).
  559. -- Pierre Habouzit <madcoder@debian.org> Thu, 28 Sep 2006 14:21:41 +0200
  560. apt-listchanges (2.64) unstable; urgency=low
  561. * Be less strict on rfc822-like parse, accept continuation lines starting
  562. with \t (Closes: 388861).
  563. * Italian translations thanks to Luca Monducci (Closes: 384805):
  564. + man page,
  565. + debconf template,
  566. + program translations.
  567. * French translations thanks to Christian Perrier
  568. (Closes: 386808, 386807, 387223).
  569. -- Pierre Habouzit <madcoder@debian.org> Sun, 24 Sep 2006 16:15:59 +0200
  570. apt-listchanges (2.63) unstable; urgency=low
  571. * When run in locale 'C', the code fails because getlocale()[1] is None.
  572. default to 'ascii' in that case, that is the sole sane choice, user has to
  573. set his locale if that does not suits him. (Closes: #384413, #384574).
  574. -- Pierre Habouzit <madcoder@debian.org> Sat, 26 Aug 2006 03:45:58 +0200
  575. apt-listchanges (2.62) unstable; urgency=low
  576. * templates translations:
  577. + update gl.po thanks to Jacobo Tarrio.
  578. + update ca.po thanks to Jordi Mallach (Closes: #383980).
  579. + update pt.po thanks to Rui Pedro.
  580. + update nl.po thanks to Bart Cornelis.
  581. + update fr.po thanks to Denis Barbier.
  582. * More python simplifications.
  583. * Fix bug in html generation (generated html was obviously invalid).
  584. * Only Recommend a MTA as it's not needed using pager. (Closes: #384165)
  585. -- Pierre Habouzit <madcoder@debian.org> Wed, 23 Aug 2006 13:11:59 +0200
  586. apt-listchanges (2.62~experimental1) experimental; urgency=low
  587. * Experimental upload as there is quite many changes, and that I'm waiting
  588. for more translations to come in.
  589. * debian/templates, use Christian Perrier's patch to make templates more
  590. compliant to usual practices (Closes: #346053).
  591. + update sv.po thanks to Daniel Nylander.
  592. + add pt.po thanks to Rui Pedro.
  593. + update fi.po thanks to Tommi Vainikainen.
  594. + update da.po thanks to Claus Hindsgaul (Closes: #382537).
  595. + update ja.po thanks to Kenshi Muto (Closes: #382600).
  596. + update vi.po thanks to Clytie Siddall.
  597. + update de.po thanks to Helge Kreutzmann.
  598. + update es.po thanks to Ricardo Mones.
  599. + update zh_TW.po thanks to Asho Yeh.
  600. * Encoding problems:
  601. + Switch to python2.4 to use lgettext instead of gettext
  602. (Closes: #238203, #309470, #318581).
  603. + Use current locale to display the changelogs, based on a patch from
  604. Michael Piefel (Closes: #199318, #215045).
  605. + Specify encoding for the html generation (from the same patch).
  606. + Deal with badly encoded changelogs (assume latin1).
  607. * Be sure that seen_new is always defined (Closes: #294420).
  608. * Ignore when README.Debian/changelog.gz is a directory, just print a
  609. warning (Closes: #362896).
  610. * Don't exit because quiet level is '2', use mail instead (Closes: #309262).
  611. * Various code simplifications (using python2.4-isms).
  612. * Make apt-listchanges modules private, move things to apt-listchanges
  613. instead of apt_listchanges directory.
  614. -- Pierre Habouzit <madcoder@debian.org> Sun, 20 Aug 2006 19:10:25 +0200
  615. apt-listchanges (2.61) unstable; urgency=low
  616. * Packaging:
  617. + add a dependency on mail-transport-agent (Closes: #280892, #327590).
  618. + update depends upon debconf (Closes: #331748).
  619. + move apt-listchanges away if uninstalled, reinstate it in postinst
  620. (Closes: #237334, #262682)
  621. * l10n:
  622. + update de.po, thanks to Jens Seidel (Closes: #313665).
  623. + Fix error in french manpage PAGER -> BROWSER (Closes: #367624).
  624. * Features:
  625. + use /usr/bin/hostname instead of gethostname that uses uname, so that
  626. different chroots have different names (Closes: #257734).
  627. -- Pierre Habouzit <madcoder@debian.org> Thu, 10 Aug 2006 21:28:36 +0200
  628. apt-listchanges (2.60) unstable; urgency=low
  629. * Change of maintainer (and upstream):
  630. + put myself as maintainer.
  631. + put Matt into Uploaders (thanks for all your work on this package !).
  632. + ack NMUs (Closes: #251084, 259171, 260295, 260534, 262603, 280323,
  633. 283357, 285440, 292739, 293594, 293594, 294948, 375300, 375953, 375956,
  634. 380759)
  635. + update debian/copyright accordingly.
  636. * Python policy last touch:
  637. + do not use dh_python anymore.
  638. + .pyc are handled correctly (Closes: #133306).
  639. * Bump DH_COMPAT to 5.
  640. * Ensure ucf is here before purging in postrm (Closes: #315174).
  641. * apt-listchanges new translations:
  642. + Traditional Chinese thanks to Kanru Chen (Closes: #297242).
  643. + Czech thanks to Miroslav Kure (Closes: #327508).
  644. * apt-listchanges templates po:
  645. + Portuguese templates thanks to Miguel Figueiredo (Closes: #330195).
  646. + Swedish update thanks to Daniel Nylander (Closes: #332443, 375748).
  647. + Japanese update thanks to Junichi Uekawa (Closes: #318499).
  648. + Vietnamese thanks to Clytie Siddall (Closes: #308744).
  649. * BTS Patches:
  650. + Make more strings translateable thanks to Junichi too (Closes: #318496).
  651. + Fix pot file generation (Closes: #318498, 302548).
  652. + Fix frontend=none behaviour thanks to Colin Watson (Closes: #341845).
  653. -- Pierre Habouzit <madcoder@debian.org> Thu, 10 Aug 2006 18:25:39 +0200
  654. apt-listchanges (2.59-0.4) unstable; urgency=low
  655. * Non-maintainer upload with maintainer permission.
  656. * Update package to the new Python policy (Closes: #380759).
  657. * Bumping standards version to 3.7.2.
  658. * Put all the modules into an apt_listchange semi-public module.
  659. -- Pierre Habouzit <madcoder@debian.org> Thu, 3 Aug 2006 08:31:17 +0200
  660. apt-listchanges (2.59-0.3) unstable; urgency=low
  661. * Non-maintainer upload.
  662. * add --wildcards to tar call (Closes: #375300, 375953, 375956).
  663. * Fix B-D-I/B-D wrt clean: target.
  664. * Fix old FSF address.
  665. -- Pierre Habouzit <madcoder@debian.org> Sun, 2 Jul 2006 16:51:25 +0200
  666. apt-listchanges (2.59-0.2) unstable; urgency=medium
  667. * Non-maintainer upload for fixing l10n issues. Made
  668. with maintainer's agreement
  669. * Debconf translations:
  670. - Italian really added
  671. - Catalan updated. Closes: #292739
  672. - Galician updated. Closes: #294948
  673. - Polish updated.
  674. - Spanish updated.
  675. * Program translations:
  676. - Corrections to Spanish. Closes: #280323
  677. - One fuzzy strong corrected in Catalan
  678. - Remove Brazilian which was indeed a debconf translation
  679. - Moved Russian to debconf translation. It was in the programs translation
  680. directory by mistake
  681. -- Christian Perrier <bubulle@debian.org> Sun, 13 Feb 2005 21:36:18 +0100
  682. apt-listchanges (2.59-0.1) unstable; urgency=low
  683. * Non-maintainer upload for fixing l10n issues. Made
  684. with maintainer's agreement
  685. * Program translations:
  686. - The French mess is now sorted out. Closes: #285440, #260534
  687. - Fix the headers of the Finnish and Brazilian translations
  688. - German corrected. Closes: #293594
  689. * Debconf translations:
  690. - Brazilian Portuguese fixed. Closes: #262603
  691. - Czech updated. Closes: #259171
  692. - Dutch updated. Closes: #260295
  693. - Danish updated. Closes: #251084
  694. - Simplified Chinese updated
  695. - Traditional Chinese added
  696. - Italian added
  697. - German corrected. Closes: #293594
  698. * Documentation translations:
  699. - French added. Closes: #283357
  700. * Fix wrong UTF-8 encoding in the 1.25 changelog entry
  701. -- Christian Perrier <bubulle@debian.org> Sat, 29 Jan 2005 09:46:43 +0100
  702. apt-listchanges (2.59) unstable; urgency=low
  703. * Updated French translation from Christian Perrier (Closes: #260534)
  704. -- Matt Zimmerman <mdz@debian.org> Thu, 20 Jan 2005 10:09:09 -0800
  705. apt-listchanges (2.58) unstable; urgency=low
  706. * Correctly treat the quiet value from apt as an integer (Closes: #284982)
  707. * Updated fr.po from Loic Le Loarer (Closes: #285440, #260534)
  708. -- Matt Zimmerman <mdz@debian.org> Mon, 10 Jan 2005 18:03:37 -0800
  709. apt-listchanges (2.57) unstable; urgency=low
  710. * Fix typo in French translation of continuation prompt (Closes: #259465)
  711. * Honor the meaning of APT's quiet variable when its value is >1
  712. (suppress all ouptut)
  713. -- Matt Zimmerman <mdz@debian.org> Sat, 13 Nov 2004 17:32:11 -0800
  714. apt-listchanges (2.56) unstable; urgency=low
  715. * Another Danish debconf translation update from Claus Hindsgaul <claus_h@image.dk>
  716. (Closes: #246863)
  717. * Updated Japanese translation of debconf templates from Kenshi Muto <kmuto@debian.org>
  718. (Closes: #244684)
  719. * Updated French translation of debconf templates from Denis Barbier <barbier@debian.org>
  720. (Closes: #248523)
  721. * Updated German translation of debconf templates from Helge Kreutzmann <kreutzm@itp.uni-hannover.de>
  722. (Closes: #252051)
  723. * Updated French translation of message catalog from Christian Perrier <bubulle@debian.org>
  724. (Closes: #254819)
  725. -- Matt Zimmerman <mdz@debian.org> Sun, 27 Jun 2004 18:10:01 -0700
  726. apt-listchanges (2.55) unstable; urgency=low
  727. * Corrected Danish translation of debconf templates from Claus Hindsgaul
  728. <claus_h@image.dk>
  729. * Updated German translation of debconf templates from Florian Ernst <florian@uni-hd.de>
  730. (Closes: #244132)
  731. * Depends: debianutils (>= 2.0.2) because that is when sensible-browser
  732. was added, and sensible-browser is used by the browser frontend
  733. (Closes: #246508)
  734. * Run debconf-updatepo
  735. -- Matt Zimmerman <mdz@debian.org> Thu, 29 Apr 2004 20:33:33 -0700
  736. apt-listchanges (2.54) unstable; urgency=low
  737. * Spanish man page update from Ruben Porras <nahoo82@telefonica.net>
  738. (Closes: #239909)
  739. * Danish translation of message catalog from Claus Hindsgaul <claus_h@image.dk>
  740. * Move Danish translation of debconf templates into the correct place
  741. (Closes: #239201)
  742. -- Matt Zimmerman <mdz@debian.org> Mon, 5 Apr 2004 08:41:19 -0700
  743. apt-listchanges (2.53) unstable; urgency=low
  744. * Don't bother twiddling the 'seen' flag (Closes: #240915)
  745. -- Matt Zimmerman <mdz@debian.org> Mon, 29 Mar 2004 16:32:35 -0800
  746. apt-listchanges (2.52) unstable; urgency=low
  747. * Danish translation of debconf templates from Claus Hindsgaul <claus_h@image.dk>
  748. (Closes: #239201)
  749. * Update description to reflect news capabilities (Closes: #240786)
  750. * When upgrading from 2.51 or earlier, seed the apt-listchanges/which
  751. debconf question to "both", rather than the new default of "news", so
  752. that users upgrading from older versions get the old default, while
  753. new users get the new default
  754. -- Matt Zimmerman <mdz@debian.org> Mon, 29 Mar 2004 10:00:23 -0800
  755. apt-listchanges (2.51) unstable; urgency=low
  756. * Restore lost built-in default for frontend; this broke command-line
  757. invocation (Closes: #237879)
  758. -- Matt Zimmerman <mdz@debian.org> Sat, 13 Mar 2004 16:05:59 -0800
  759. apt-listchanges (2.50) unstable; urgency=low
  760. * Update debhelper compatibility level to 4 and remove debian/conffiles
  761. * Use debian/compat rather than DH_COMPAT
  762. * Standards-Version: 3.6.1 (no changes needed)
  763. * Add new debconf question to ask whether to display news, changelogs or
  764. both. Ask it at low priority, and default to news (Closes: #222362)
  765. * Adjust priorities and defaults of debconf questions to be less
  766. intrusive, and oriented towards a wider range of users:
  767. - Reduce priority of apt-listchanges/save-seen to low (almost
  768. everybody seems to want the default)
  769. - Reduce priority of apt-listchanges/email-address to low
  770. (still mails root by default; scream if you think this should remain
  771. medium)
  772. - Reduce priority of apt-listchanges/confirm to low, and change the
  773. default to false (no confirmation prompt)
  774. - End result: an installation at priority medium or higher will
  775. ask only one question (apt-listchanges/frontend), and display only
  776. NEWS.Debian items to the user on upgrades, with no confirmation
  777. prompt. Feedback welcome.
  778. * Minor clarifications to some templates based on display of news as
  779. well as changelogs. Mostly s/changelogs/changes/
  780. * With these changes, I think apt-listchanges would be suitable for
  781. priority: standard
  782. -- Matt Zimmerman <mdz@debian.org> Sat, 13 Mar 2004 15:38:29 -0800
  783. apt-listchanges (2.49) unstable; urgency=low
  784. * Remove ugly ucf/debconf workaround, use ucf --debconf-ok and depend on
  785. ucf >= 0.28 (Closes: #237181)
  786. -- Matt Zimmerman <mdz@debian.org> Wed, 10 Mar 2004 08:16:41 -0800
  787. apt-listchanges (2.48) unstable; urgency=low
  788. * Updated pt_BR debconf translations from Andre Luis Lopes <andrelop@debian.org>
  789. (Closes: #235383)
  790. * Display news and changes in separate frontend invocations, and in
  791. separate email messages (Closes: #204175)
  792. -- Matt Zimmerman <mdz@debian.org> Mon, 8 Mar 2004 20:45:00 -0800
  793. apt-listchanges (2.47) unstable; urgency=low
  794. * Fix the progress meter not to blow up if nothing was displayed
  795. -- Matt Zimmerman <mdz@debian.org> Fri, 27 Feb 2004 13:36:44 -0800
  796. apt-listchanges (2.46) unstable; urgency=low
  797. * Implement a --profile= command line option to select between different
  798. profiles in /etc/apt/listchanges.conf (Closes: #203395)
  799. * Get rid of the --version command line option; I always forgot to
  800. update it and am too lazy to make it automatic
  801. * Updated Finnish translation of debconf templates from Tommi
  802. Vainikainen <thv+debian@iki.fi> (Closes: #226851)
  803. * Simplified Chinese translation of debconf templates and message
  804. catalog from "Carlos Z.F. Liu" <carlos_liu@yahoo.com>
  805. (Closes: #230814)
  806. * Make the frontends more customizable by passing in data from the
  807. config file. You can specify a pager for the pager frontend, a
  808. terminal emulator for the xterm frontend, a web browser for the
  809. browser frontend (Closes: #206811), or an email address to mail
  810. changelogs to (Closes: #203395)
  811. * Print a brief message letting the user know what's going on when
  812. aborting based on the confirmation prompt (Closes: #202210)
  813. * Handle the KeyboardInterrupt exception (Closes: #139265)
  814. * Don't send empty email if there are no changes and --which=news is
  815. specified
  816. * Spanish man page update from Ruben Porras <nahoo82@telefonica.net>
  817. (Closes: #231582)
  818. * Run debconf-updatepo
  819. -- Matt Zimmerman <mdz@debian.org> Thu, 26 Feb 2004 23:01:49 -0800
  820. apt-listchanges (2.45) unstable; urgency=low
  821. * Oops, only exit if we actually forked a child
  822. -- Matt Zimmerman <mdz@debian.org> Thu, 8 Jan 2004 12:25:33 -0800
  823. apt-listchanges (2.44) unstable; urgency=low
  824. * Don't forget to have the child exit after it's finished, when running
  825. a command in the background (Closes: #226631)
  826. -- Matt Zimmerman <mdz@debian.org> Wed, 7 Jan 2004 16:34:42 -0800
  827. apt-listchanges (2.43) unstable; urgency=low
  828. * Clean up a bunch of pending stuff so that some new development can begin
  829. * Fix the documentation to reflect the removal of support for
  830. apt-listchanges-specific BROWSER environment variables; this is all
  831. done in the usual way now, using sensible-browser.
  832. * Updated Polish translation of debconf templates from Bartosz
  833. Zapalowski <bartek@klepisko.eu.org> (Closes: #208956)
  834. * Fix --which option to actually work, and to match the documentation
  835. (Closes: #215369)
  836. * Russian translation of gettext catalog from Ilgiz Kalmetev <translator@ilgiz.pp.ru>
  837. (Closes: #214383)
  838. * Update copyright years
  839. * Updated Spanish translation of man page from Ruben Porras <nahoo82@telefonica.net>
  840. (Closes: #218742)
  841. -- Matt Zimmerman <mdz@debian.org> Wed, 7 Jan 2004 09:25:09 -0800
  842. apt-listchanges (2.42) unstable; urgency=low
  843. * Fix the mail frontend, broken in 2.40 (Closes: #205925)
  844. -- Matt Zimmerman <mdz@debian.org> Sun, 17 Aug 2003 12:04:01 -0400
  845. apt-listchanges (2.41) unstable; urgency=low
  846. * Don't print headers for packages where there are no changes to display
  847. (Closes: #205858)
  848. -- Matt Zimmerman <mdz@debian.org> Sun, 17 Aug 2003 00:54:23 -0400
  849. apt-listchanges (2.40) unstable; urgency=low
  850. * Updated Spanish translation of debconf templates from Carlos Valdivia
  851. Yag?e <valyag@dat.etsit.upm.es> (Closes: #203993)
  852. * Updated Dutch translation of debconf templates from cobaco
  853. <cobaco@linux.be> (Closes: #204700)
  854. * Updated Spanish man page from cvs.d.o/manpages/spanish
  855. (Closes: #203763)
  856. * Python 2.3 now provides secure temporary files with names. This means
  857. that we don't need to do any more pipe tricks to pass things into
  858. xterm, and we can get rid of the browser-pipe script. Depends: python
  859. (>= 2.3)
  860. - This also happens to fix some problems with non-xterm terminal
  861. emulators such as rxvt, which closed our pipe fd on use
  862. (Closes: #205323)
  863. -- Matt Zimmerman <mdz@debian.org> Fri, 15 Aug 2003 21:41:02 -0400
  864. apt-listchanges (2.39) unstable; urgency=low
  865. * Ignore changelog files which don't look like Debian changelogs. This
  866. will provide a nicer failure condition for situations like #161325,
  867. where changelog data is not actually available (but we previously
  868. thought it was)
  869. * Don't display NEWS headers in the case where a NEWS.Debian was present
  870. but contained no news (Closes: #202143)
  871. -- Matt Zimmerman <mdz@debian.org> Tue, 29 Jul 2003 19:42:46 -0400
  872. apt-listchanges (2.38) unstable; urgency=low
  873. * Add Spanish man page from Ruben Porras <nahoo82@telefonica.net>
  874. (Closes: #195445)
  875. * Handle the case where a package contains multiple changelogs in
  876. different subdirectories of /usr/share/doc(!). e2fsprogs does this:
  877. it Provides: libcomerr2 and libss2 and contains
  878. /usr/share/doc/{libcomerr2,libss2}/changelog.Debian.gz. I have no
  879. idea why it does this, but there could be others, and it is easy
  880. enough to work around. Take the first one which we can open
  881. successfully (Closes: #201152)
  882. -- Matt Zimmerman <mdz@debian.org> Sun, 13 Jul 2003 18:45:30 -0400
  883. apt-listchanges (2.37) unstable; urgency=low
  884. * Fix urgency sorting (forgot to commit this for 2.36)
  885. * Fix a few small buglets (--which option and headers mode) from 2.36's
  886. reorg, spotted by Joe Drew
  887. * Add a bit about NEWS.Debian to the man page, courtesy of Joe Drew
  888. * Update man page to reflect /usr/share/doc as the standard location for
  889. the changelog
  890. * Move browser-pipe into /usr/share/apt-listchanges
  891. -- Matt Zimmerman <mdz@debian.org> Mon, 7 Jul 2003 19:12:02 -0400
  892. apt-listchanges (2.36) unstable; urgency=low
  893. * Refactor lots of code, with many tangible benefits
  894. - Make only a single pass through the deb, extracting all files we
  895. might be interested in, no matter how many different files we are
  896. interested in. This makes searching for NEWS.Debian free, and speeds
  897. up processing of packages with only native changelogs (no
  898. changelog.Debian
  899. - OOPify several interfaces
  900. - Use the gzip module rather than forking zcat (faster and cleaner)
  901. * Add 'which' option to specify whether news, changelogs or both should
  902. be displayed. This is still very primitive and everything is
  903. concatenated together.
  904. * Simplify urgency sorting
  905. * Remove import from __future__ which is unnecessary now that we require
  906. python 2.2 anyway
  907. -- Matt Zimmerman <mdz@debian.org> Mon, 7 Jul 2003 01:31:03 -0400
  908. apt-listchanges (2.35) unstable; urgency=low
  909. * Experimental NEWS.Debian support, based on a patch from Joe Drew.
  910. NEWS.Debian has the same format as changelog. Currently the only
  911. difference is that the NEWS.Debian entries for all packages are
  912. displayed ahead of any changelog entries. In the future, there will
  913. likely be an option to display only NEWS entries and skip changelogs,
  914. and different frontends will be able to display the news differently
  915. (Closes: #192089)
  916. -- Matt Zimmerman <mdz@debian.org> Wed, 2 Jul 2003 23:44:39 -0400
  917. apt-listchanges (2.34) unstable; urgency=low
  918. * "Abort abort abort!"
  919. * Give up trying to properly encode the character set of the subjects of
  920. emails we send out. Pretend everything is OK. (Closes: #180823)
  921. * This reopens #159122 (Subject is not encoded properly), but since it's
  922. archived, we'll call it #199318 now.
  923. * Make sure we overwrite the entire progress message when finished
  924. (Closes: #199268)
  925. * Use cStringIO to build up the big string for the HTML frontend. This
  926. should make it much faster with large strings (Closes: #186561)
  927. -- Matt Zimmerman <mdz@debian.org> Sun, 29 Jun 2003 21:55:41 -0400
  928. apt-listchanges (2.33) unstable; urgency=low
  929. * Remove obsolete debconf template
  930. * Updated Catalan translation of debconf templates and message catalog from
  931. Jordi Mallach <jordi@debian.org>
  932. * Japanese translation of debconf templates from Kenshi Muto
  933. <kmuto@debian.org> (Closes: #193708)
  934. * Try to solve the locale problems in a simpler way, by falling back to UTF-8 or
  935. US-ASCII (Closes: #185786)
  936. * If the browser doesn't understand pipes, give it /dev/tty as stdin
  937. when viewing a file: URL (Closes: #196282)
  938. -- Matt Zimmerman <mdz@debian.org> Sat, 21 Jun 2003 18:51:21 -0400
  939. apt-listchanges (2.32) unstable; urgency=low
  940. * The "make joeyh happy" release
  941. * Use ucf rather than debconf to handle prompting about changes to the
  942. configuration file (Closes: #144510)
  943. * Updated pt_BR translation of debconf templates from
  944. Andre Luis Lopes <andrelop@ig.com.br> (Closes: #183311)
  945. -- Matt Zimmerman <mdz@debian.org> Fri, 2 May 2003 21:26:33 -0400
  946. apt-listchanges (2.31) unstable; urgency=low
  947. * Really include updated Polish translation (Closes: #179071)
  948. * Depend on python >= 2.2 (Closes: #181062)
  949. -- Matt Zimmerman <mdz@debian.org> Sat, 15 Feb 2003 00:22:28 -0500
  950. apt-listchanges (2.30) unstable; urgency=low
  951. * Updated French translation of debconf templates from Denis Barbier
  952. <barbier@debian.org> (Closes: #179969)
  953. * Updated Polish translation of message catalogs from Michal Politowski
  954. <mpol@charybda.icm.edu.pl> (Closes: #179071)
  955. * Don't specify the encoding for the subject if no locale is set; many
  956. MUAs don't deal with this correctly (Closes: #179947)
  957. -- Matt Zimmerman <mdz@debian.org> Thu, 6 Feb 2003 21:30:40 -0500
  958. apt-listchanges (2.29) unstable; urgency=low
  959. * Resurrect the space between binary package names with --headers
  960. (Closes: #179856)
  961. -- Matt Zimmerman <mdz@debian.org> Tue, 4 Feb 2003 20:32:30 -0500
  962. apt-listchanges (2.28) unstable; urgency=low
  963. * Use a shell variable named something other than BROWSER in the
  964. browser-pipe script, so that it doesn't clobber a BROWSER environment
  965. variable and cause sensible-browser to call itself recursively.
  966. Isn't the bourne shell wonderful?
  967. (Closes: #179366)
  968. * Use the current locale's character set to encode the Subject header of
  969. email messages. Hopefully this matches the character set used by
  970. gettext, because gettext doesn't seem to want to tell me what it's
  971. using
  972. (Closes: #159122)
  973. -- Matt Zimmerman <mdz@debian.org> Sat, 1 Feb 2003 16:57:00 -0500
  974. apt-listchanges (2.27) unstable; urgency=low
  975. * Updated Brazilian Portuguese translation of message catalog from Andre Luis Lopes
  976. <andrelop@ig.com.br> (Closes: #177216)
  977. * Updated Catalan translations of debconf templates and message catalog
  978. from Jordi Mallach <jordi@debian.org> (Closes: #167284)
  979. I converted this to po-debconf, let me know if it did not turn out OK
  980. -- Matt Zimmerman <mdz@debian.org> Wed, 29 Jan 2003 21:55:50 -0500
  981. apt-listchanges (2.26) unstable; urgency=low
  982. * Add call to locale.setlocale(), which really Closes: #153760
  983. (which I called #174635 in the last version)
  984. -- Matt Zimmerman <mdz@debian.org> Wed, 29 Jan 2003 21:13:00 -0500
  985. apt-listchanges (2.25) unstable; urgency=low
  986. * Use sensible-browser from debianutils in the browser frontends if it
  987. is available
  988. * Add Danish translation of message catalog from Morten Brix Pedersen
  989. <morten@wtf.dk> (Closes: #174074)
  990. * Use locale.YESEXPR to localize the confirmation prompt
  991. (Closes: #174635)
  992. * Use python's email module to build the email message, which should
  993. MIMEify things correctly (Closes: #159122)
  994. -- Matt Zimmerman <mdz@debian.org> Wed, 29 Jan 2003 19:16:02 -0500
  995. apt-listchanges (2.24) unstable; urgency=low
  996. * Updated Catalan templates and catalog from Jordi Mallach
  997. <jordi@debian.org>
  998. * Switch to po-debconf. I hope this works... (Closes: #167287)
  999. * Add a note about multiple address specification in the email-address
  1000. template (Closes: #149478)
  1001. -- Matt Zimmerman <mdz@debian.org> Sun, 17 Nov 2002 00:32:11 -0500
  1002. apt-listchanges (2.23) unstable; urgency=low
  1003. * Fix Polish translation of confirmation prompt (Closes: #153758)
  1004. * Add Japanese translation of message catalog, thanks to Junichi Uekawa
  1005. <dancer@netfort.gr.jp> (Closes: #161477)
  1006. -- Matt Zimmerman <mdz@debian.org> Sat, 21 Sep 2002 19:14:34 -0400
  1007. apt-listchanges (2.22) unstable; urgency=low
  1008. * Fix confirmation prompt to be more conservative, and more like apt's
  1009. (Closes: #153476)
  1010. * Polish translation of debconf templates, thanks to Michal Politowski
  1011. <mpol@charybda.icm.edu.pl> (Closes: #153486)
  1012. * Polish translation of message catalogs, thanks to Michal Politowski
  1013. <mpol@charybda.icm.edu.pl> (Closes: #153487)
  1014. -- Matt Zimmerman <mdz@debian.org> Fri, 19 Jul 2002 20:55:15 -0400
  1015. apt-listchanges (2.21) unstable; urgency=low
  1016. * Fix a bug which caused an ugly error when running on a .deb which was
  1017. not installed, instead of just skipping it (Closes: #148348)
  1018. * Add a newline to the "Didn't find any valid .deb archives" error
  1019. message
  1020. -- Matt Zimmerman <mdz@debian.org> Wed, 29 May 2002 23:23:49 -0400
  1021. apt-listchanges (2.20) unstable; urgency=low
  1022. * Properly document use of the mail frontend (Closes: #147896)
  1023. * Updated Estonian translation of message catalogs from
  1024. Ivar Smolin <okul@linux.ee>
  1025. * Updated Spanish translation of message catalogs from
  1026. David Martinez Moreno <ender@debian.org> (Closes: #147568)
  1027. -- Matt Zimmerman <mdz@debian.org> Thu, 23 May 2002 22:36:14 -0400
  1028. apt-listchanges (2.19) unstable; urgency=low
  1029. * Updated Catalan translation of debconf templates from Antoni Bella
  1030. <bella5@teleline.es> (Closes: #142783)
  1031. * Catch broken pipe errors when closing the pipe, as well as when
  1032. writing to it (Closes: #143103)
  1033. * Treat urgency as case-insensitive (Closes: #144049)
  1034. * Handle 'emergency' and 'critical' urgencies explicitly
  1035. -- Matt Zimmerman <mdz@debian.org> Mon, 22 Apr 2002 21:05:11 -0400
  1036. apt-listchanges (2.18) unstable; urgency=medium
  1037. * Use x-terminal-emulator instead of plain xterm (Closes: #142684)
  1038. * Updated French translation of debconf templates from Denis Barbier
  1039. <barbier@debian.org> (Closes: #142589)
  1040. -- Matt Zimmerman <mdz@debian.org> Sat, 13 Apr 2002 15:34:41 -0400
  1041. apt-listchanges (2.17) unstable; urgency=low
  1042. * Oops, forgot to include the updated debconf templates for the w3m ->
  1043. browser change. (Closes: #142260)
  1044. -- Matt Zimmerman <mdz@debian.org> Wed, 10 Apr 2002 19:25:10 -0400
  1045. apt-listchanges (2.16) unstable; urgency=low
  1046. * Make the bug regex more useful. It should now match a superset of the
  1047. closes: syntax, while also trying to pick out plain-language bug
  1048. references. (Closes: #141461)
  1049. * Based on feedback about the w3m frontend, it seems a lot of folks
  1050. prefer lynx. Added a quick and dirty script which allows the user to
  1051. specify a browser via the environment, or searches the path for some
  1052. common browsers (Closes: #141457)
  1053. * Use #!/usr/bin/python instead of #!/usr/bin/env python
  1054. (Closes: #141701)
  1055. * Suggest xterm, www-browser and debianutils
  1056. -- Matt Zimmerman <mdz@debian.org> Tue, 9 Apr 2002 00:08:44 -0400
  1057. apt-listchanges (2.15) unstable; urgency=low
  1058. * The "I never forget a wishlist bug" release.
  1059. * Add w3m frontend which creates HTML output with hyperlinks for bugs
  1060. and email addresses, and a corresponding xterm-w3m frontend which does
  1061. the same thing in an xterm in the background. (Closes: #82360)
  1062. * Only works with w3m for now, because that is the only browser that I
  1063. am aware of which accepts input from a pipe. Perhaps eventually, I
  1064. will find a way to securely create temporary files for this purpose in
  1065. Python, and any browser can be supported
  1066. -- Matt Zimmerman <mdz@debian.org> Wed, 3 Apr 2002 23:35:05 -0500
  1067. apt-listchanges (2.14) unstable; urgency=low
  1068. * Fix the confirm prompt so that it defaults to yes
  1069. again (oops)
  1070. (Closes: #139413)
  1071. * Force apt-listchanges/confirm to false for 'none' ond 'mail' frontends
  1072. (Closes: #139393)
  1073. -- Matt Zimmerman <mdz@debian.org> Thu, 21 Mar 2002 22:03:21 -0500
  1074. apt-listchanges (2.13) unstable; urgency=low
  1075. * Minor cosmetic changes to the progress indicators to make them more
  1076. uniform and closer to apt's (Closes: #137736)
  1077. * Be more conservative about the user's answer to the confirmation
  1078. question (Closes: #137804)
  1079. -- Matt Zimmerman <mdz@debian.org> Wed, 20 Mar 2002 23:07:07 -0500
  1080. apt-listchanges (2.12) unstable; urgency=low
  1081. * Updated Spanish translation from David Martinez Moreno
  1082. <ender@debian.org>
  1083. * Skip the question about confirmation if the 'mail' or 'none' frontend
  1084. is chosen (Closes: #137241)
  1085. -- Matt Zimmerman <mdz@debian.org> Thu, 7 Mar 2002 22:04:35 -0500
  1086. apt-listchanges (2.11) unstable; urgency=low
  1087. * Skip packages which are being removed (Closes: #135166)
  1088. * Print newline to stderr instead of stdout in the text frontend
  1089. (Closes: #136381)
  1090. -- Matt Zimmerman <mdz@debian.org> Fri, 1 Mar 2002 20:27:44 -0500
  1091. apt-listchanges (2.10) unstable; urgency=low
  1092. * Fix a reversed urgency test which caused incorrect sorting when
  1093. multiple versions with different urgencies were included in the same
  1094. changelog display (Closes: #134345)
  1095. -- Matt Zimmerman <mdz@debian.org> Sun, 17 Feb 2002 00:16:27 -0500
  1096. apt-listchanges (2.9) unstable; urgency=low
  1097. * Don't show a harmless error message when the config file does not
  1098. exist (Closes: #134218)
  1099. * Remove .pyc files in prerm (part of #133306)
  1100. * Don't save the seen database until the user confirms the changes and
  1101. mail has been sent (Closes: #108718)
  1102. -- Matt Zimmerman <mdz@debian.org> Sat, 16 Feb 2002 13:37:50 -0500
  1103. apt-listchanges (2.8) unstable; urgency=low
  1104. * Fix a bug which broke xterm-pager which was introduced when
  1105. reorganizing the frontends (Closes: #133068)
  1106. -- Matt Zimmerman <mdz@debian.org> Sat, 9 Feb 2002 13:36:27 -0500
  1107. apt-listchanges (2.7) unstable; urgency=low
  1108. * Updated Finnish translations of debconf templates and message catalogs
  1109. from Jaakko Kangasharju <ashar@iki.fi>
  1110. * Added German translations of message catalogs, and updated
  1111. translations of debconf templates, from Leonard Michlmayr
  1112. <Leonard.Michlmayr@ap.univie.ac.at>
  1113. * Fix APT::quiet handling (Closes: #132501)
  1114. * Fix --all (Closes: #132393)
  1115. * Fix the mail frontend (Closes: #132428)
  1116. * Remove duplicate FILES section from the man page (Closes: #132490)
  1117. * Updated French translations of debconf templates from Denis Barbier
  1118. <barbier@debian.org> (Closes: #132384)
  1119. -- Matt Zimmerman <mdz@debian.org> Wed, 6 Feb 2002 20:34:58 -0500
  1120. apt-listchanges (2.6) unstable; urgency=low
  1121. * Fix code which, in trying to filter out errors from tar while
  1122. extracting the deb, mangled the changelog for the tar package
  1123. (Closes: #132046)
  1124. * Updated Spanish and Catalan translations of debconf templates and
  1125. message catalogs from Jordi Mallach <jordi@debian.org>
  1126. -- Matt Zimmerman <mdz@debian.org> Sun, 3 Feb 2002 14:45:10 -0500
  1127. apt-listchanges (2.5) unstable; urgency=low
  1128. * Start using python-apt (only version comparisons so far). This gives
  1129. a significant performance improvement, around 10%
  1130. * Send mail after displaying changelogs, rather than before
  1131. * Fix some funny business with the progress indicator
  1132. * More translation updates, though things still aren't up to date
  1133. * Reference /usr/sbin/sendmail instead of /usr/lib/sendmail
  1134. (Closes: #132028)
  1135. -- Matt Zimmerman <mdz@debian.org> Sun, 3 Feb 2002 03:40:55 -0500
  1136. apt-listchanges (2.4) unstable; urgency=low
  1137. * Add back the 'mail' frontend, so that 'none' can continue to mean
  1138. "don't even look for changelogs". (Closes: #129991, #129794)
  1139. * Add an error message for an unknown frontend (Closes: #129993)
  1140. * Fix --help, usage() was lost when moving code to the module
  1141. (Closes: #129992)
  1142. * Get rid of the hackish 'run' configuration option, since frontend=none
  1143. accomplishes the same purpose
  1144. * Update the debconf templates to reflect several minor configuration
  1145. differences
  1146. -- Matt Zimmerman <mdz@debian.org> Sat, 19 Jan 2002 17:09:16 -0500
  1147. apt-listchanges (2.3) unstable; urgency=low
  1148. * Add 'none' option to apt-listchanges/frontend template
  1149. (Closes: #129325)
  1150. * Added back some things that shouldn't have been removed from po/Makefile
  1151. * Regenerate po/*.po and po/apt-listchanges.pot to make translators'
  1152. lives easier
  1153. -- Matt Zimmerman <mdz@debian.org> Tue, 15 Jan 2002 19:20:19 -0500
  1154. apt-listchanges (2.2) unstable; urgency=low
  1155. * Clean up po/Makefile a bit
  1156. * gettextize some messages that were overlooked, and update Catalan
  1157. templates, both thanks to Jordi Mallach <jordi@debian.org>
  1158. * Fix instantiation of gettext classes (Closes: #129123)
  1159. * Update Estonian translations of message catalogs, thanks to Ivar
  1160. Smolin <okul@linux.ee>
  1161. * Do what the documentation says we should do when email_address ==
  1162. 'none'. (Closes: #129150)
  1163. -- Matt Zimmerman <mdz@debian.org> Mon, 14 Jan 2002 03:58:39 -0500
  1164. apt-listchanges (2.1) unstable; urgency=low
  1165. * On upgrade, remove /var/lib/apt/listchanges.db instead of truncating
  1166. it
  1167. * Fix a problem with parsing the APT configuration data in the pipeline
  1168. (Closes: #129088)
  1169. -- Matt Zimmerman <mdz@debian.org> Sun, 13 Jan 2002 20:37:28 -0500
  1170. apt-listchanges (2.0) unstable; urgency=low
  1171. * The Python release
  1172. * Complete rewrite in python, and lots of code cleanup
  1173. * ATTENTION: The configuration file format has changed, it now uses
  1174. python's ConfigParser. Folks configuring based on the debconf
  1175. questions should be migrated automagically. Others will need to RTFM.
  1176. * The newt frontend is gone, and good riddance. Try the pager frontend,
  1177. fix newt, or send me a patch for something better.
  1178. (Closes: #78814, #94572, #126055)
  1179. * Mail can now be sent in addition to running one of the usual
  1180. frontends, using --email-address=me@there. If this option is not
  1181. specified, no mail is sent. An argument of 'none' overrides a
  1182. configured default. (Closes: #78448)
  1183. * --nosaveseen is gone. --saveseen now accepts an argument, which is
  1184. the database file to use, so you can use different databases for
  1185. different tasks. --saveseen=none will act like the old --nosaveseen.
  1186. * Get rid of the automake cruft and just do it by hand. Automake was
  1187. starting to do way too much unnecessary work
  1188. * Document the config file format
  1189. * Since this was as much a redesign as a rewrite, it is possible that an
  1190. old bug or two may have crept back in; some of the logic is fragile
  1191. due to lax standardization of certain aspects of Debian packaging. I
  1192. have squashed a few already as I have noticed them. Send in those bug
  1193. reports for ones that I may have missed.
  1194. -- Matt Zimmerman <mdz@debian.org> Sun, 13 Jan 2002 03:17:16 -0500
  1195. apt-listchanges (1.61) unstable; urgency=low
  1196. * Remove a stray debugging statement (Closes: #125586)
  1197. -- Matt Zimmerman <mdz@debian.org> Mon, 17 Dec 2001 20:24:04 -0500
  1198. apt-listchanges (1.60) unstable; urgency=low
  1199. * Added a --debug option to help with debugging future problems
  1200. * Work around tar's ridiculous globbing, so that we don't pick up things
  1201. that look like changelogs but are in a subdirectory of .../doc
  1202. (Closes: #118382)
  1203. -- Matt Zimmerman <mdz@debian.org> Thu, 13 Dec 2001 04:20:30 -0500
  1204. apt-listchanges (1.59) unstable; urgency=low
  1205. * Fix formatting in man page, thanks to Andras BALI <bali@debian.org>
  1206. (part of bug #111013)
  1207. -- Matt Zimmerman <mdz@debian.org> Mon, 12 Nov 2001 22:32:47 -0500
  1208. apt-listchanges (1.58) unstable; urgency=low
  1209. * Be sure to return a true value from the xterm-pager initialization
  1210. routine, thanks to Charles C.Fu <ccwf@bacchus.com> (Closes: #114245)
  1211. * Updated Catalan translation from Jordi Mallach <jordi@debian.org>
  1212. -- Matt Zimmerman <mdz@debian.org> Wed, 17 Oct 2001 15:59:26 -0400
  1213. apt-listchanges (1.57) unstable; urgency=low
  1214. * Don't get confused when there are no changelog entries for the
  1215. newly-installed version of a package. This should never happen, of
  1216. course, but it just did with cracklib2.
  1217. -- Matt Zimmerman <mdz@debian.org> Thu, 6 Sep 2001 20:10:04 -0400
  1218. apt-listchanges (1.56) unstable; urgency=low
  1219. * Updated Galician translation of Debconf templates from Jacobo Tarrio
  1220. <jtarrio@trasno.net>
  1221. * Updated Spanish translations of Debconf templates and message catalogs
  1222. from Jordi Mallach <jordi@debian.org>
  1223. * Added Catalan translations of Debconf templates and message catalogs
  1224. from Jordi Mallach <jordi@debian.org>
  1225. -- Matt Zimmerman <mdz@debian.org> Mon, 27 Aug 2001 15:01:52 -0400
  1226. apt-listchanges (1.55) unstable; urgency=low
  1227. * Add fallback from xterm-pager to pager (Closes: #107211)
  1228. * Fallback from pager->text, not pager->mail (what was I thinking?)
  1229. * Rename apt.conf.d/20-apt-listchanges.conf to apt.conf.d/20listchanges
  1230. to meet the new filename restrictions in apt 0.5.4 (Closes: #109784)
  1231. * Build-depend on autoconf >= 2.50-1, and run autoconf2.50, to work with
  1232. the latest libtool
  1233. -- Matt Zimmerman <mdz@debian.org> Sat, 25 Aug 2001 18:12:39 -0400
  1234. apt-listchanges (1.54) unstable; urgency=low
  1235. * Fix various harmless Perl warnings (Closes: #106047)
  1236. * No longer ship with #!/usr/bin/perl -w; it's more trouble than it's
  1237. worth in the wild.
  1238. * Do a secondary sort on package name after the upload urgency sort
  1239. (Closes: #106045)
  1240. -- Matt Zimmerman <mdz@debian.org> Sat, 21 Jul 2001 17:46:03 -0400
  1241. apt-listchanges (1.53) unstable; urgency=low
  1242. * Added a feature to keep track of which changelogs have already been
  1243. seen by the user, and accompanying debconf question, config file
  1244. option, and command line option. (Closes: #77161, #103537)
  1245. * A respectable bit of code cleanup. A rewrite is probably called for,
  1246. perhaps in a different language. We'll wait and see.
  1247. * Remember to read all of the pipeline data when using the 'none'
  1248. frontend (Closes: #105701)
  1249. -- Matt Zimmerman <mdz@debian.org> Tue, 17 Jul 2001 18:08:16 -0400
  1250. apt-listchanges (1.52) unstable; urgency=low
  1251. * Added support for APT_LISTCHANGES_FRONTEND environment variable to
  1252. allow easy frontend selection when apt-listchanges is being called by
  1253. another program.
  1254. * Added a new, snazzy frontend called 'none' which will cause
  1255. apt-listchanges to exit without doing anything.
  1256. * These two features can be used together to skip the changelogs for a
  1257. particular run. (Closes: #77988, #105423)
  1258. -- Matt Zimmerman <mdz@debian.org> Sun, 15 Jul 2001 22:36:03 -0400
  1259. apt-listchanges (1.51) unstable; urgency=low
  1260. * Fix to work with .debs created by older versions of dpkg-dev
  1261. (Closes: #100975)
  1262. * Update extended description to refer to /usr/share/doc
  1263. (Closes: #103017)
  1264. -- Matt Zimmerman <mdz@debian.org> Sun, 1 Jul 2001 18:01:14 -0400
  1265. apt-listchanges (1.50) unstable; urgency=low
  1266. * Added Brazilian Portuguese translation of debconf templates, thanks to
  1267. Jeronimo Pellegrini <pellegrini@mpcnet.com.br> (Closes: #99820)
  1268. -- Matt Zimmerman <mdz@debian.org> Sat, 16 Jun 2001 00:01:43 -0400
  1269. apt-listchanges (1.49) unstable; urgency=low
  1270. * Fix a bogus error when installing a package from scratch, appeared in
  1271. 1.48.
  1272. -- Matt Zimmerman <mdz@debian.org> Wed, 23 May 2001 16:52:27 -0400
  1273. apt-listchanges (1.48) unstable; urgency=low
  1274. * Updated Galician translation of debconf templates, thanks to Jacobo
  1275. Tarrio <jtarrio@trasno.net>
  1276. * Read .debs in the order in which apt will configure them. This lets
  1277. us find changelogs in the new perl, and may speed things up a bit for
  1278. packages where .../doc/foo -> bar and foo Depends: bar.
  1279. (Closes: #98442)
  1280. * Fix up Makefile.in to work with the latest automake. Use _SCRIPTS
  1281. instead of _PROGRAMS, which I should have probably done in the first
  1282. place.
  1283. -- Matt Zimmerman <mdz@debian.org> Tue, 22 May 2001 21:29:39 -0400
  1284. apt-listchanges (1.47) unstable; urgency=low
  1285. * Add Estonian translation of message catalogs, thanks to Ivar Smolin
  1286. <okul@linux.ee>
  1287. * Make sure we read all of the piped data from apt, even if we are just
  1288. going to exit because we won't do anything. If we don't, apt thinks
  1289. we broke. (Closes: #96114)
  1290. -- Matt Zimmerman <mdz@debian.org> Wed, 2 May 2001 18:14:40 -0400
  1291. apt-listchanges (1.46) unstable; urgency=low
  1292. * Copy in the latest po/Makefile.in.in from gettext (Closes: #94750)
  1293. -- Matt Zimmerman <mdz@debian.org> Tue, 24 Apr 2001 11:52:48 -0400
  1294. apt-listchanges (1.45) unstable; urgency=low
  1295. * Skip "Local variables" section at end of changelog. Really, this
  1296. should never show up anyway, since we won't usually be displaying the
  1297. last entry in the changelog. It seems to come up anyway, usually
  1298. during weird package splits/merges and the like. (Closes: #93332)
  1299. * Still read the status file, even if we are getting some information
  1300. from the apt pipeline. apt doesn't give us the source package
  1301. version, which we need to do our job. Darn. (Closes: #93790)
  1302. * Miscellaneous fixes to work with the most recent automake
  1303. -- Matt Zimmerman <mdz@debian.org> Fri, 13 Apr 2001 19:05:55 -0400
  1304. apt-listchanges (1.44) unstable; urgency=low
  1305. * Added Galician translation of debconf templates, thanks to Jacobo
  1306. Tarrio <jtarrio@iname.com>
  1307. * Updated Galician translation of message catalog, thanks to Jacobo
  1308. Tarrio <jtarrio@iname.com>
  1309. * Give a more sensible error message if the user specifies something
  1310. other than .deb archives on the command line (Closes: #92058)
  1311. -- Matt Zimmerman <mdz@debian.org> Thu, 29 Mar 2001 03:29:15 -0500
  1312. apt-listchanges (1.43) unstable; urgency=low
  1313. * Added --version and --help options (Closes: #90929)
  1314. * Automatically substitute package version from changelog into
  1315. configure.in, so that it doesn't fall out of sync when I forget to
  1316. update it.
  1317. -- Matt Zimmerman <mdz@debian.org> Sun, 25 Mar 2001 02:20:42 -0500
  1318. apt-listchanges (1.42) unstable; urgency=low
  1319. * Added Finnish translation of message catalog, thanks to Jaakko
  1320. Kangasharju <ashar@iki.fi>
  1321. * Make urgency comparison case insensitive (to deal with urgency values
  1322. like HIGH, used by a recent xfree86 upload). This caused "Use of
  1323. uninitialized value" warnings when such a value was encountered.
  1324. -- Matt Zimmerman <mdz@debian.org> Tue, 20 Mar 2001 20:08:19 -0500
  1325. apt-listchanges (1.41) unstable; urgency=low
  1326. * Fixed an uninitialized value warning in the newt frontend
  1327. -- Matt Zimmerman <mdz@debian.org> Sat, 17 Mar 2001 23:09:50 -0500
  1328. apt-listchanges (1.40) unstable; urgency=low
  1329. * Don't display the per-package headers by default, as they can get in
  1330. the way of an easy visual scan. Instead, they can be turned on using
  1331. the -h or --headers command line options. Edit
  1332. /etc/apt/apt.conf.d/20-apt-listchanges.conf and add the option there
  1333. if you want the headers back. (Closes: #89821)
  1334. * Add missing build-dependency on the new perl
  1335. -- Matt Zimmerman <mdz@debian.org> Thu, 15 Mar 2001 23:33:43 -0500
  1336. apt-listchanges (1.39) unstable; urgency=low
  1337. * Prevent an obscure warning that only happened if apt-listchanges was
  1338. run unconfigured.
  1339. * Fix urgency sorting (broken in 1.36, I think)
  1340. -- Matt Zimmerman <mdz@debian.org> Thu, 15 Mar 2001 01:21:22 -0500
  1341. apt-listchanges (1.38) unstable; urgency=low
  1342. * The text frontend will no longer display a progress indicator, so that
  1343. its output can be usefully redirected to a file.
  1344. * If APT::quiet has been set (e.g. by apt-get -q), apt-listchanges will
  1345. force the text frontend to be used, so that apt-get -q output will be
  1346. loggable.
  1347. * Closes: #89511
  1348. -- Matt Zimmerman <mdz@debian.org> Tue, 13 Mar 2001 17:25:04 -0500
  1349. apt-listchanges (1.37) unstable; urgency=low
  1350. * Parse the urgency value correctly, even when there are multiple
  1351. key/value pairs in the changelog header (Closes: #89492)
  1352. -- Matt Zimmerman <mdz@debian.org> Tue, 13 Mar 2001 07:43:00 -0500
  1353. apt-listchanges (1.36) unstable; urgency=low
  1354. * Show which binary packages relate to the source packages for which
  1355. changes are being displayed (Closes: #85572)
  1356. * Now -w clean, as far as I can determine. This may cause some warnings
  1357. to be displayed under certain circumstances now; I will try to fix
  1358. them as they come up.
  1359. -- Matt Zimmerman <mdz@debian.org> Sun, 11 Mar 2001 03:27:03 -0500
  1360. apt-listchanges (1.35) unstable; urgency=low
  1361. * Added Galician translation of message catalogs, thanks to Jacobo
  1362. Tarrio <jtarrio@iname.com>
  1363. * Modify apt.conf snippet to sanitize the exit code, so we don't cause
  1364. apt to abort unless we really want to. (Closes: #88784)
  1365. -- Matt Zimmerman <mdz@debian.org> Sat, 10 Mar 2001 00:05:08 -0500
  1366. apt-listchanges (1.34) unstable; urgency=low
  1367. * We now interface with apt by dropping a conffile in
  1368. /etc/apt/apt.conf.d. This allows us to avoid sharing a config file
  1369. with anyone else, and to have a defined execution order in relation
  1370. to, e.g. dpkg-preconfigure.
  1371. * debian/control: depend on apt (>= 0.5.3)
  1372. * debian/control: depend on debconf (this should have been there long
  1373. ago)
  1374. * debian/rules: install /etc/apt/apt.conf.d/20-apt-listchanges.conf
  1375. * debian/postinst: updated for apt 0.5 (no more apt.conf hackery!)
  1376. * debian/postinst: added apt-mode-run config option, necessary for the
  1377. new way of interfacing with apt
  1378. * apt-listchanges.in: added apt-mode-run config option
  1379. * Added Spanish translation of message catalogs, thanks to Jordi Mallach
  1380. <jordi@debian.org>
  1381. * apt-listchanges.sgml: Clarify the meaning of the --apt option
  1382. -- Matt Zimmerman <mdz@debian.org> Sun, 4 Mar 2001 21:58:23 -0500
  1383. apt-listchanges (1.33) unstable; urgency=low
  1384. * Depend on liblocale-gettext-perl (I forgot to commit this change along
  1385. with the i18n changes in 1.32 (Closes: #85751, #85780)
  1386. -- Matt Zimmerman <mdz@debian.org> Mon, 12 Feb 2001 23:13:08 -0500
  1387. apt-listchanges (1.32) unstable; urgency=low
  1388. * apt-listchanges is now internationalized. New catalogs can be added
  1389. in the po/ directory. Translations are welcome. (Closes: #85432)
  1390. * The build system has been reworked to use automake, for easier
  1391. integration with gettext
  1392. -- Matt Zimmerman <mdz@debian.org> Mon, 12 Feb 2001 01:59:10 -0500
  1393. apt-listchanges (1.31) unstable; urgency=low
  1394. * Finnish translation of debconf templates, thanks to Jaakko Kangasharju
  1395. <ashar@iki.fi> (Closes: #85433)
  1396. -- Matt Zimmerman <mdz@debian.org> Fri, 9 Feb 2001 17:20:54 -0500
  1397. apt-listchanges (1.30) unstable; urgency=low
  1398. * Added Korean translation of debconf templates, thanks to Eungkyu Song
  1399. <eungkyu@sparcs.kaist.ac.kr>
  1400. -- Matt Zimmerman <mdz@debian.org> Sat, 3 Feb 2001 01:03:03 -0500
  1401. apt-listchanges (1.29) unstable; urgency=low
  1402. * Added Spanish translation of debconf templates, thanks to Jordi
  1403. Mallach <jordi@debian.org>
  1404. -- Matt Zimmerman <mdz@debian.org> Thu, 1 Feb 2001 02:36:33 -0500
  1405. apt-listchanges (1.28) unstable; urgency=low
  1406. * Added Dutch translation of debconf templates, thanks to "Thomas
  1407. J. Zeeman" <tjzeeman@cs.vu.nl> (Closes: #83947)
  1408. -- Matt Zimmerman <mdz@debian.org> Sun, 28 Jan 2001 18:23:26 -0500
  1409. apt-listchanges (1.27) unstable; urgency=low
  1410. * Added French translation of debconf templates, thanks to Thomas Morin
  1411. <thomas.morin@webmotion.com> (Closes: #83799)
  1412. -- Matt Zimmerman <mdz@debian.org> Sun, 28 Jan 2001 00:09:34 -0500
  1413. apt-listchanges (1.26) unstable; urgency=low
  1414. * Fixed a bug in the urgency sorting code; some higher-priority entries
  1415. would incorrectly be sorted equal to low-priority entries
  1416. -- Matt Zimmerman <mdz@debian.org> Fri, 26 Jan 2001 14:28:59 -0500
  1417. apt-listchanges (1.25) unstable; urgency=low
  1418. * Added Swedish translation of debconf templates, thanks to André
  1419. Dahlqvist <anedah-9@sm.luth.se>
  1420. * Added German translation of debconf templates, thanks to Leonard
  1421. Michlmayr <Leonard.Michlmayr@ap.univie.ac.at>
  1422. -- Matt Zimmerman <mdz@debian.org> Thu, 25 Jan 2001 00:28:11 -0500
  1423. apt-listchanges (1.24) unstable; urgency=low
  1424. * Added -a/--all option, which ignores version checks and just dumps the
  1425. entire changelog (Closes: #82225)
  1426. * Prompt whether or not to overwrite an existing
  1427. /etc/apt/listchanges.conf (Closes: #80983)
  1428. -- Matt Zimmerman <mdz@debian.org> Thu, 18 Jan 2001 17:38:11 -0500
  1429. apt-listchanges (1.23) unstable; urgency=low
  1430. * Handle packages with different binary/source versions correctly
  1431. (Closes: #82222)
  1432. * Use Build-Depends-Indep rather than Build-Depends
  1433. -- Matt Zimmerman <mdz@debian.org> Sun, 14 Jan 2001 18:01:49 -0500
  1434. apt-listchanges (1.22) unstable; urgency=low
  1435. * Handle apt-mode-confirm=no correctly (Closes: #81026)
  1436. -- Matt Zimmerman <mdz@debian.org> Wed, 3 Jan 2001 22:44:41 -0500
  1437. apt-listchanges (1.21) unstable; urgency=low
  1438. * Added xterm-pager frontend, which starts an xterm in the background to
  1439. display changes (Closes: #78662)
  1440. -- Matt Zimmerman <mdz@debian.org> Mon, 25 Dec 2000 21:16:05 -0500
  1441. apt-listchanges (1.20) unstable; urgency=low
  1442. * Fall back from more complex to less complex frontends when
  1443. initialization fails (Closes: #80477)
  1444. -- Matt Zimmerman <mdz@debian.org> Mon, 25 Dec 2000 20:23:51 -0500
  1445. apt-listchanges (1.19) unstable; urgency=low
  1446. * Change the name and meaning of the config file variable 'confirm' so
  1447. that it only applies to apt mode. A config file default for this
  1448. doesn't make sense when running from the command line.(Closes: #80082)
  1449. * Clean up old debconf questions that we don't ask anymore
  1450. -- Matt Zimmerman <mdz@debian.org> Tue, 19 Dec 2000 23:15:38 -0500
  1451. apt-listchanges (1.18) unstable; urgency=low
  1452. * Clarify and extend man page (Closes: #79698)
  1453. -- Matt Zimmerman <mdz@debian.org> Tue, 19 Dec 2000 00:58:08 -0500
  1454. apt-listchanges (1.17) unstable; urgency=low
  1455. * Only ask for confirmation if there were changes to display
  1456. -- Matt Zimmerman <mdz@debian.org> Wed, 13 Dec 2000 16:58:27 -0500
  1457. apt-listchanges (1.16) unstable; urgency=low
  1458. * Fix bug that caused apt-listchanges to run if no packages were being
  1459. installed, only removed (Closes: #79479)
  1460. -- Matt Zimmerman <mdz@debian.org> Tue, 12 Dec 2000 19:03:06 -0500
  1461. apt-listchanges (1.15) unstable; urgency=low
  1462. * All interactive frontends now have the option of asking the user
  1463. whether or not to continue, in a way appropriate for the selected
  1464. frontend. Right now, this is a simple text prompt for all of them.
  1465. (Closes: #78552)
  1466. * Configuration file moved to /etc/apt/listchanges.conf
  1467. * Renamed debconf variables to suit their actual use (which turned out
  1468. to be different from their intended one). This will cause all
  1469. questions to get asked again, but since there is a new question to ask
  1470. anyway, nobody should mind too much.
  1471. * Some support for the new apt (0.4), which gives us a lot more information
  1472. in the pipeline in addition to the .deb filenames. This means that we
  1473. won't have to read the status file anymore. There is also a newer and
  1474. better way to configure our hook into apt, but we can't use it until
  1475. there is a new released version of apt to Depend on.
  1476. -- Matt Zimmerman <mdz@debian.org> Sun, 10 Dec 2000 00:22:12 -0500
  1477. apt-listchanges (1.14) unstable; urgency=low
  1478. * Only skip based on the source package name if we actually got changelogs
  1479. from another binary package with the same source package. This fixes
  1480. a problem when processing multi-binary packages which symlink
  1481. subdirectories in /usr/share/doc (e.g. xmms/xmms-dev).
  1482. -- Matt Zimmerman <mdz@debian.org> Thu, 30 Nov 2000 04:56:49 -0500
  1483. apt-listchanges (1.13) unstable; urgency=low
  1484. * Don't send empty messages when using the mail frontend (Closes: #77993)
  1485. -- Matt Zimmerman <mdz@debian.org> Mon, 27 Nov 2000 14:37:22 -0500
  1486. apt-listchanges (1.12) unstable; urgency=low
  1487. * Make newt optional. We only load it if the user is using the newt
  1488. frontend, and fail with an informative message if it's unavailable.
  1489. This also means we now Suggest newt, rather than depending on it, and
  1490. it is no longer the default in debconf. All you pager users can purge
  1491. libnewt-perl and libnewt0 now.
  1492. * Include the hostname when using the mail frontend (Closes: #77588)
  1493. -- Matt Zimmerman <mdz@debian.org> Tue, 21 Nov 2000 00:01:15 -0500
  1494. apt-listchanges (1.11) unstable; urgency=low
  1495. * Always ignore the return value of the pager program...it's too
  1496. unpredictable to use for making a decision. I would like for the user
  1497. to have some way to tell apt-listchanges to abort when using the pager
  1498. frontend, but I'll have to find another way. Once again, this
  1499. hopefully Closes: #77421.
  1500. * The patch to order changelog entries by urgency slipped out of 1.10.
  1501. The functionality should be there now (Closes: #77420)
  1502. -- Matt Zimmerman <mdz@debian.org> Mon, 20 Nov 2000 19:58:12 -0500
  1503. apt-listchanges (1.10) unstable; urgency=low
  1504. * Order changelog entries by urgency (Closes: #77420)
  1505. -- Matt Zimmerman <mdz@debian.org> Sun, 19 Nov 2000 04:21:16 -0500
  1506. apt-listchanges (1.9) unstable; urgency=low
  1507. * Remember to catch SIGPIPE when using the pager frontend
  1508. (Closes: #77421)
  1509. -- Matt Zimmerman <mdz@debian.org> Sun, 19 Nov 2000 03:40:24 -0500
  1510. apt-listchanges (1.8) unstable; urgency=low
  1511. * Documented frontend and email-address options in manpage, corrected
  1512. program name in manpage.
  1513. -- Matt Zimmerman <mdz@debian.org> Sat, 18 Nov 2000 04:46:52 -0500
  1514. apt-listchanges (1.7) unstable; urgency=low
  1515. * Multiple frontend support added. You can now choose to view
  1516. changelogs with a pager, a simple text dump, via email, or with the
  1517. old newt interface (Closes: #77186)
  1518. * Remember to include the TODO list (oops)
  1519. -- Matt Zimmerman <mdz@debian.org> Sat, 18 Nov 2000 00:10:12 -0500
  1520. apt-listchanges (1.6) unstable; urgency=low
  1521. * Remember to remove ourselves from apt.conf if we are reconfigured
  1522. using dpkg-reconfigure
  1523. * Resize ourselves properly (Closes: #77236)
  1524. -- Matt Zimmerman <mdz@debian.org> Thu, 16 Nov 2000 18:12:31 -0500
  1525. apt-listchanges (1.5) unstable; urgency=low
  1526. * Fixed a bug that would read the wrong changelog for Debian
  1527. native packages (notably dpkg) which have both a changelog.gz and
  1528. changelog.Debian.gz.
  1529. * Use only one piece of whitespace to indent the debconf template
  1530. description (Closes: #77157)
  1531. * Updated TODO list
  1532. * Strip entire path from .deb pathnames for the progress display, not
  1533. just /var/cache/apt/archives. This accounts for systems accessing a
  1534. local mirror via apt (Closes: #77158)
  1535. -- Matt Zimmerman <mdz@debian.org> Wed, 15 Nov 2000 23:46:33 -0500
  1536. apt-listchanges (1.4) unstable; urgency=low
  1537. * Updated TODO list
  1538. * Updated Standards-Version (no changes necessary)
  1539. -- Matt Zimmerman <mdz@debian.org> Sat, 11 Nov 2000 15:56:55 -0500
  1540. apt-listchanges (1.3) unstable; urgency=low
  1541. * Make sure we read the entire changelog (even if it is not displayed)
  1542. to avoid a 'broken pipe' error when closing the pipe on a long
  1543. changelog (first noticed with xext 3.3.6-12)
  1544. * Removed extra space at the left margin of the description (thanks,
  1545. lintian)
  1546. * Enhanced description.
  1547. -- Matt Zimmerman <mdz@debian.org> Sat, 4 Nov 2000 20:55:51 -0500
  1548. apt-listchanges (1.2) unstable; urgency=low
  1549. * Change maintainer email address
  1550. -- Matt Zimmerman <mdz@debian.org> Wed, 1 Nov 2000 22:34:52 -0500
  1551. apt-listchanges (1.1) unstable; urgency=low
  1552. * Added debconf support.
  1553. * Optionally add ourselves to /etc/apt/apt.conf when installed, and
  1554. remove when we are removed.
  1555. -- Matt Zimmerman <mdz@csh.rit.edu> Wed, 18 Oct 2000 19:48:53 -0400
  1556. apt-listchanges (1.0) unstable; urgency=low
  1557. * Package renamed to apt-listchanges
  1558. -- Matt Zimmerman <mdz@csh.rit.edu> Wed, 18 Oct 2000 18:15:48 -0400
  1559. debchanges (0.13) unstable; urgency=low
  1560. * Check for packages whose source package version differs from the
  1561. binary package version, and do the right thing.
  1562. * Added a cancel button (causes exit with nonzero status).
  1563. * Fixed a bug in the source package check that caused packages to be
  1564. skipped when they shouldn't have been
  1565. -- Matt Zimmerman <mdz@csh.rit.edu> Tue, 17 Oct 2000 01:40:43 -0400
  1566. debchanges (0.12) unstable; urgency=low
  1567. * It is not an error if --apt is specified and no package files are sent
  1568. to stdin.
  1569. -- Matt Zimmerman <mdz@csh.rit.edu> Sun, 8 Oct 2000 23:09:26 -0400
  1570. debchanges (0.11) unstable; urgency=low
  1571. * Only process one binary package from each source package (changelogs
  1572. should be the same)
  1573. -- Matt Zimmerman <mdz@csh.rit.edu> Wed, 27 Sep 2000 14:19:39 -0700
  1574. debchanges (0.10) unstable; urgency=low
  1575. * Fixed a bug that caused an empty dialog to be displayed (thanks to
  1576. Matthias Klose <doko@cs.tu-berlin.de>>
  1577. * Set Architecture: all (oops)
  1578. -- Matt Zimmerman <mdz@csh.rit.edu> Sat, 23 Sep 2000 02:43:46 -0400
  1579. debchanges (0.9) unstable; urgency=low
  1580. * Initial Release.
  1581. -- Matt Zimmerman <mdz@csh.rit.edu> Wed, 13 Sep 2000 21:11:29 -0400