Code

14e7529eee6d7ecc1143bc0e5e2b34b140e7a955
[roundup.git] / doc / announcement.txt
1 I'm proud to release version 1.4.16 of Roundup which introduces some
2 minor features and, as usual, fixes some bugs:
4 Features:
6 - allow trackers to override the classes used to render properties in
7   templating per issue2550659 (thanks Ezio Melotti)
8 - new mailgw configuration item "subject_updates_title": If set to "no"
9   a changed subject in a reply to an issue will not update the issue
10   title with the changed subject. Thanks to Arkadiusz Kita and Peter
11   Funk for requesting the feature and discussing the implementation.
12   http://thread.gmane.org/gmane.comp.bug-tracking.roundup.user/10169
13 - new rdbms config item sqlite_timeout makes the previously hard-coded
14   timeout of 30 seconds configurable. This is the time a client waits
15   for the locked database to become free before giving up. Used only for
16   SQLite backend.
17 - new mailgw config item unpack_rfc822 that unpacks message attachments
18   of type message/rfc822 and attaches the individual parts instead of
19   attaching the whole message/rfc822 attachment to the roundup issue.
21 Fixed:
23 - fixed reporting of source missing warnings
24 - relevant tests made locale independent, issue2550660 (thanks
25   Benni Baermann for reporting).
26 - fix for incorrect except: syntax, issue2550661 (thanks Jakub Wilk)
27 - No longer use the root logger, use a logger with prefix "roundup",
28   see http://thread.gmane.org/gmane.comp.bug-tracking.roundup.devel/5356
29 - improve handling of '>' when URLs are converted to links, issue2550664
30   (thanks Ezio Melotti)
31 - fixed registration, issue2550665 (thanks Timo Paulssen)
32 - make sorting of multilinks in the web interface more robust, issue2550663
33 - Fix charset of first text-part of outgoing multipart messages, thanks Dirk
34   Geschke for reporting, see
35   http://thread.gmane.org/gmane.comp.bug-tracking.roundup.user/10223
36 - Fix handling of incoming message/rfc822 attachments. These resulted in
37   a weird mail usage error because the email module threw a TypeError
38   which roundup interprets as a Reject exception. Fixes issue2550667.
39   Added regression tests for message/rfc822 attachments with and without
40   configured unpacking (mailgw unpack_rfc822, see Features above)
41   Thanks to Benni Baermann for reporting.
42 - Allow search_popup macro to work with all db classes, issue2550567
43   (thanks John Kristensen)
44 - lower memory footprint for (journal-) import
46 If you're upgrading from an older version of Roundup you *must* follow
47 the "Software Upgrade" guidelines given in the maintenance documentation.
49 Roundup requires python 2.3 or later (but not 3+) for correct operation.
51 To give Roundup a try, just download (see below), unpack and run::
53     roundup-demo
55 Release info and download page:
56      http://cheeseshop.python.org/pypi/roundup
57 Source and documentation is available at the website:
58      http://roundup-tracker.org/
59 Mailing lists - the place to ask questions:
60      http://sourceforge.net/mail/?group_id=31577
63 About Roundup
64 =============
66 Roundup is a simple-to-use and -install issue-tracking system with
67 command-line, web and e-mail interfaces. It is based on the winning design
68 from Ka-Ping Yee in the Software Carpentry "Track" design competition.
70 Note: Ping is not responsible for this project. The contact for this
71 project is richard@users.sourceforge.net.
73 Roundup manages a number of issues (with flexible properties such as
74 "description", "priority", and so on) and provides the ability to:
76 (a) submit new issues,
77 (b) find and edit existing issues, and
78 (c) discuss issues with other participants.
80 The system will facilitate communication among the participants by managing
81 discussions and notifying interested parties when issues are edited. One of
82 the major design goals for Roundup that it be simple to get going. Roundup
83 is therefore usable "out of the box" with any python 2.3+ (but not 3+)
84 installation. It doesn't even need to be "installed" to be operational,
85 though an install script is provided.
87 It comes with two issue tracker templates (a classic bug/feature tracker and
88 a minimal skeleton) and four database back-ends (anydbm, sqlite, mysql
89 and postgresql).