# HG changeset patch # User Richard Jones # Date 1046344884 0 # Node ID ed404289b490567e88734a2dbc70fcabfef9ff02 # Parent 31cc79f966ac033af0c1f20acecfaf2fc3111024 pre-release changes diff -r 31cc79f966ac -r ed404289b490 CHANGES.txt --- a/CHANGES.txt Thu Feb 27 11:21:04 2003 +0000 +++ b/CHANGES.txt Thu Feb 27 11:21:24 2003 +0000 @@ -1,7 +1,7 @@ This file contains the changes to the Roundup system over time. The entries are given with the most recent entry first. -2003-??-?? 0.5.6 +2003-02-27 0.5.6 - fixed templating filter function arguments (sf bug 678911) - fixed multiselect in searching (sf bug 676874) - fixed parsing of content-disposition filenames (sf bug 675116) @@ -15,6 +15,7 @@ - fixed error in indexargs_url (thanks Patrick Ohly) - fixed getnode (sf bug 684531) - fixed args to some date templating methods (sf bug 689670) +- fixed database corruption in rdbms property mutation 2003-01-24 0.5.5 diff -r 31cc79f966ac -r ed404289b490 doc/announcement.txt --- a/doc/announcement.txt Thu Feb 27 11:21:04 2003 +0000 +++ b/doc/announcement.txt Thu Feb 27 11:21:24 2003 +0000 @@ -1,29 +1,33 @@ ================================================= -SC-Track Roundup 0.5.5 - an issue tracking system +SC-Track Roundup 0.5.6 - an issue tracking system ================================================= +Note: This releases fixes a serious bug in the sqlite and gadfly backends +which could cause data loss. Users are strongly encouraged to upgrade to this +version. + This is a bugfix release for version 0.5.x - if you're upgrading from before 0.5, you *must* read doc/upgrading.txt! -Unfortunately, the Zope frontend for Roundup is currently broken, with no -fix in the forseeable future. - Roundup requires python 2.1.3 or later for correct operation. Users of the sqlite backend are encouraged to upgrade sqlite to version 2.7.3. We've had a good crack at bugs (thanks to all who contributed!): -- fixed rdbms searching by ID (sf bug 666615) -- fixed metakit searching by ID -- detect corrupted index and raise semi-useful exception (sf bug 666767) -- open server logfile unbuffered -- revert StringHTMLProperty to not hyperlink text by default -- several fixes to CGI form handling -- fix unlink journalling bug in metakit backend -- fixed hyperlinking ambiguity (sf bug 669777) -- fixed cookie path to use TRACKER_WEB (sf bug 667020) (thanks Nathaniel Smith - for helping chase it down and Luke Opperman for confirming fix) - +- fixed database corruption in rdbms property mutation +- fixed templating filter function arguments (sf bug 678911) +- fixed multiselect in searching (sf bug 676874) +- fixed parsing of content-disposition filenames (sf bug 675116) +- added 'h' to roundup-server optarg list (sf bug 674070) +- fixed doc for db.history in anydbm and rdbms_common (sf bug 679221) +- fixed roundup-reminder (sf bug 681042) +- fixed int assumptions about Number values (sf bug 677762) +- clarified licensing +- another attempt to fix cookie misbehaviour - customise cookie name using + tracker name +- fixed error in indexargs_url (thanks Patrick Ohly) +- fixed getnode (sf bug 684531) +- fixed args to some date templating methods (sf bug 689670) Source and documentation is available at the website: http://roundup.sourceforge.net/ diff -r 31cc79f966ac -r ed404289b490 roundup/__init__.py --- a/roundup/__init__.py Thu Feb 27 11:21:04 2003 +0000 +++ b/roundup/__init__.py Thu Feb 27 11:21:24 2003 +0000 @@ -15,7 +15,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: __init__.py,v 1.18.2.1 2003-01-24 06:25:15 richard Exp $ +# $Id: __init__.py,v 1.18.2.2 2003-02-27 11:21:24 richard Exp $ ''' Roundup - issue tracking for knowledge workers. @@ -67,6 +67,6 @@ much prettier cake :) ''' -__version__ = '0.5.5' +__version__ = '0.5.6' # vim: set filetype=python ts=4 sw=4 et si diff -r 31cc79f966ac -r ed404289b490 setup.py --- a/setup.py Thu Feb 27 11:21:04 2003 +0000 +++ b/setup.py Thu Feb 27 11:21:24 2003 +0000 @@ -16,7 +16,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: setup.py,v 1.41.2.1 2003-02-20 22:59:01 richard Exp $ +# $Id: setup.py,v 1.41.2.2 2003-02-27 11:21:21 richard Exp $ from distutils.core import setup, Extension from distutils.util import get_platform @@ -181,7 +181,7 @@ setup( name = "roundup", version = __version__, - description = "Roundup issue tracking system.", + description = "Roundup issue tracking system", author = "Richard Jones", author_email = "richard@users.sourceforge.net", url = 'http://sourceforge.net/projects/roundup/',