Code

*** empty log message ***
[roundup.git] / doc / announcement.txt
1 This is the second beta release of Roundup version 0.7. It fixes some bugs
2 in the previous beta release:
4 - Boolean, Date and Link HTML templating was broken
5 - fix reporting of test inclusion in postgresql test
6 - EditAction was confused about who "self" was
7 - edit collision detection was broken for index-page edits
8 - sqlite backend wasn't migrating multilink tables correctly
9 - use SimpleCookie instead of Cookie (is an alias for the evil SmartCookie)
10 - handle older sessions in session dbm
11 - make presetunread more resilient to status Class changes
12 - HTMLDatabase classes() was broken
14 If you're upgrading from an older version of Roundup you *must* follow
15 the "Software Upgrade" guidelines given in the maintenance documentation.
17 No, really, this is a BETA and if you don't follow the upgrading steps,
18 particularly the bit about BACKING UP YOUR DATA, I'm NOT GOING TO BE HELD
19 RESPONSIBLE. This release is NOT FOR GENERAL USE.
21 I would *greatly* appreciate people giving this release a whirl with a
22 copy of their existing setup. It's only through real-world testing of
23 beta releases that we can ensure that older trackers will be OK.
25 Version 0.7 introduces far too many features to list here. I've put
26 together a What's New page:
28   http://roundup.sourceforge.net/doc-0.7/whatsnew-0.7.html
30 Some highlights:
32 - added postgresql backend
33 - RDBMS backends have no external locking requirements
34 - new "actor" automatic property (user who caused the last "activity")
35 - RDBMS backends have data typed columns and indexes on several columns
36 - we support confirming registration by replying to the email
37 - all HTML templating methods now automatically check for permissions,
38   greatly simplifying templates
40 Roundup requires python 2.1.3 or later for correct operation.
42 To give Roundup a try, just download (see below), unpack and run::
44     python demo.py
46 Source and documentation is available at the website:
47      http://roundup.sourceforge.net/
48 Release Info (via download page):
49      http://sourceforge.net/projects/roundup
50 Mailing lists - the place to ask questions:
51      http://sourceforge.net/mail/?group_id=31577
54 About Roundup
55 =============
57 Roundup is a simple-to-use and -install issue-tracking system with
58 command-line, web and e-mail interfaces. It is based on the winning design
59 from Ka-Ping Yee in the Software Carpentry "Track" design competition.
61 Note: Ping is not responsible for this project. The contact for this
62 project is richard@users.sourceforge.net.
64 Roundup manages a number of issues (with flexible properties such as
65 "description", "priority", and so on) and provides the ability to:
67 (a) submit new issues,
68 (b) find and edit existing issues, and
69 (c) discuss issues with other participants.
71 The system will facilitate communication among the participants by managing
72 discussions and notifying interested parties when issues are edited. One of
73 the major design goals for Roundup that it be simple to get going. Roundup
74 is therefore usable "out of the box" with any python 2.1+ installation. It
75 doesn't even need to be "installed" to be operational, though a
76 disutils-based install script is provided.
78 It comes with two issue tracker templates (a classic bug/feature tracker and
79 a minimal skeleton) and seven database back-ends (anydbm, bsddb, bsddb3,
80 sqlite, metakit, mysql and postgresql).