r46805 - newsfiles
hawkowl-TA+aISz0psMTMxyoc4vAAJOcrHinNvQL0E9HWUfgJXw@public.gmane.org
| Newsgroups | gmane.comp.python.twisted.commits |
|---|---|
| Message-ID | <[email protected]> |
Author: hawkowl Date: Mon Feb 15 18:02:51 2016 New Revision: 46805 Removed: branches/release-16.0.0-8210/twisted/conch/topfiles/5999.bugfix branches/release-16.0.0-8210/twisted/conch/topfiles/7037.misc branches/release-16.0.0-8210/twisted/conch/topfiles/7413.feature branches/release-16.0.0-8210/twisted/conch/topfiles/7715.misc branches/release-16.0.0-8210/twisted/conch/topfiles/7998.feature branches/release-16.0.0-8210/twisted/conch/topfiles/8138.bugfix branches/release-16.0.0-8210/twisted/conch/topfiles/8200.misc branches/release-16.0.0-8210/twisted/conch/topfiles/8208.misc branches/release-16.0.0-8210/twisted/topfiles/4811.bugfix branches/release-16.0.0-8210/twisted/topfiles/4811.feature branches/release-16.0.0-8210/twisted/topfiles/5642.feature branches/release-16.0.0-8210/twisted/topfiles/5704.feature branches/release-16.0.0-8210/twisted/topfiles/6833.feature branches/release-16.0.0-8210/twisted/topfiles/6842.misc branches/release-16.0.0-8210/twisted/topfiles/6978.misc branches/release-16.0.0-8210/twisted/topfiles/7668.misc branches/release-16.0.0-8210/twisted/topfiles/7671.feature branches/release-16.0.0-8210/twisted/topfiles/7791.misc branches/release-16.0.0-8210/twisted/topfiles/7881.misc branches/release-16.0.0-8210/twisted/topfiles/7943.misc branches/release-16.0.0-8210/twisted/topfiles/7944.misc branches/release-16.0.0-8210/twisted/topfiles/8014.bugfix branches/release-16.0.0-8210/twisted/topfiles/8050.misc branches/release-16.0.0-8210/twisted/topfiles/8104.misc branches/release-16.0.0-8210/twisted/topfiles/8115.misc branches/release-16.0.0-8210/twisted/topfiles/8116.removal branches/release-16.0.0-8210/twisted/topfiles/8119.misc branches/release-16.0.0-8210/twisted/topfiles/8122.misc branches/release-16.0.0-8210/twisted/topfiles/8125.bugfix branches/release-16.0.0-8210/twisted/topfiles/8131.feature branches/release-16.0.0-8210/twisted/topfiles/8139.misc branches/release-16.0.0-8210/twisted/topfiles/8144.misc branches/release-16.0.0-8210/twisted/topfiles/8145.removal branches/release-16.0.0-8210/twisted/topfiles/8148.removal branches/release-16.0.0-8210/twisted/topfiles/8154.misc branches/release-16.0.0-8210/twisted/topfiles/8162.misc branches/release-16.0.0-8210/twisted/topfiles/8173.doc branches/release-16.0.0-8210/twisted/topfiles/8180.misc branches/release-16.0.0-8210/twisted/topfiles/8187.misc branches/release-16.0.0-8210/twisted/web/topfiles/6082.feature branches/release-16.0.0-8210/twisted/web/topfiles/7993.feature branches/release-16.0.0-8210/twisted/web/topfiles/8102.bugfix branches/release-16.0.0-8210/twisted/web/topfiles/8129.feature branches/release-16.0.0-8210/twisted/web/topfiles/8132.feature branches/release-16.0.0-8210/twisted/web/topfiles/8136.removal branches/release-16.0.0-8210/twisted/web/topfiles/8140.misc branches/release-16.0.0-8210/twisted/web/topfiles/8169.bugfix branches/release-16.0.0-8210/twisted/web/topfiles/8169.removal branches/release-16.0.0-8210/twisted/web/topfiles/8182.misc Modified: branches/release-16.0.0-8210/NEWS branches/release-16.0.0-8210/twisted/conch/topfiles/NEWS branches/release-16.0.0-8210/twisted/mail/topfiles/NEWS branches/release-16.0.0-8210/twisted/names/topfiles/NEWS branches/release-16.0.0-8210/twisted/news/topfiles/NEWS branches/release-16.0.0-8210/twisted/pair/topfiles/NEWS branches/release-16.0.0-8210/twisted/runner/topfiles/NEWS branches/release-16.0.0-8210/twisted/topfiles/NEWS branches/release-16.0.0-8210/twisted/web/topfiles/NEWS branches/release-16.0.0-8210/twisted/words/topfiles/NEWS Log: newsfiles Modified: branches/release-16.0.0-8210/NEWS ============================================================================== --- branches/release-16.0.0-8210/NEWS (original) +++ branches/release-16.0.0-8210/NEWS Mon Feb 15 18:02:51 2016 @@ -1,6 +1,158 @@ Ticket numbers in this file can be looked up by visiting http://twistedmatrix.com/trac/ticket/<number> +Twisted Core 16.0.0pre1 (2016-02-16) +==================================== + +Features +-------- + - todo parameter for IReporter.addExpectedSuccess and + IReporter.addUnexpectedSuccess is no longer required. If not + provided, a sensible default will be used instead. (#4811) + - A new string endpoint type, "tls:", allows for properly-verified + TLS (unlike "ssl:", always matching hostname resolution with + certificate hostname verification) with faster IPv4/IPv6 + connections. This comes with an accompanying function, + twisted.internet.endpoints.wrapClientTLS, which can wrap an + arbitrary client endpoint with client TLS. (#5642) + - twisted.python.filepath.makedirs accepts an ignoreExistingDirectory + flag which ignore the OSError raised by os.makedirs if requested + directory already exists. (#5704) + - twisted.protocols.amp has been ported to Python 3. (#6833) + - twisted.internet.ssl.trustRootFromCertificates returns an object + suitable for use as trustRoot= to + twisted.internet.ssl.optionsForClientTLS that trusts multiple + certificates. (#7671) + - twisted.python.roots is now ported to Python 3. (#8131) + +Bugfixes +-------- + - Expected failures from standard library unittest no longer fail + with Trial reporters. (#4811) + - twisted.internet.endpoints.HostnameEndpoint.connect no longer fails + with an AlreadyCalledError when the Deferred it returns is + cancelled after all outgoing connection attempts have been made but + none have yet succeeded or failed. (#8014) + - twisted.internet.task.LoopingCall.withCount when run with internal + of 0, now calls the countCallable with 1, regardless of the time + passed between calls. (#8125) + +Improved Documentation +---------------------- + - The Twisted Project has adopted the Contributor Covenant as its + Code of Conduct. (#8173) + +Deprecations and Removals +------------------------- + - twisted.internet.task.LoopingCall.deferred is now deprecated. Use + the deferred returned by twisted.internet.task.LoopingCall.start() + (#8116) + - twisted.internet.gtkreactor, the GTK+ 1 reactor deprecated since + Twisted 10.1, has been removed. This does not affect the GTK2, + GLib, GTK3, or GObject-Introspection reactors. (#8145) + - twisted.protocols.mice, containing a Logitech MouseMan serial + driver, has been deprecated. (#8148) + +Other +----- + - #6842, #6978, #7668, #7791, #7881, #7943, #7944, #8050, #8104, + #8115, #8119, #8122, #8139, #8144, #8154, #8162, #8180, #8187 + + +Twisted Conch 16.0.0pre1 (2016-02-16) +===================================== + +Features +-------- + - twisted.conch now uses cryptography instead of PyCrypto for its + underlying crypto operations. (#7413) + - twisted.conch.ssh.keys is now ported to Python 3. (#7998) + +Bugfixes +-------- + - twisted.conch.ssh.channel.SSHChannel's getPeer and getHost methods + now return an object which provides IAddress instead of an old- + style tuple address. (#5999) + - twisted.conch.endpoint.SSHCommandClientEndpoint, when + authentication is delegated to an SSH agent, no longer leaves the + agent connection opened when connection to the server is lost. + (#8138) + +Other +----- + - #7037, #7715, #8200, #8208 + + +Twisted Mail 16.0.0pre1 (2016-02-16) +==================================== + +No significant changes have been made for this release. + + +Twisted Names 16.0.0pre1 (2016-02-16) +===================================== + +No significant changes have been made for this release. + + +Twisted News 16.0.0pre1 (2016-02-16) +==================================== + +No significant changes have been made for this release. + + +Twisted Pair 16.0.0pre1 (2016-02-16) +==================================== + +No significant changes have been made for this release. + + +Twisted Runner 16.0.0pre1 (2016-02-16) +====================================== + +No significant changes have been made for this release. + + +Twisted Web 16.0.0pre1 (2016-02-16) +=================================== + +Features +-------- + - twisted.web.http_headers._DictHeaders now correctly handles + updating via keyword arguments in Python 3 (therefore + twisted.web.http_headers is now fully ported to Python 3). (#6082) + - twisted.web.wsgi has been ported to Python 3. (#7993) + - twisted.web.http_headers.Headers now accepts both Unicode and + bytestring keys and values, encoding to iso-8859-1 and utf8 + respectively. (#8129) + - twisted.web.vhost ported to Python 3. (#8132) + +Bugfixes +-------- + - twisted.web.http.HTTPChannel now correctly handles non-ascii method + name by returning 400. Previously non-ascii method name was causing + unhandled exceptions. (#8102) + - twisted.web.static.File on Python 3 now redirects paths to + directories without a trailing slash, to a path with a trailing + slash, as on Python 2. (#8169) + +Deprecations and Removals +------------------------- + - twisted.web.http.Request's headers and request_headers attributes, + deprecated since Twisted 13.2, have been removed. (#8136) + - twisted.web.static.addSlash is deprecated. (#8169) + +Other +----- + - #8140, #8182 + + +Twisted Words 16.0.0pre1 (2016-02-16) +===================================== + +No significant changes have been made for this release. + + Twisted Core 15.5.0 (2015-11-28) ================================ Modified: branches/release-16.0.0-8210/twisted/conch/topfiles/NEWS ============================================================================== --- branches/release-16.0.0-8210/twisted/conch/topfiles/NEWS (original) +++ branches/release-16.0.0-8210/twisted/conch/topfiles/NEWS Mon Feb 15 18:02:51 2016 @@ -1,6 +1,30 @@ Ticket numbers in this file can be looked up by visiting http://twistedmatrix.com/trac/ticket/<number> +Twisted Conch 16.0.0pre1 (2016-02-16) +===================================== + +Features +-------- + - twisted.conch now uses cryptography instead of PyCrypto for its + underlying crypto operations. (#7413) + - twisted.conch.ssh.keys is now ported to Python 3. (#7998) + +Bugfixes +-------- + - twisted.conch.ssh.channel.SSHChannel's getPeer and getHost methods + now return an object which provides IAddress instead of an old- + style tuple address. (#5999) + - twisted.conch.endpoint.SSHCommandClientEndpoint, when + authentication is delegated to an SSH agent, no longer leaves the + agent connection opened when connection to the server is lost. + (#8138) + +Other +----- + - #7037, #7715, #8200, #8208 + + Twisted Conch 15.5.0 (2015-11-28) ================================= Modified: branches/release-16.0.0-8210/twisted/mail/topfiles/NEWS ============================================================================== --- branches/release-16.0.0-8210/twisted/mail/topfiles/NEWS (original) +++ branches/release-16.0.0-8210/twisted/mail/topfiles/NEWS Mon Feb 15 18:02:51 2016 @@ -1,6 +1,12 @@ Ticket numbers in this file can be looked up by visiting http://twistedmatrix.com/trac/ticket/<number> +Twisted Mail 16.0.0pre1 (2016-02-16) +==================================== + +No significant changes have been made for this release. + + Twisted Mail 15.5.0 (2015-11-28) ================================ Modified: branches/release-16.0.0-8210/twisted/names/topfiles/NEWS ============================================================================== --- branches/release-16.0.0-8210/twisted/names/topfiles/NEWS (original) +++ branches/release-16.0.0-8210/twisted/names/topfiles/NEWS Mon Feb 15 18:02:51 2016 @@ -1,6 +1,12 @@ Ticket numbers in this file can be looked up by visiting http://twistedmatrix.com/trac/ticket/<number> +Twisted Names 16.0.0pre1 (2016-02-16) +===================================== + +No significant changes have been made for this release. + + Twisted Names 15.5.0 (2015-11-28) ================================= Modified: branches/release-16.0.0-8210/twisted/news/topfiles/NEWS ============================================================================== --- branches/release-16.0.0-8210/twisted/news/topfiles/NEWS (original) +++ branches/release-16.0.0-8210/twisted/news/topfiles/NEWS Mon Feb 15 18:02:51 2016 @@ -1,6 +1,12 @@ Ticket numbers in this file can be looked up by visiting http://twistedmatrix.com/trac/ticket/<number> +Twisted News 16.0.0pre1 (2016-02-16) +==================================== + +No significant changes have been made for this release. + + Twisted News 15.5.0 (2015-11-28) ================================ Modified: branches/release-16.0.0-8210/twisted/pair/topfiles/NEWS ============================================================================== --- branches/release-16.0.0-8210/twisted/pair/topfiles/NEWS (original) +++ branches/release-16.0.0-8210/twisted/pair/topfiles/NEWS Mon Feb 15 18:02:51 2016 @@ -1,3 +1,9 @@ +Twisted Pair 16.0.0pre1 (2016-02-16) +==================================== + +No significant changes have been made for this release. + + Twisted Pair 15.5.0 (2015-11-28) ================================ Modified: branches/release-16.0.0-8210/twisted/runner/topfiles/NEWS ============================================================================== --- branches/release-16.0.0-8210/twisted/runner/topfiles/NEWS (original) +++ branches/release-16.0.0-8210/twisted/runner/topfiles/NEWS Mon Feb 15 18:02:51 2016 @@ -1,6 +1,12 @@ Ticket numbers in this file can be looked up by visiting http://twistedmatrix.com/trac/ticket/<number> +Twisted Runner 16.0.0pre1 (2016-02-16) +====================================== + +No significant changes have been made for this release. + + Twisted Runner 15.5.0 (2015-11-28) ================================== Modified: branches/release-16.0.0-8210/twisted/topfiles/NEWS ============================================================================== --- branches/release-16.0.0-8210/twisted/topfiles/NEWS (original) +++ branches/release-16.0.0-8210/twisted/topfiles/NEWS Mon Feb 15 18:02:51 2016 @@ -1,6 +1,64 @@ Ticket numbers in this file can be looked up by visiting http://twistedmatrix.com/trac/ticket/<number> +Twisted Core 16.0.0pre1 (2016-02-16) +==================================== + +Features +-------- + - todo parameter for IReporter.addExpectedSuccess and + IReporter.addUnexpectedSuccess is no longer required. If not + provided, a sensible default will be used instead. (#4811) + - A new string endpoint type, "tls:", allows for properly-verified + TLS (unlike "ssl:", always matching hostname resolution with + certificate hostname verification) with faster IPv4/IPv6 + connections. This comes with an accompanying function, + twisted.internet.endpoints.wrapClientTLS, which can wrap an + arbitrary client endpoint with client TLS. (#5642) + - twisted.python.filepath.makedirs accepts an ignoreExistingDirectory + flag which ignore the OSError raised by os.makedirs if requested + directory already exists. (#5704) + - twisted.protocols.amp has been ported to Python 3. (#6833) + - twisted.internet.ssl.trustRootFromCertificates returns an object + suitable for use as trustRoot= to + twisted.internet.ssl.optionsForClientTLS that trusts multiple + certificates. (#7671) + - twisted.python.roots is now ported to Python 3. (#8131) + +Bugfixes +-------- + - Expected failures from standard library unittest no longer fail + with Trial reporters. (#4811) + - twisted.internet.endpoints.HostnameEndpoint.connect no longer fails + with an AlreadyCalledError when the Deferred it returns is + cancelled after all outgoing connection attempts have been made but + none have yet succeeded or failed. (#8014) + - twisted.internet.task.LoopingCall.withCount when run with internal + of 0, now calls the countCallable with 1, regardless of the time + passed between calls. (#8125) + +Improved Documentation +---------------------- + - The Twisted Project has adopted the Contributor Covenant as its + Code of Conduct. (#8173) + +Deprecations and Removals +------------------------- + - twisted.internet.task.LoopingCall.deferred is now deprecated. Use + the deferred returned by twisted.internet.task.LoopingCall.start() + (#8116) + - twisted.internet.gtkreactor, the GTK+ 1 reactor deprecated since + Twisted 10.1, has been removed. This does not affect the GTK2, + GLib, GTK3, or GObject-Introspection reactors. (#8145) + - twisted.protocols.mice, containing a Logitech MouseMan serial + driver, has been deprecated. (#8148) + +Other +----- + - #6842, #6978, #7668, #7791, #7881, #7943, #7944, #8050, #8104, + #8115, #8119, #8122, #8139, #8144, #8154, #8162, #8180, #8187 + + Twisted Core 15.5.0 (2015-11-28) ================================ Modified: branches/release-16.0.0-8210/twisted/web/topfiles/NEWS ============================================================================== --- branches/release-16.0.0-8210/twisted/web/topfiles/NEWS (original) +++ branches/release-16.0.0-8210/twisted/web/topfiles/NEWS Mon Feb 15 18:02:51 2016 @@ -1,6 +1,40 @@ Ticket numbers in this file can be looked up by visiting http://twistedmatrix.com/trac/ticket/<number> +Twisted Web 16.0.0pre1 (2016-02-16) +=================================== + +Features +-------- + - twisted.web.http_headers._DictHeaders now correctly handles + updating via keyword arguments in Python 3 (therefore + twisted.web.http_headers is now fully ported to Python 3). (#6082) + - twisted.web.wsgi has been ported to Python 3. (#7993) + - twisted.web.http_headers.Headers now accepts both Unicode and + bytestring keys and values, encoding to iso-8859-1 and utf8 + respectively. (#8129) + - twisted.web.vhost ported to Python 3. (#8132) + +Bugfixes +-------- + - twisted.web.http.HTTPChannel now correctly handles non-ascii method + name by returning 400. Previously non-ascii method name was causing + unhandled exceptions. (#8102) + - twisted.web.static.File on Python 3 now redirects paths to + directories without a trailing slash, to a path with a trailing + slash, as on Python 2. (#8169) + +Deprecations and Removals +------------------------- + - twisted.web.http.Request's headers and request_headers attributes, + deprecated since Twisted 13.2, have been removed. (#8136) + - twisted.web.static.addSlash is deprecated. (#8169) + +Other +----- + - #8140, #8182 + + Twisted Web 15.5.0 (2015-11-28) =============================== Modified: branches/release-16.0.0-8210/twisted/words/topfiles/NEWS ============================================================================== --- branches/release-16.0.0-8210/twisted/words/topfiles/NEWS (original) +++ branches/release-16.0.0-8210/twisted/words/topfiles/NEWS Mon Feb 15 18:02:51 2016 @@ -1,6 +1,12 @@ Ticket numbers in this file can be looked up by visiting http://twistedmatrix.com/trac/ticket/<number> +Twisted Words 16.0.0pre1 (2016-02-16) +===================================== + +No significant changes have been made for this release. + + Twisted Words 15.5.0 (2015-11-28) =================================