# HG changeset patch # User Richard Jones # Date 1237347598 0 # Node ID 4d1fa6e1fe8c67c4b0651282b36bd5db56597ac4 # Parent 391fa482f995b9d1f39b35f0ed14153926927e84 release stuff diff -r 391fa482f995 -r 4d1fa6e1fe8c CHANGES.txt --- a/CHANGES.txt Tue Mar 17 23:14:50 2009 +0000 +++ b/CHANGES.txt Wed Mar 18 03:39:58 2009 +0000 @@ -1,10 +1,11 @@ This file contains the changes to the Roundup system over time. The entries are given with the most recent entry first. -2009-03-?? 1.4.8 +2009-03-18 1.4.8 (r4209) Fixes: -- bug introduced into CVS export and view +- bug introduced into hyperdb filter (issue 2550505) +- bug introduced into CVS export and view (issue 2550529) - bugs introduced in the migration to the email package (issue 2550531) - handle bogus pagination values (issue 2550530) - fix TLS handling with some SMTP servers (issues 2484879 and 1912923) diff -r 391fa482f995 -r 4d1fa6e1fe8c doc/announcement.txt --- a/doc/announcement.txt Tue Mar 17 23:14:50 2009 +0000 +++ b/doc/announcement.txt Wed Mar 18 03:39:58 2009 +0000 @@ -1,19 +1,16 @@ -I'm proud to release version 1.4.7 of Roundup. +I'm proud to release version 1.4.8 of Roundup. -1.4.7 is primarily a bugfix release which contains important security -fixes: +This release fixes some regressions: -- a number of security issues were discovered by Daniel Diniz -- EditCSV and ExportCSV altered to include permission checks -- HTTP POST required on actions which alter data -- HTML file uploads served as application/octet-stream -- Handle Unauthorised in file serving correctly -- New item action reject creation of new users -- Item retirement was not being controlled -- Roundup is now compatible with Python 2.6 -- Improved French and German translations -- Improve consistency of item sorting in HTML interface -- Various other small bug fixes, robustification and optimisation +- bug introduced into hyperdb filter (issue 2550505) +- bug introduced into CVS export and view (issue 2550529) +- bugs introduced in the migration to the email package (issue 2550531) + +And adds a couple of other fixes: + +- handle bogus pagination values (issue 2550530) +- fix TLS handling with some SMTP servers (issues 2484879 and 1912923) + Though some new features made it in also: diff -r 391fa482f995 -r 4d1fa6e1fe8c roundup/__init__.py --- a/roundup/__init__.py Tue Mar 17 23:14:50 2009 +0000 +++ b/roundup/__init__.py Wed Mar 18 03:39:58 2009 +0000 @@ -68,6 +68,6 @@ ''' __docformat__ = 'restructuredtext' -__version__ = '1.4.7' +__version__ = '1.4.8' # vim: set filetype=python ts=4 sw=4 et si diff -r 391fa482f995 -r 4d1fa6e1fe8c setup.py --- a/setup.py Tue Mar 17 23:14:50 2009 +0000 +++ b/setup.py Wed Mar 18 03:39:58 2009 +0000 @@ -101,32 +101,17 @@ description="A simple-to-use and -install issue-tracking system" " with command-line, web and e-mail interfaces. Highly" " customisable.", - long_description='''In this release -=============== - -1.4.7 is primarily a bugfix release which contains important security -fixes: + long_description=''' +1.4.8 fixes some regressions: -- a number of security issues were discovered by Daniel Diniz -- EditCSV and ExportCSV altered to include permission checks -- HTTP POST required on actions which alter data -- HTML file uploads served as application/octet-stream -- Handle Unauthorised in file serving correctly -- New item action reject creation of new users -- Item retirement was not being controlled -- Roundup is now compatible with Python 2.6 -- Improved French and German translations -- Improve consistency of item sorting in HTML interface -- Various other small bug fixes, robustification and optimisation +- bug introduced into hyperdb filter (issue 2550505) +- bug introduced into CVS export and view (issue 2550529) +- bugs introduced in the migration to the email package (issue 2550531) -Though some new features made it in also: +And adds a couple of other fixes: -- Provide a "no selection" option in web interface selection widgets -- Debug logging now uses the logging module rather than print -- Allow CGI frontend to serve XMLRPC requests. -- Added XMLRPC actions, as well as bridging CGI actions to XMLRPC actions. -- Optimized large file serving via mod_python / sendfile(). -- Support resuming downloads for (large) files. +- handle bogus pagination values (issue 2550530) +- fix TLS handling with some SMTP servers (issues 2484879 and 1912923) If you're upgrading from an older version of Roundup you *must* follow the "Software Upgrade" guidelines given in the maintenance documentation.