# HG changeset patch # User Richard Jones # Date 1058511956 0 # Node ID 311375e4f2fe06e006deb2ffa6c7224106985f39 # Parent 78cdb73a0b2a6cda3f019cebf699897b8574ee50 pre-release machinations diff -r 78cdb73a0b2a -r 311375e4f2fe CHANGES.txt --- a/CHANGES.txt Fri Jul 18 05:40:44 2003 +0000 +++ b/CHANGES.txt Fri Jul 18 07:05:56 2003 +0000 @@ -1,13 +1,14 @@ This file contains the changes to the Roundup system over time. The entries are given with the most recent entry first. -2003-07-?? 0.5.9 +2003-07-18 0.5.9 - backported XSS message cleaning fix (sf bug 757128) - only clean sessions once per hour (backport from trunk) - remember the session db type (much faster session db opening) - backported last-modified and if-modified-since header support for static files (ie. style.css etc.) from HEAD - changed rdbms_common to fix sql backends under Py2.3 +- don't open the database in cgi if it's not necessary 2003-06-19 0.5.8 diff -r 78cdb73a0b2a -r 311375e4f2fe doc/announcement.txt --- a/doc/announcement.txt Fri Jul 18 05:40:44 2003 +0000 +++ b/doc/announcement.txt Fri Jul 18 07:05:56 2003 +0000 @@ -1,5 +1,5 @@ ================================================= -SC-Track Roundup 0.5.8 - an issue tracking system +SC-Track Roundup 0.5.9 - an issue tracking system ================================================= This is a bugfix release for version 0.5.x - if you're upgrading from before @@ -14,8 +14,13 @@ This release has: -- a couple of bug fixes -- a couple of major speed-ups for web users +- backported XSS message cleaning fix (sf bug 757128) +- only clean sessions once per hour (backport from HEAD) +- remember the session db type (much faster session db opening) +- backported last-modified and if-modified-since header support for static + files (ie. style.css etc.) from HEAD +- changed rdbms_common to fix sql backends under Py2.3 +- don't open the database in cgi if it's not necessary Source and documentation is available at the website: http://roundup.sourceforge.net/ diff -r 78cdb73a0b2a -r 311375e4f2fe roundup/__init__.py --- a/roundup/__init__.py Fri Jul 18 05:40:44 2003 +0000 +++ b/roundup/__init__.py Fri Jul 18 07:05:56 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.4 2003-06-18 23:52:54 richard Exp $ +# $Id: __init__.py,v 1.18.2.5 2003-07-18 07:05:56 richard Exp $ ''' Roundup - issue tracking for knowledge workers. @@ -67,6 +67,6 @@ much prettier cake :) ''' -__version__ = '0.5.8' +__version__ = '0.5.9' # vim: set filetype=python ts=4 sw=4 et si