summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 50e9683)
raw | patch | inline | side by side (parent: 50e9683)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Wed, 18 Mar 2009 03:39:58 +0000 (03:39 +0000) | ||
committer | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Wed, 18 Mar 2009 03:39:58 +0000 (03:39 +0000) |
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/roundup/trunk@4209 57a73879-2fb5-44c3-a270-3262357dd7e2
CHANGES.txt | patch | blob | history | |
doc/announcement.txt | patch | blob | history | |
roundup/__init__.py | patch | blob | history | |
setup.py | patch | blob | history |
diff --git a/CHANGES.txt b/CHANGES.txt
index 7155fb23970c5e6dedfb72ddc2ca21f8f589552c..30240e58a93914914e44f01aa93a30ef7d54c2d8 100644 (file)
--- a/CHANGES.txt
+++ b/CHANGES.txt
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 --git a/doc/announcement.txt b/doc/announcement.txt
index 2b12502700eabb17d0453a2d6149a2e640dc9ff6..f097011ec67e1dbfa911981e8cf623c7cde9a847 100644 (file)
--- a/doc/announcement.txt
+++ b/doc/announcement.txt
-I'm proud to release version 1.4.7 of Roundup.
-
-1.4.7 is primarily a bugfix release which contains important security
-fixes:
-
-- 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
+I'm proud to release version 1.4.8 of Roundup.
+
+This release fixes some regressions:
+
+- 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 --git a/roundup/__init__.py b/roundup/__init__.py
index 571e928938a0c9368d896cece2ef9ab9f188aa17..1c3b24d61f2e7da18b3751751b9249cc9ead9caa 100644 (file)
--- a/roundup/__init__.py
+++ b/roundup/__init__.py
'''
__docformat__ = 'restructuredtext'
-__version__ = '1.4.7'
+__version__ = '1.4.8'
# vim: set filetype=python ts=4 sw=4 et si
diff --git a/setup.py b/setup.py
index 6525f2d558e0c9e4508951a33dbd1288ec74044d..d73f7cf987c248d7547d30319fef14446e1bfec2 100644 (file)
--- a/setup.py
+++ b/setup.py
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:
-
-- 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
-
-Though some new features made it in also:
-
-- 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.
+ long_description='''
+1.4.8 fixes some regressions:
+
+- 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)
If you're upgrading from an older version of Roundup you *must* follow
the "Software Upgrade" guidelines given in the maintenance documentation.