# HG changeset patch # User Richard Jones # Date 1277950851 0 # Node ID bddc72753d91b2f968778b58bef545bb957ac159 # Parent 6893b5253dacc6da8792dcd48e5df0593bf48669 pre-release stuff diff -r 6893b5253dac -r bddc72753d91 doc/announcement.txt --- a/doc/announcement.txt Thu Jul 01 01:44:17 2010 +0000 +++ b/doc/announcement.txt Thu Jul 01 02:20:51 2010 +0000 @@ -1,7 +1,25 @@ -I'm proud to release version 1.4.13 of Roundup which includes a single -fix for a regression introduced in 1.4.12: +I'm proud to release version 1.4.14 of Roundup which includes a security +fix and some other fixes: + +Features: +- Preparations for getting 2to3 work, not completed yet. (Richard Jones) -- Multilink edit fields lose their values (thanks Will Maier) +Fixed: +- User input not escaped when a bad template name is supplied (thanks + Benjamin Pollack) +- The email for the first message on an issue was having its In-Reply-To + set to itself (thanks Eric Kow) +- Handle multiple @action values from broken trackers. +- Accept single-character subject lines +- xmlrpc handling of unicode characters and binary values, see + http://thread.gmane.org/gmane.comp.bug-tracking.roundup.user/10040 + thanks to Hauke Duden for reporting these. +- frontends/roundup.cgi got out of sync with the roundup.cgi.Client API +- Default to "text/plain" if no Content-Type header is present in email + (thanks Hauke Duden) +- Small documentation update regarding debugging aids (Bernhard Reiter) +- Indexer Xapian, made Xapian 1.2 compatible. Needs at least Xapian 1.0.0 now. + (Bernhard Reiter; Thanks to Olly Betts for providing the patch Issue2550647.) If you're upgrading from an older version of Roundup you *must* follow the "Software Upgrade" guidelines given in the maintenance documentation. diff -r 6893b5253dac -r bddc72753d91 roundup/__init__.py --- a/roundup/__init__.py Thu Jul 01 01:44:17 2010 +0000 +++ b/roundup/__init__.py Thu Jul 01 02:20:51 2010 +0000 @@ -68,6 +68,6 @@ ''' __docformat__ = 'restructuredtext' -__version__ = '1.5.0' +__version__ = '1.4.14' # vim: set filetype=python ts=4 sw=4 et si