Skip to content

Commit

Permalink
Revert "towncrier"
Browse files Browse the repository at this point in the history
This reverts commit 24ef93b.
  • Loading branch information
hawkowl committed Oct 10, 2018
1 parent 24ef93b commit a3047ff
Show file tree
Hide file tree
Showing 33 changed files with 23 additions and 101 deletions.
101 changes: 0 additions & 101 deletions NEWS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,107 +3,6 @@ http://twistedmatrix.com/trac/ticket/<number>

.. towncrier release notes start
Twisted 18.9.0rc1 (2018-09-26)
==============================

Features
--------

- twisted.internet._sslverify.ClientTLSOptions no longer raises IDNAError when given an IPv6 address as a hostname in a HTTPS URL. (#9433)
- The repr() of a twisted.internet.base.DelayedCall now encodes the same information as its str(), exposing details of its scheduling and target callable. (#9481)
- Python 3.7 is now supported. (#9502)


Bugfixes
--------

- twisted.logger.LogBeginner's default critical observer now prints tracebacks for new and legacy log system events through the use of the new eventAsText API. This API also does not raise an error for non-ascii encoded data in Python2, it attempts as well as possible to format the traceback. (#7927)
- Syntax error under Python 3.7 fixed for twisted.conch.manhole and
twisted.main.imap4. (#9384)
- `trial -j` reports tracebacks on test failures under Python 3. (#9436)
- Properly format multi-byte and non-ascii encoded data in a traceback. (#9456)
- twisted.python.rebuild now functions on Python 3.7. (#9492)
- HTTP/2 server connections will no longer time out active downloads that take too long. (#9529)


Improved Documentation
----------------------

- Several minor formatting problems in the API documentation have been corrected. (#9461)
- The documentation of twisted.internet.defer.Deferred.fromFuture() has been updated to reflect upstream changes. (#9539)


Deprecations and Removals
-------------------------

- async keyword argument is deprecated in twisted.conch.manhole
(ManholeInterpreter.write and Manhole.add) and in
twisted.main.imap4.IMAP4Server.sendUntaggedResponse,
isAsync keyword argument is introduced instead. (#9384)


Misc
----

- #9379, #9485, #9489, #9499, #9501, #9511, #9514, #9523, #9524, #9525, #9538


Conch
-----

Bugfixes
~~~~~~~~

- twisted.conch.keys.Key.public returns the same twisted.conch.keys.Key instance when it is already a public key instead of failing with an exception. (#9441)
- RSA private keys are no longer corrupted during loading, allowing OpenSSL's fast-path to operate for RSA signing. (#9518)


Improved Documentation
~~~~~~~~~~~~~~~~~~~~~~

- The documentation for IConchUser.gotGlobalRequest() is more accurate. (#9413)


Deprecations and Removals
~~~~~~~~~~~~~~~~~~~~~~~~~

- twisted.conch.ssh.filetransfer.ClientDirectory's use as an iterator has been deprecated. (#9527)


Web
---

Bugfixes
~~~~~~~~

- twisted.web.server.Request.getSession now returns a new session if the
previous session has expired. (#9288)


Misc
~~~~

- #9479, #9480, #9482, #9491


Mail
----

No significant changes.


Words
-----

No significant changes.


Names
-----

No significant changes.


Twisted 18.7.0 (2018-07-10)
===========================

Expand Down
1 change: 1 addition & 0 deletions src/twisted/conch/newsfragments/9413.doc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
The documentation for IConchUser.gotGlobalRequest() is more accurate.
1 change: 1 addition & 0 deletions src/twisted/conch/newsfragments/9441.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
twisted.conch.keys.Key.public returns the same twisted.conch.keys.Key instance when it is already a public key instead of failing with an exception.
1 change: 1 addition & 0 deletions src/twisted/conch/newsfragments/9518.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
RSA private keys are no longer corrupted during loading, allowing OpenSSL's fast-path to operate for RSA signing.
1 change: 1 addition & 0 deletions src/twisted/conch/newsfragments/9527.removal
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
twisted.conch.ssh.filetransfer.ClientDirectory's use as an iterator has been deprecated.
1 change: 1 addition & 0 deletions src/twisted/newsfragments/7927.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
twisted.logger.LogBeginner's default critical observer now prints tracebacks for new and legacy log system events through the use of the new eventAsText API. This API also does not raise an error for non-ascii encoded data in Python2, it attempts as well as possible to format the traceback.
1 change: 1 addition & 0 deletions src/twisted/newsfragments/9379.misc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

2 changes: 2 additions & 0 deletions src/twisted/newsfragments/9384.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Syntax error under Python 3.7 fixed for twisted.conch.manhole and
twisted.main.imap4.
4 changes: 4 additions & 0 deletions src/twisted/newsfragments/9384.removal
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
async keyword argument is deprecated in twisted.conch.manhole
(ManholeInterpreter.write and Manhole.add) and in
twisted.main.imap4.IMAP4Server.sendUntaggedResponse,
isAsync keyword argument is introduced instead.
1 change: 1 addition & 0 deletions src/twisted/newsfragments/9433.feature
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
twisted.internet._sslverify.ClientTLSOptions no longer raises IDNAError when given an IPv6 address as a hostname in a HTTPS URL.
1 change: 1 addition & 0 deletions src/twisted/newsfragments/9436.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
`trial -j` reports tracebacks on test failures under Python 3.
1 change: 1 addition & 0 deletions src/twisted/newsfragments/9456.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Properly format multi-byte and non-ascii encoded data in a traceback.
1 change: 1 addition & 0 deletions src/twisted/newsfragments/9461.doc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Several minor formatting problems in the API documentation have been corrected.
1 change: 1 addition & 0 deletions src/twisted/newsfragments/9481.feature
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
The repr() of a twisted.internet.base.DelayedCall now encodes the same information as its str(), exposing details of its scheduling and target callable.
Empty file.
Empty file.
1 change: 1 addition & 0 deletions src/twisted/newsfragments/9492.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
twisted.python.rebuild now functions on Python 3.7.
Empty file.
Empty file.
1 change: 1 addition & 0 deletions src/twisted/newsfragments/9502.feature
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Python 3.7 is now supported.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
1 change: 1 addition & 0 deletions src/twisted/newsfragments/9529.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
HTTP/2 server connections will no longer time out active downloads that take too long.
Empty file.
1 change: 1 addition & 0 deletions src/twisted/newsfragments/9539.doc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
The documentation of twisted.internet.defer.Deferred.fromFuture() has been updated to reflect upstream changes.
2 changes: 2 additions & 0 deletions src/twisted/web/newsfragments/9288.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
twisted.web.server.Request.getSession now returns a new session if the
previous session has expired.
Empty file.
Empty file.
Empty file.
Empty file.

0 comments on commit a3047ff

Please sign in to comment.