]> git.donarmstrong.com Git - debbugs.git/blob - debian/changelog
Fix noaffects option
[debbugs.git] / debian / changelog
1 debbugs (2.4.2~exp1) experimental; urgency=low
2
3   * Allow (almost) exactly what RFC2822 allows in comments (closes:
4     #497144)
5   * Fix problem with non-existant /etc/debbugs/config
6   * Ditch \r and \n in status fields (closes: #545895)
7   * Properly handle source packages when searching by maintainer; use
8     package_maintainer instead of the hashes (closes: #556863)
9   * Handle \r properly in Debbugs::MIME for PGP signatures
10     (closes: #565981). Thanks to Mike Hommey
11   * Allow type to be text as well as text/(something not html)
12     (closes: #566068). Thanks to Mike Hommey.
13   * Fix links to PTS pages for src packages (closes: #566089). Thanks to
14     Sandro Tosi.
15   * Fix affects for source packages (closes: #563470). Thanks to Charles
16     Plessy.
17   * Allow tag instead of tags; silently normalize it (closes: #567407).
18     Thanks to Martin Krafft.
19   * Properly handle Forwarded: at submit@ time (closes: #568020). Thanks
20     to Martin Krafft.
21   * Fix source package src: urls (closes: #567439). Thanks to Paul Wise.
22   * Use package_maintainer to search for packages maintained by a
23     maintainer (closes: #556863). Thanks to Yves-Alexis Perez.
24   * Linkify CVE reports (closes: #568464). Thanks to Martin Zobel-Helas.
25   * Fix noaffects option
26
27  -- Don Armstrong <don@debian.org>  Wed, 26 Aug 2009 21:32:53 -0700
28
29 debbugs (2.4.2~exp0) experimental; urgency=low
30
31   [ Anthony Towns ]
32   * Add "package" command to service (control@) to limit the bugs that
33     the following commands apply to.
34
35   [ Colin Watson ]
36   * Add (slightly) fancy CGI decoding of message/* MIME types.
37   * CGI scripts now support multiple maintainers for a single package.
38   * Add support for an X-Debbugs-No-Ack: mail header to suppress
39     acknowledgements.
40   * Document how to deliver mail to debbugs via procmail and SpamAssassin.
41   * Implement new .status format that's extensible and easier to read; it
42     now lives in .summary rather than .status. Use debbugs-upgradestatus
43     to convert existing bug databases.
44   * Implement bug ownership, with new 'owner' and 'noowner' commands and
45     Owner: pseudo-header (closes: #133453).
46   * Install Debian configuration in the binary package's examples
47     directory (closes: #222118).
48   * New standalone SpamAssassin queue runner, spamscan.
49   * Allow # prefix on bug numbers in 'merge' command.
50   * Fix some ordering issues in old-style package pages and summaries.
51   * Add X-$gProject-PR-Message: headers to all mails sent by service.
52   * debbugsconfig creates required directories in $gSpoolDir
53     (closes: #222077).
54   * Decode RFC1522 mail headers for display in the web interface.
55     bugreport.cgi and pkgreport.cgi now output UTF-8.
56   * Properly support multiple submitter addresses on a single bug.
57   * Add a number of extra htmlsanit() calls to prevent cross-site
58     scripting attacks.
59
60   [ Adam Heath ]
61   * Rewrite filtering in cgi's common.pl, to make it completely generic.
62     Filtering can now work against any field.
63   * Rewrite grouping logic in cgi's common.pl, to make it completely
64     generic.  There is now no longer 2 nested loops, to do the grouping.
65     This makes adding new grouping levels simpler for the future.
66   * Add in a Table of Contents to pkgreport.cgi.
67   * Display how long until a resolved bug will be archived in
68     pkgreport.cgi.
69   * Add user-agent detection.  This currently doesn't change anything,
70     however.
71   * Add options show_list_(head|foot)er.
72
73   [ Don Armstrong ]
74   * Don't remove the maintainer address if the message was sent by the
75     maintainer and we're submitting to maintonly (closes: #140061)
76   * Use uri_escape to escape URI's before sending them back out so the
77     name of the file doesn't munge the query string. [#301606 pt. 1]
78   * call decode_rfc1522 on the filename returned so that encoded
79     filenames get decoded to something "reasonable." (closes: #301606)
80   * We now require URI::Escape
81   * Added apache.conf to examples, which is a sample apache
82     configuration file which implements the rewrite rules that are
83     currently used on bugs.debian.org. (closes: #222264)
84   * Change spamscan.in to work with SA 3.0; This is an incompatible
85     change with SA 2.6, and as such, we now Suggests: spamassassin 
86     (>=3.0) (closes: #290501)
87   * Update MTA to exim4 (closes: #228597) and add instructions on using
88     exim 4 (thanks to Marc Haber) (closes: #248335)
89   * Added per bug subscription support to debbugs, which relies on an
90     external MLM to actually deal with the requests; currently works with
91     eoc and sends messages to bugnum\@$gListDomain. (closes: #34071)
92   * Change bugreport.cgi to use Debbugs::Log and greately simplify the
93     process of outputing the bug log.
94   * All RFC1522 subject lines are decoded, both in the html information
95     and the message headers. All messages are converted to UTF-8 whereever
96     possible; all bugreport.cgi pages are now completely in UTF-8 to the
97     degree possible using Encode.pm (closes: #46848,#238984)
98   * Add a convert_to_utf8 function to Debbugs::Mime to make the above
99     possible; abstracts functionality that was already present in the
100     decode_rfc1522 fucntionality.
101   * Individual messages can now be downloaded from each bug report
102     (closes: #95373)
103   * Uninteresting headers are now hidden by default, can be renabled
104     with &trim=no (closes: #188561)
105   * Fix postfix instructions in README.mail (thanks to Jeff Teunissen)
106     (closes: #134166)
107   * Display old severity when changing severity (closes: #196947)
108   * All messages that originate from the BTS and either go to .log files
109     or out to users are now properly RFC1522 encoded. (closes: #306068)
110   * Add links to cloned bugs (closes: #217960) and forwarded records
111     that look like urls in the html records output by bugreport.cgi.
112   * Things that look like urls in message bodies are now linked
113     (closes: #168962)
114   * Add Debbugs::Mail module that has two important functions:
115     send_mail_message and encode_headers. All mail handling in service.in
116     and process.in now uses send_mail_message to send mail messages which
117     tries as hard as possible to send a message; if it fails, only
118     warnings are returned. This fixes bad addresses causing sendmail to
119     exit and destroying the bug log. (closes: #191306)
120   * Add rudimentary Test::More modules for testing Debbugs::Mime and
121     Debbugs::Mail.
122   * Allow X-debbugs-* to be set in pseudo headers. (closes: #179340)
123   * Obey X-Debbugs-No-Ack in control@ messages. (closes: #201825)
124   * Allow forwarded: and owner to be set at submit@ time.
125     (closes:#128320)
126   * Fix example rewrite rules to allow for #1234 and foo+bar@baz.com
127     (closes: #321925)
128   * Output proper charset for attachments (closes: #335813)
129   * Use MIME encodings to attach messages in close and done.
130     (closes: #136654)
131   * Add a forcemerge command to service.in to allow forcibly merging
132     bugs which are in the same package. (closes: #286792)
133   * Make all packages lowercase to support packages with uppercase
134     names, even though that's insane. (closes: #67067)
135   * Change acknowledged to close (closes: #61341) and indicate who
136     actually closed the bug (closes: #355968, #132274)
137   * Fix the documentation of clone to indicate that you need at least
138     one newID (closes: #276747)
139   * Use create_mime_message to send all of the mails which may contain
140     UTF8 material. (closes: #364026)
141   * Add links to Closes: text for closed bugs. (closes: #320986)
142   * Add X-$gProject-PR-Source: line (closes: #219230)
143   * Use the %cats data structure properly in pkgreport.cgi
144     (closes: #367514)  
145   * Document nnn.*@foobar addresses (closes: #188670)
146   * Support cloned bugs in control blocking (closes: #337329)
147   * Indicate which bugs are blocked after blocking (closes: #367496)
148   * Obey package for usertags (closes: #376528)
149   * Add link to subscribe to a bug (closes: #353260)
150   * Don't lc owner or forwarded at submit time (closes: #288384)
151   * Explain how to close bugs in the ack message (closes: #37605)
152   * Make the moreinfo ack more general (closes: #70810)
153   * Use RFC compliant dates in headers (closes: #362935)
154   * Add SOAP support (closes: #377520) Thanks to Raphael Hertzog.
155   * Split forwarded on commas for linking (closes: #367813,#473272)
156   * Don't display duplicate bugs (closes: #348116)
157   * Display links to archived bugs for all searches (closes: #53710)
158   * Link to blocked bugs in the bugreport.cgi output (closes: #326077)
159   * Don't ask for more bugs if there is no maintainer (closes: #355190)
160   * Stop refering to developers on the index page (closes: #355786)
161   * Change control@ stop regex and documentation to match eachother
162     (closes: #366093)
163   * Make it obvious when commands to control have failed
164     (closes: #344184)
165   * Fix javascript error in pkgreport.cgi (closes: #346043)
166   * When a bug can't be found in control@; indicate to user that it may
167     be archived. (closes: #153536)
168   * my_url in pkgreport.cgi now returns the complete url (closes: #378566)
169   * Document precisely how forwarded works (closes: #228049)
170   * Dissallow forwarded being set to a $gEmailDomain address
171     (closes: #397486)
172   * Fix broken sorting by usertags by forcing numeric (closes: #395027)
173   * Add support for hiding useless messages; thanks to Sune Vuorela.
174     (closes: #406020)
175   * Fix arrayrefs leaking into the myurl function (closes: #397344)
176   * List bugs being blocked (closes: #356680)
177   * Fix multiple submitters for a single bug in the index
178     (closes: #402362)
179   * Marking a bug as fixed now overrides a found at that exact version
180     (closes: #395865)
181   * When searching by source package, include the source package itself
182     in the list of packages to search for, even if there is no binary
183     package called that. (closes: #414825)
184   * Add link from singlemsg page to main page; remove useless links
185     (closes: #404806)
186   * Support usertagging cloned bugs (closes: #375697)
187   * List previous/new title when retitling, and show date of control
188     actions (closes: #127354)
189   * Add searching by owner (closes: #345407)
190   * Accept colon after package in control mails (closes: #319720)
191   * Make e-mail addresses case insensitive for searching
192     (closes: #89569)
193   * pkgindex.cgi limits its output with pagination (closes: #23018)
194   * lc submitter address for comparsion in pkgreport.cgi
195     (closes: #415628)
196   * Add quotes around retitle'd titles (closes: #419202)
197   * Don't automatically make categories hidden (closes: #415932)
198   * Don't duplicate ordering (closes: #415931)
199   * Make file locking portable (closes: #293277)
200   * Allow the package pages to be optional (closes: #234362)
201   * Fix package link code and link both packages (closes: #419553)
202   * Save leading space when we unmime (closes: #416321)
203   * Make the version regex correct (closes: #425614)
204   * Indicate the selected user (closes: #422934)
205   * Use source package for usertags where possible (closes: #415933)
206   * Add PR-Package header for control messages (closes: #414023)
207   * Fix double leading spaces of format=flowed messages
208     (closes: #428056)
209   * Don't doubly select users
210   * Implement versioning aware archiving support (closes: #339141)
211   * Split out packages so that you don't have to install the mail stuff
212     unless you want it.
213   * Only mail duplicated recipients once (closes: #172635)
214   * Indicate date of last activity (closes: #207065)
215   * Reorder title (closes: #265267)
216   * Reopen bugs when a bug is found with a version greater than any
217     fixed version (closes: #365352)
218   * Allow ordering bugs by last action (closes: #318898)
219   * Add notfixed/notfound commands (closes: #389634)
220   * Fix soapy insanity (closes: #422062)
221   * Add script to split index.db by severities (closes: #422062)
222   * Add bugspam.cgi with confirm string (closes: #348225)
223   * Allow selecting both archived and unarchived bugs (closes: #320175)
224   * Support intersecting sets of bugs (closes: #164421)
225   * Allow selecting the newest N bugs (closes: #84681)
226   * Add anchor links to specific messages (closes: #431459)
227   * Add missing newline after indicating what the user is (closes: #432466)
228   * Handle src/binary packages with the same name (but different src
229     packages) correctly. (closes: #435926)
230   * Make sendmail binary location configurable, and use flock instead of
231     fcntl. (closes: #260791)
232   * Make notfound/notfixed log verbiage more clear (closes: #434953)
233   * Verify submitter is a valid email according to RFC822
234     (closes: #182419)
235   * Indicate what message number a message is (closes: #462653,#454248)
236   * Fix casing of versions (closes: #441022)
237   * Output last-modified in bugreport.cgi (closes: #459709)
238   * Fix various html syntax errors in pkgreport.cgi (closes: #462322)
239   * Make search case insensitive (closes: #448861, #444416)
240   * Add the ability to return source/package mapping
241     (closes: #465332,#458822)
242   * Deal properly with \r line endings (closes: #467190)
243   * Distinguish between reports and followups (closes: #459866)
244   * Allow for the archiving of bugs in removed packages
245     (closes: #475622, #470146)
246   * Add Text::Template based templating system (closes: #36814)
247   * Add new uservalue feature to Debbugs::User
248   * Don't serialize things as date/time in soap (closes: #484789)
249   * Link to packages in bugreport page (closes: #229067)
250   * Totally revamp the pkgreport templates (closes: #434504)
251   * Add correspondent option to track bug correpondents (closes: #485804)
252   * Fix addition of correspondents in gen-indices (closes: #511850)
253   * Allow clicking anywhere outside the extra status box to close the
254     extra status box (closes: #499990) Thanks to James Vega for the patch.
255   * Return 404 when a bug number that does not exist is used
256     (closes: #499997)
257   * Comment out CGI::Alert use for the time being (closes: #499681)
258   * No longer hard-code paths in age-1 (closes: #499682)
259   * Change how maybelink links links (closes: #501757)
260   * Use bug_subscription_domain in process (closes: #499680)
261   * Clean up links when there is no information about a package
262     (closes: #452905)
263   * Deal properly with leading spaces in query arguments (closes: #158375)
264   * Only send out control help when control is mailed (closes: #499941)
265   * Resolve two XSS (closes: #504608)
266   * Strip BOM before regexes involving spaces (closes: #488554)
267   * Display link to full log again (closes: #507506)
268   * Add Last-Modified: header support to mbox download (closes: #456786)
269   * Add Date headers if missing (closes: #458757)
270   * Indicate what machine has built webpages (closes: #507022)
271   * Indicate the update location of source (closes: #512306)
272   * Use get_addresses to parse X-Debbugs-Cc: to allow multiple Cc:'s
273     (closes: #514183)
274   * Calculate last modified using summary as well as log (closes: #515063)
275   * Ditch 'as before' (closes: #514677)
276   * Don't have reply/subscribe links for archived bugs (closes: #511864)
277   * Fix issue with no-maintainer bugs assigned to multiple packages
278     (closes: #528249)
279   * Properly html_escape un-processed parts in maybelink (closes: #530506)
280   * Add urls to the bottom of all messages we send out (closes: #9596)
281   * Allow for tag nnn = baz + foo - bar in service (closes: #505189)
282   * Allow trailinng periods after the control stop commands (closes:
283     #517834)
284   * Ditch extra blank lines (closes: #494843)
285   * Handle &#39; ending links in Debbugs::CGI::Bugreport (closes: #539020)
286
287   
288  -- Don Armstrong <don@debian.org>  Sun, 26 Jul 2009 05:48:16 -0700
289
290 debbugs (2.4.1) unstable; urgency=low
291
292   * Colin Watson:
293     - Exit the CGI scripts straight away if the HTTP method is HEAD, to save
294       pointless work.
295     - Display pending+fixed bugs as "fixed in NMU", not "pending upload".
296     - Add a man page for debbugsconfig.
297     - Report original tags when changing them, closes: #170630.
298     - Add missing <ul></ul> tags to db2html's output, closes: #50746.
299     - Add a 'submitter' command to service, based on a patch by Matt Kraai.
300     - Remove the final use of cgi-lib.pl, so it's gone. Remove copyright
301       notices that were there due to using it.
302     - Accept ';' as well as '&' as a CGI argument separator.
303     - db2html now works with the new hashed database layout.
304     - Disable the fixed severity in favour of the tag.
305     - MIME-encoded messages to bugs are displayed in decoded form on the web
306       interface (unless the "mime=no" parameter is used), closes: #136114.
307     - Add facility to search by tag.
308     - Fix rebuild script and add it to the example crontab, closes: #139696.
309     - Silence postinst warning if spool/db doesn't exist, closes: #194892.
310     - Clean up the definition and use of $gCGIDomain, closes: #139697.
311   * Adam Heath:
312     - Convert all code to use global read/write functions, instead of having
313       it duplicated everywhere.
314     - Trim trailing whitespace from pseudoheader values.  Closes: #153590.
315     - Warn when reassigning to an unknown package.  Closes: #60595.
316   * Josip Rodin:
317     - Added a terse=yes mode for bugreport.cgi, possibly useful for
318       monstrously long bugs.
319     - Purged needless date(1) forks, replaced with strftime.
320
321  -- Colin Watson <cjwatson@debian.org>  Fri,  6 Jun 2003 09:25:30 +0100
322
323 debbugs (2.4) experimental; urgency=low
324
325   * Updating the package with what's in CVS, even though this might
326     completely break things for people who've been using the previous also
327     broken package. <shrug> :) Upped the minor version since the changes
328     are noticeable, and uploaded to experimental, just in case.
329   * Applied speedup patch, that uses references, instead of copies.
330     Thanks to Thomas Smith. Closes: #87176. [Adam]
331   * Reverted some parts of the speedup patch because it breaks the API.
332     [Anthony]
333   * Bugs that are tagged fixed are now listed in a separate section in the
334     web pages. Patch from Colin Watson. Closes: #86922. [Adam]
335   * Added support for an additional Maintainers.override file, which is read
336     after the normal one. This allows the normal one to be externally
337     updated, but still have local overrides. [Adam]
338   * Put <title> and </title> on the same line as the title since some lame
339     browsers don't seem to like it otherwise. [Josip]
340   * Include a mailto: URI in the header for a bug report. [Adam]
341   * Added support for filtering on subject with include=subj:foo (exact
342     match, case sensitive). [Anthony]
343   * Added a missing http://, thanks to Julian Gilbey. [Anthony]
344   * Use by-*.idx indices to speed up pkgreport.cgi. [Anthony]
345   * Support "maint=" in pkgreport to give packages without a maintainer.
346     [Anthony]
347   * Updated Postfix documentation. [Darren]
348   * Use two variables in order to reduce the amount of path hard-coding.
349   * Added support for storing the files in a hashed directory (db-h), with
350     the same hash layout as archive/. [Adam]
351   * Added support for tracing of bug state changes. This date is in
352     $gSpoolDir/debbugs.trace. It is locked (as debbugs.trace.lock) while
353     accessed, and appended to. Currently, nothing uses this trace file and
354     it isn't even cleaned up, which can be easily fixed with a simple cron
355     job. [Adam]
356   * Tell sendmail to queue outgoing mail for later delivery, instead of
357     immediate delivery. [Adam]
358   * Added a keywords header to outgoing email responses. [Adam]
359   * Use Resent-From: if From: doesn't exist. [Adam]
360   * Added appropriate Reply-To: lines for the ACK messages that could use
361     them. [Josip]
362   * Add $gUnknownMaintainerEmail to the list of maintainers to mail in case
363     an package with no maintainer is referenced. [Adam]
364   * processall locks 'incoming-cleaner' before starting, so we don't have
365     multiple copies of it running at the same time. [Adam]
366   * Sort bugs tagged 'pending' as 'pending upload', between 'forwarded' and
367     'fixed'. [Adam]
368   * Add support for searching by source package.  pkgreport.cgi takes src=,
369     and both pkgreport.cgi and bugreport.cgi have enhanced HTML headers now.
370     [Adam]
371   * Add support in the CGIs for:
372     * 'raw' sorting. This does no grouping based on status or severity, and
373       just lists bugs in number order.
374     * reversing the order that bugs are displayed. This does not affect
375       severity or status ordering.
376     * inclusions/exclusions of status and severity. Also, support reverse
377       sorting of the above.
378   * Make it possible to ban people from control@bugs. [Anthony]
379   * Don't lie about missing Subject:s being an RFC822 violation, because
380     they aren't. [Anthony, Josip]
381   * Added preliminary support for ###-request. [Adam]
382   * Added preliminary fast indexing support. [Adam/Anthony (?)]
383   * Added preliminary support for CC:ing <src>@packages.qa.debian.org.
384     [Anthony]
385   * Added preliminary cloning support. [Anthony]
386   * Link to submitter's web page, patch from Matt Kraai. [Josip]
387   * The autoconfig thing in the description is gone, closes: #124537.
388   * Fix viewing archived bugs by source package, closes: #121082, #146484.
389     [Colin]
390   * Depends: libmailtools-perl rather than mailtools, closes: #113028.
391   * Add MIME support to process and service, and depend on libmime-perl as a
392     result, closes: #36813. [Colin]
393   * Trim Bug#12345: from the Subject:, not "Bug#12345: [", closes: #78123.
394     [Anthony]
395   * Be more careful about loop detection, closes: #113514. [Adam, Colin]
396   * Relax the syntax for 'tags' slightly, since people seem to use it that
397     way accidentally a lot, closes: #96164. [Colin]
398   * Give better feedback from pkgreport.cgi when querying a non-existent
399     package name, closes: #93433. [Colin]
400   * Remove support for -fixed address from receive, since nothing else
401     supports it. [Colin]
402   * Prevent people from reading the first line of arbitrary files through
403     bugreport.cgi, thanks to Max <rusmir@tula.net>. [Colin]
404   * Add working-for-me instructions for exim setup on non-dedicated sites,
405     together with Chad Miller's suggestions, closes: #78688. [Colin]
406   * Fix a few typos, closes: #146745, #152751.
407   * Update the copyright file with the current list of maintainers and a
408     pointer to ViewCVS.
409   * Remove lynx-cfg, and use 'lynx -cfg=/dev/null' instead. [Colin]
410   * Various other things, not worth mentioning here.
411
412  -- Colin Watson <cjwatson@debian.org>  Sun, 17 Nov 2002 17:54:49 +0000
413
414 debbugs (2.3-4) unstable; urgency=low
415
416   * Added a check for unwanted characters in the part of request passed on
417     to sendlynxdoc that gets passed to shell. [Josip]
418   * Applied Rob Browning's patches to remove more Debian-only stuff,
419     closes: #80077. [Josip]
420   * Fixed the nextnumber misplacement (it should be in spool dir, not config
421     dir), and added a note about running debbugsconfig after changes to
422     config file, thanks to Rob for the hints. [Josip]
423   * Changed Maintainer: to point to debian-debbugs. Added myself to
424     Uploaders:. [Josip]
425   * Fixed Lintian errors: file-in-etc-not-marked-as-conffile (except
426     for lynx-cfg which is a gross hack anyway),
427     virtual-package-depends-without-real-package-depends,
428     debian-changelog-file-contains-user-emacs-settings.
429
430  -- Josip Rodin <jrodin@jagor.srce.hr>  Thu,  7 Feb 2002 17:30:17 +0100
431
432 debbugs (2.3-3) unstable; urgency=low
433
434   * Fixed examples installation, debbugsconfig should actually work now,
435     closes: #77126. [Josip]
436   * Removed all traces of the package after purging, in postrm. [Josip]
437   * Added pkgindex.cgi, package/maintainer/submitter indices. [Anthony]
438   * Moved readparse to common.pl, since it's, well, common to all the cgi
439     stuff. Other fixes in common.pl. [Anthony]
440   * Moved some of the pkgreport.cgi logic from common.pl into pkgreport.cgi.
441     [Anthony]
442   * Random typo fixes in the CGIs. [Anthony]
443   * Made the CGI scripts use the common.pl from their directory and not
444     /usr/lib/debbugs nor ~ajt/newajbug. That stuff should actually _work_
445     now, argh. [Josip]
446   * Added bug subject and package name in closing messages. [Josip]
447   * Fixed errorlib filename (removed the .in part), this stuff should
448     actually _work_ now, argh. I shouldn't be repeating myself. [Josip]
449   * Escape +'s in URLs, closes: #75220. [Anthony]
450   * Skip checking for new installs or the config file, debbugsconfig needs
451     to regenerate the HTML, and it will detect existing conffiles. [Josip]
452
453  -- Josip Rodin <jrodin@jagor.srce.hr>  Fri,  1 Dec 2000 15:01:40 +0100
454
455 debbugs (2.3-2) unstable; urgency=low
456
457   * Tweaks to the [pkg|bug]report.cgi scripts
458   * Merged README and README.Debian (not quite yet)
459   * Sundry of patchs from netgod.. see list archives for details :)
460      + a bug report that's already been closed, it seems, #36147
461      + the send|get command will accept two digits, closes: #39063
462      + fixed reference to Debian in the copyright, closes: #39540
463   * Provided a CNAME in control@ as well as submit@ for severity
464   * mailsummary mails $gSummaryList@$gListDomain now, closes: #36181.
465   * Ray's fixes are now included, one way or another, closes: #37210.
466     A bug's severity is set to default one before trying to merge it,
467     which fixes #47026 filed against bugs.debian.org, and closes: #50106.
468   * The ACKs now clearly says which addresses should be mailed,
469     closes: #48610.
470   * Fixed how /usr/lib/debbugs is prepended to $PATH, closes: #63216.
471   * The $gHTMLSeverityDesc variable is now properly terminated,
472     closes: #67702.
473   * Policy 3.2.1 compliance, includes Build-Depends: debhelper, which
474     closes: #70356.
475   * Doesn't install the Maintainers and pseudo-packages.description files
476     in the /etc/debbugs directory, it instead copies it from templates if
477     they don't exist, closes: #70749, #37120.
478   * A `priority' command now handles severities, closes: #45818.
479   * Fixes and additions to scripts by Adam Heath.
480   * Fixes and several new features in the CGI scripts by Anthony Towns.
481   * Small fixes and updates to scripts, build system and docs by Josip Rodin.
482
483  -- Josip Rodin <jrodin@jagor.srce.hr>  Wed,  8 Nov 2000 19:12:01 +0100
484
485 debbugs (2.3-1) unstable; urgency=low
486
487   * Fixed the send message bug that resulted in the same words (subject)
488     being printed out over and over and over again
489   * Added CGI scripts to make retrieval of individual bug reports realtime
490   * Created upgrade notes from 2.2 to 2.3
491   * Added a variable for where the "mailsummary" reports go
492   * Added optional bug archiving for expired bugs
493   * Added "fixed" to the default severities
494   * Some scripts are now perl -w clean.
495   * Added "severity display" to "Summary of outstanding reports" 
496     (db/ix/summary.html and db/ix/psummary.html)
497   * Added a variable to allow for a uniformed <BODY> and starting text tag
498   * Send both message that closes and original bug to bug submitter
499   * Fixed X-Debbugs-CC header
500   * Improved ability to skip pgp signed and mime encoded messages when
501     looking for commands (control@ and request@) and pseudo headers
502     (submit@)
503   * Cosmetic changes...
504
505  -- Darren Benham <gecko@debian.org>  Tue, 27 Jul 1999 11:27:22 -0700
506
507 debbugs (2.2-3) unstable; urgency=low
508
509   * Perl Depends change
510
511  -- Darren Benham <gecko@debian.org>  Tue, 27 Jul 1999 11:27:22 -0700
512
513 debbugs (2.2-2) unstable; urgency=low
514
515   * Added mailtools to dependency
516
517  -- Darren Benham <gecko@debian.org>  Thu, 13 May 1999 13:13:15 -0700
518
519 debbugs (2.2-1) unstable; urgency=low
520
521   * NATIVE Qmail (mailer) support!  No more "other MTA" needed
522         for Qmail users!
523   * Improved sendmail support.
524   * Changed lynx dependancies to simply "lynx"
525   * fixed bad spelling in service script (fixes #36205)
526
527  -- Darren Benham <gecko@debian.org>  Thu,  8 Apr 1999 16:00:32 -0700
528
529 debbugs (2.1-1) unstable; urgency=low
530
531   * Added variable in "bad email" message (receive)
532   * Fixed SUBSTITUTE_DTIME in main html pages
533   * Changed crontab sample (had bad directories)
534   * Added some documentation for MTA setup
535   * Added support for sendmail
536   * Removed use of btoa to move change around.  It's non-free.
537
538  -- Darren Benham <gecko@debian.org>  Thu,  1 Apr 1999 14:17:01 -0800
539
540 debbugs (2.0-1) unstable; urgency=low
541
542   * First public release of deb
543   * Config modification implemented
544
545  -- Darren Benham <gecko@debian.org>  Sat, 27 Mar 1999 10:37:37 -0800
546
547 debbugs (1.0-4) unstable; urgency=low
548
549   * Tried a stopgap measure for config files
550
551  -- Darren Benham <gecko@debian.org>  Mon, 15 Feb 1999 22:11:08 -0800
552
553 debbugs (1.0-3) unstable; urgency=low
554
555   * $gListDomain yet again
556   * removed nextnumber, config and text from deb for time bing
557
558  -- Darren Benham <gecko@debian.org>  Wed, 10 Feb 1999 11:09:47 -0800
559
560 debbugs (1.0-2) unstable; urgency=low
561
562   * internal release
563   * fixed scripting bugs in list email
564
565  -- Darren Benham <gecko@debian.org>  Wed, 10 Feb 1999 10:39:18 -0800
566
567 debbugs (1.0-1) unstable; urgency=low
568
569   * Initial Release.
570
571  -- Darren Benham <gecko@debian.org>  Thu, 21 Jan 1999 20:55:51 -0800