File tree Expand file tree Collapse file tree 4 files changed +22
-8
lines changed
Expand file tree Collapse file tree 4 files changed +22
-8
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ to find out how to install this software.
99Building and distributing a release of Roundup is done by running:
1010
11111. Make sure the unit tests run! "./run_tests.py"
12- 2. Tag the CVS for the release, eg. "cvs tag -R release-0-6-3"
12+ 2. XXX " tag" SVN??
13133. Edit roundup/__init__.py and doc/announcement.txt to reflect the new
1414 version and appropriate announcements. Add truncated announcement to
1515 setup.py description field.
Original file line number Diff line number Diff line change 11This file contains the changes to the Roundup system over time. The entries
22are given with the most recent entry first.
33
4- 2009-03-?? 1.4.7
4+ 2009-03-13 1.4.7 (r4195)
55
66Fixes:
77- a number of security issues were discovered by Daniel Diniz
Original file line number Diff line number Diff line change 1- I'm proud to release version 1.4.6 of Roundup.
2-
3- 1.4.6 is a bugfix release:
4-
5- - Fix bug introduced in 1.4.5 in RDBMS full-text indexing
6- - Make URL matching code less matchy
1+ I'm proud to release version 1.4.7 of Roundup.
2+
3+ 1.4.7 is primarily a bugfix release which contains important security
4+ fixes:
5+
6+ - a number of security issues were discovered by Daniel Diniz
7+ - EditCSV and ExportCSV altered to include permission checks
8+ - HTTP POST required on actions which alter data
9+ - HTML file uploads served as application/octet-stream
10+ - New item action reject creation of new users
11+ - Item retirement was not being controlled
12+ - Roundup is now compatible with Python 2.6
13+ - Improved French and German translations
14+ - Improve consistency of item sorting in HTML interface
15+ - Support sendfile() in mod_python for better file transfer
16+ - Provide a "no selection" option in web interface selection widgets
17+ - Debug logging now uses the logging module rather than print
18+ - Enable XML-RPC through regular web interface
19+ - Various other small bug fixes, robustification and optimisation
720
821If you're upgrading from an older version of Roundup you *must* follow
922the "Software Upgrade" guidelines given in the maintenance documentation.
Original file line number Diff line number Diff line change @@ -36,6 +36,7 @@ def setUp(self):
3636 self .server = RoundupInstance (self .db , self .instance .actions , None )
3737
3838 def tearDown (self ):
39+ self .db .close ()
3940 try :
4041 shutil .rmtree (self .dirname )
4142 except OSError , error :
You can’t perform that action at this time.
0 commit comments