~certify-web-dev/twisted/certify-trunk

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2009-02-21 18:17:46 UTC
  • mfrom: (2.1.4 sid)
  • Revision ID: james.westby@ubuntu.com-20090221181746-jx37hyuf8ljaj524
Tags: 8.2.0-1ubuntu1
* Tigthen dependencies to 8.2.
* Build-depend on python-central (>= 0.6.11).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
Ticket numbers in this file can be looked up by visiting
2
2
http://twistedmatrix.com/trac/ticket/<number>
3
3
 
 
4
Core 8.2.0 (2008-12-16)
 
5
=======================
 
6
 
 
7
Features
 
8
--------
 
9
 - Reactors are slowly but surely becoming more isolated, thus improving
 
10
   testability (#3198)
 
11
 - FilePath has gained a realpath method, and FilePath.walk no longer infinitely
 
12
   recurses in the case of a symlink causing a self-recursing filesystem tree
 
13
   (#3098)
 
14
 - FilePath's moveTo and copyTo methods now have an option to disable following
 
15
   of symlinks (#3105)
 
16
 - Private APIs are now included in the API documentation (#3268)
 
17
 - hotshot is now the default profiler for the twistd --profile parameter and
 
18
   using cProfile is now documented (#3355, #3356)
 
19
 - Process protocols can now implement a processExited method, which is
 
20
   distinct from processEnded in that it is called immediately when the child
 
21
   has died, instead of waiting for all the file descriptors to be closed
 
22
   (#1291)
 
23
 - twistd now has a --umask option (#966, #3024)
 
24
 - A new deferToThreadPool function exists in twisted.internet.threads (#2845)
 
25
 - There is now an example of writing an FTP server in examples/ftpserver.py
 
26
   (#1579)
 
27
 - A new runAsEffectiveUser function has been added to twisted.python.util
 
28
   (#2607)
 
29
 - twisted.internet.utils.getProcessOutput now offers a mechanism for
 
30
   waiting for the process to actually end, in the event of data received on
 
31
   stderr (#3239)
 
32
 - A fullyQualifiedName function has been added to twisted.python.reflect
 
33
   (#3254)
 
34
 - strports now defaults to managing access to a UNIX socket with a lock;
 
35
   lockfile=0 can be included in the strports specifier to disable this
 
36
   behavior (#2295)
 
37
 - FTPClient now has a 'rename' method (#3335)
 
38
 - FTPClient now has a 'makeDirectory' method (#3500)
 
39
 - FTPClient now has a 'removeFile' method (#3491)
 
40
 - flushWarnings, A new Trial method for testing warnings, has been added
 
41
   (#3487, #3427, #3506)
 
42
 - The log observer can now be configured in .tac files (#3534)
 
43
 
 
44
Fixes
 
45
-----
 
46
 - TLS Session Tickets are now disabled by default, allowing connections to
 
47
   certain servers which hang when an empty session ticket is received (like 
 
48
   GTalk) (#3463)
 
49
 - twisted.enterprise.adbapi.ConnectionPool's noisy attribute now defaults to
 
50
   False, as documented (#1806)
 
51
 - Error handling and logging in adbapi is now much improved (#3244)
 
52
 - TCP listeners can now be restarted (#2913)
 
53
 - Doctests can now be rerun with trial's --until-failure option (#2713)
 
54
 - Some memory leaks have been fixed in trial's --until-failure
 
55
   implementation (#3119, #3269)
 
56
 - Trial's summary reporter now prints correct runtime information and handles
 
57
   the case of 0 tests (#3184)
 
58
 - Trial and any other user of the 'namedAny' function now has better error
 
59
   reporting in the case of invalid module names (#3259)
 
60
 - Multiple instances of trial can now run in parallel in the same directory
 
61
   by creating _trial_temp directories with an incremental suffix (#2338)
 
62
 - Trial's failUnlessWarns method now works on Python 2.6 (#3223)
 
63
 - twisted.python.log now hooks into the warnings system in a way compatible
 
64
   with Python 2.6 (#3211)
 
65
 - The GTK2 reactor is now better supported on Windows, but still not passing
 
66
   the entire test suite (#3203)
 
67
 - low-level failure handling in spawnProcess has been improved and no longer
 
68
   leaks file descriptors (#2305, #1410)
 
69
 - Perspective Broker avatars now have their logout functions called in more
 
70
   cases (#392)
 
71
 - Log observers which raise exceptions are no longer removed (#1069)
 
72
 - transport.getPeer now always includes an IP address in the Address returned
 
73
   instead of a hostname (#3059)
 
74
 - Functions in twisted.internet.utils which spawn processes now avoid calling
 
75
   chdir in the case where no working directory is passed, to avoid some
 
76
   obscure permission errors (#3159)
 
77
 - twisted.spread.publish.Publishable no longer corrupts line endings on
 
78
   Windows (#2327)
 
79
 - SelectReactor now properly detects when a TLS/TCP connection has been
 
80
   disconnected (#3218)
 
81
 - twisted.python.lockfile no longer raises an EEXIST OSError and is much
 
82
   better supported on Windows (#3367)
 
83
 - When ITLSTransport.startTLS is called while there is data in the write
 
84
   buffer, TLS negotiation will now be delayed instead of the method raising
 
85
   an exception (#686)
 
86
 - The userAnonymous argument to FTPFactory is now honored (#3390)
 
87
 - twisted.python.modules no longer tries to "fix" sys.modules after an import
 
88
   error, which was just causing problems (#3388)
 
89
 - setup.py no longer attempts to build extension modules when run with Jython
 
90
   (#3410)
 
91
 - AMP boxes can now be sent in IBoxReceiver.startReceivingBoxes (#3477)
 
92
 - AMP connections are closed as soon as a key length larger than 255 is
 
93
   received (#3478)
 
94
 - Log events with timezone offsets between -1 and -59 minutes are now
 
95
   correctly reported as negative (#3515)
 
96
 
 
97
Deprecations and Removals
 
98
-------------------------
 
99
 - Trial's setUpClass and tearDownClass methods are now deprecated (#2903)
 
100
 - problemsFromTransport has been removed in favor of the argument passed to
 
101
   connectionLost (#2874)
 
102
 - The mode parameter to methods of IReactorUNIX and IReactorUNIXDatagram are
 
103
   deprecated in favor of applications taking other security precautions, since
 
104
   the mode of a Unix socket is often not respected (#1068)
 
105
 - Index access on instances of twisted.internet.defer.FirstError has been
 
106
   removed in favor of the subFailure attribute (#3298)
 
107
 - The 'changeDirectory' method of FTPClient has been deprecated in favor of
 
108
   the 'cwd' method (#3491)
 
109
 
 
110
Other
 
111
-----
 
112
 
 
113
 - #3202, #2869, #3225, #2955, #3237, #3196, #2355, #2881, #3054, #2374, #2918,
 
114
   #3210, #3052, #3267, #3288, #2985, #3295, #3297, #2512, #3302, #1222, #2631,
 
115
   #3306, #3116, #3215, #1489, #3319, #3320, #3321, #1255, #2169, #3182, #3323,
 
116
   #3301, #3318, #3029, #3338, #3346, #1144, #3173, #3165, #685, #3357, #2582,
 
117
   #3370, #2438, #1253, #637, #1971, #2208, #979, #1790, #1888, #1882, #1793,
 
118
   #754, #1890, #1931, #1246, #1025, #3177, #2496, #2567, #3400, #2213, #2027,
 
119
   #3415, #1262, #3422, #2500, #3414, #3045, #3111, #2974, #2947, #3222, #2878,
 
120
   #3402, #2909, #3423, #1328, #1852, #3382, #3393, #2029, #3489, #1853, #2026,
 
121
   #2375, #3502, #3482, #3504, #3505, #3507, #2605, #3519, #3520, #3121, #3484,
 
122
   #3439, #3216, #3511, #3524, #3521, #3197, #2486, #2449, #2748, #3381, #3236,
 
123
   #671
 
124
 
 
125
 
4
126
8.1.0 (2008-05-18)
5
127
==================
6
128