Skip to content

Commit 27a42d8

Browse files
author
Richard Jones
committed
pre-release stuff
1 parent fddb83a commit 27a42d8

File tree

3 files changed

+42
-7
lines changed

3 files changed

+42
-7
lines changed

CHANGES.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ This file contains the changes to the Roundup system over time. The entries
22
are given with the most recent entry first. If no other name is given,
33
Richard Jones did the change.
44

5-
2010-??-?? 1.4.16
5+
2010-10-08 1.4.16
66

77
Features:
88

doc/announcement.txt

Lines changed: 40 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,47 @@
1-
I'm proud to release version 1.4.15 of Roundup which mostly fixes some
2-
regressions in the last release:
1+
I'm proud to release version 1.4.16 of Roundup which introduces some
2+
minor features and, as usual, fixes some bugs:
3+
4+
Features:
5+
6+
- allow trackers to override the classes used to render properties in
7+
templating per issue2550659 (thanks Ezio Melotti)
8+
- new mailgw configuration item "subject_updates_title": If set to "no"
9+
a changed subject in a reply to an issue will not update the issue
10+
title with the changed subject. Thanks to Arkadiusz Kita and Peter
11+
Funk for requesting the feature and discussing the implementation.
12+
http://thread.gmane.org/gmane.comp.bug-tracking.roundup.user/10169
13+
- new rdbms config item sqlite_timeout makes the previously hard-coded
14+
timeout of 30 seconds configurable. This is the time a client waits
15+
for the locked database to become free before giving up. Used only for
16+
SQLite backend.
17+
- new mailgw config item unpack_rfc822 that unpacks message attachments
18+
of type message/rfc822 and attaches the individual parts instead of
19+
attaching the whole message/rfc822 attachment to the roundup issue.
320

421
Fixed:
522

6-
- A bunch of regressions were introduced in the last release making Roundup
7-
no longer work in Python releases prior to 2.6
8-
- make URL detection a little smarter about brackets per issue2550657
23+
- fixed reporting of source missing warnings
24+
- relevant tests made locale independent, issue2550660 (thanks
25+
Benni Bärmann for reporting).
26+
- fix for incorrect except: syntax, issue2550661 (thanks Jakub Wilk)
27+
- No longer use the root logger, use a logger with prefix "roundup",
28+
see http://thread.gmane.org/gmane.comp.bug-tracking.roundup.devel/5356
29+
- improve handling of '>' when URLs are converted to links, issue2550664
930
(thanks Ezio Melotti)
31+
- fixed registration, issue2550665 (thanks Timo Paulssen)
32+
- make sorting of multilinks in the web interface more robust, issue2550663
33+
- Fix charset of first text-part of outgoing multipart messages, thanks Dirk
34+
Geschke for reporting, see
35+
http://thread.gmane.org/gmane.comp.bug-tracking.roundup.user/10223
36+
- Fix handling of incoming message/rfc822 attachments. These resulted in
37+
a weird mail usage error because the email module threw a TypeError
38+
which roundup interprets as a Reject exception. Fixes issue2550667.
39+
Added regression tests for message/rfc822 attachments with and without
40+
configured unpacking (mailgw unpack_rfc822, see Features above)
41+
Thanks to Benni Bärmann for reporting.
42+
- Allow search_popup macro to work with all db classes, issue2550567
43+
(thanks John Kristensen)
44+
- lower memory footprint for (journal-) import
1045

1146
If you're upgrading from an older version of Roundup you *must* follow
1247
the "Software Upgrade" guidelines given in the maintenance documentation.

roundup/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,6 @@
6868
'''
6969
__docformat__ = 'restructuredtext'
7070

71-
__version__ = '1.4.15'
71+
__version__ = '1.4.16'
7272

7373
# vim: set filetype=python ts=4 sw=4 et si

0 commit comments

Comments
 (0)