]>
git.ipfire.org Git - thirdparty/tornado.git/log
Andrew Rabert [Wed, 5 Apr 2017 02:29:46 +0000 (22:29 -0400)]
Test fetch full URL if applicable
Andrew Rabert [Wed, 5 Apr 2017 02:29:34 +0000 (22:29 -0400)]
Fetch full URL if applicable
Ben Darnell [Sun, 2 Apr 2017 20:46:51 +0000 (16:46 -0400)]
Merge pull request #1999 from bdarnell/tcpclient-test
tcpclient_test: Attempt to deflake on windows
Ben Darnell [Sun, 2 Apr 2017 14:52:43 +0000 (10:52 -0400)]
websocket: Impose a size limit on incoming websocket messages (#1997)
Ben Darnell [Sun, 2 Apr 2017 14:51:41 +0000 (10:51 -0400)]
tcpclient_test: Attempt to deflake on windows
It appears that on windows the client connect call can sometimes
succeed before the server has processed the request, so introduce
additional synchronization.
Ben Darnell [Sat, 1 Apr 2017 18:27:25 +0000 (14:27 -0400)]
Merge branch 'branch4.4'
Ben Darnell [Thu, 30 Mar 2017 13:17:36 +0000 (09:17 -0400)]
Version bump and release notes for 4.4.3
Dayne Jones [Thu, 30 Mar 2017 01:43:07 +0000 (21:43 -0400)]
auth: Facebook now returns auth tokens in json instead of url-encoded
Fixes #1992
Dayne Jones [Thu, 30 Mar 2017 01:43:07 +0000 (21:43 -0400)]
auth: Facebook now returns auth tokens in json instead of url-encoded
Fixes #1992
Ben Darnell [Mon, 27 Mar 2017 14:42:34 +0000 (10:42 -0400)]
Merge pull request #1989 from bdarnell/appveyor36
appveyor: Build for python 3.5 and 3.6
Ben Darnell [Sun, 26 Mar 2017 22:34:25 +0000 (18:34 -0400)]
appveyor: Build for python 3.5 and 3.6
Ben Darnell [Sun, 26 Mar 2017 21:10:47 +0000 (17:10 -0400)]
Release notes and doc updates for 4.5
Ben Darnell [Sun, 26 Mar 2017 18:56:25 +0000 (14:56 -0400)]
Merge pull request #1917 from retinator/master
Allow custom websocket upgrade response headers
Ben Darnell [Sun, 26 Mar 2017 18:55:15 +0000 (14:55 -0400)]
Merge pull request #1988 from bdarnell/subprocess-test-detail
process_test: Report more details when test_sigchild_signal fails
Ben Darnell [Sun, 26 Mar 2017 18:43:23 +0000 (14:43 -0400)]
Check in test script for circular references
From #1936
Ben Darnell [Sun, 26 Mar 2017 18:03:50 +0000 (14:03 -0400)]
Merge pull request #1936 from homm/break-circrefs
Break circular reference to exc_info when exception is thrown
Ben Darnell [Sun, 26 Mar 2017 18:03:38 +0000 (14:03 -0400)]
Merge pull request #1987 from bdarnell/iostream-orphan-future
Fix IOStream.write() to never orphan Future
Ben Darnell [Sun, 26 Mar 2017 17:46:36 +0000 (13:46 -0400)]
Merge pull request #1927 from minrk/copy-list-in-close
copy handler list in IOLoop.close(all_fds=True)
Ben Darnell [Sun, 26 Mar 2017 17:41:36 +0000 (13:41 -0400)]
Merge branch 'master' into master
Ben Darnell [Sun, 26 Mar 2017 17:13:27 +0000 (13:13 -0400)]
process_test: Report more details when test_sigchild_signal fails
This test occasionally fails on pypy on travis-ci.
Ben Darnell [Sun, 26 Mar 2017 17:10:24 +0000 (13:10 -0400)]
Merge pull request #1986 from bdarnell/yield-none-test
gen: Add tests for `yield None`
Antoine Pitrou [Mon, 14 Nov 2016 18:38:25 +0000 (19:38 +0100)]
Fix IOStream.write() to never orphan Future
The current behaviour is error-prone and makes it difficult to use the
Future-returning variant of IOStream.write(). This change makes sure
the returned Future is triggered as soon as the corresponding write
is issued.
Ben Darnell [Sun, 26 Mar 2017 16:20:14 +0000 (12:20 -0400)]
Merge pull request #1985 from bdarnell/websocket-convert-yielded
websocket: Avoid calling convert_yielded twice on the same object
Ben Darnell [Sun, 26 Mar 2017 16:17:12 +0000 (12:17 -0400)]
Merge pull request #1864 from leynos/master
Allow specificion of trusted downstream proxies for xheaders
Ben Darnell [Sun, 26 Mar 2017 15:57:09 +0000 (11:57 -0400)]
gen: Add tests for `yield None`
See #1716
Ben Darnell [Sun, 26 Mar 2017 15:46:00 +0000 (11:46 -0400)]
Merge pull request #1716 from seirl/master
gen: handle None in convert_yielded
Ben Darnell [Sun, 26 Mar 2017 15:17:03 +0000 (11:17 -0400)]
Merge pull request #1817 from mivade/colorama
Enable color logging on Windows via colorama
Ben Darnell [Sun, 26 Mar 2017 15:16:19 +0000 (11:16 -0400)]
Merge pull request #1972 from andreasrosdal/master
Add compression_level and mem_level to WebSocketHandler.get_compression_options()
Ben Darnell [Sun, 26 Mar 2017 15:14:40 +0000 (11:14 -0400)]
Merge pull request #1984 from bdarnell/autoreload-no-close
autoreload: Don't close the IOLoop on reload
Ben Darnell [Sun, 26 Mar 2017 15:12:37 +0000 (11:12 -0400)]
websocket: Avoid calling convert_yielded twice on the same object
This is not allowed for native coroutines, although for reasons I
can't put my finger on it only fails intermittently (in the one test
we have that uses this with native coroutines).
Michael V. DePalatis [Sat, 25 Mar 2017 21:25:13 +0000 (17:25 -0400)]
Replace func directive with double backticks
Andreas Røsdal [Sat, 25 Mar 2017 19:16:10 +0000 (20:16 +0100)]
Use the member variables instead of arguments for self._compression_level and self._mem_level.
Ben Darnell [Sat, 25 Mar 2017 18:00:26 +0000 (14:00 -0400)]
autoreload: Don't close the IOLoop on reload
This was a last-ditch effort to close file descriptors that were not
marked as CLOEXEC. However, it was never complete (it didn't touch
file descriptors that were not registered on the IOLoop), and it can't
work with asyncio (which does not allow closing the IOLoop without
stopping it and unwinding the stack first). Since Tornado (and
hopefully all major libraries using the IOLoop) is careful about
setting CLOEXEC when needed, just get rid of the close.
Fixes #1543
Ben Darnell [Sat, 25 Mar 2017 16:56:39 +0000 (12:56 -0400)]
Merge pull request #1971 from SuminAndrew/remove-with_statement
remove redundant with_statement feature
Ben Darnell [Sat, 25 Mar 2017 15:53:20 +0000 (11:53 -0400)]
Merge pull request #1963 from protonpopsicle/master
HTTPServer pass no_keep_alive option to conn params
Ben Darnell [Sat, 25 Mar 2017 15:08:52 +0000 (11:08 -0400)]
Merge pull request #1966 from JZQT/master
Make `tornado.log.LogFormatter` compatible with `logging.config.dictConfig`.
Andreas Røsdal [Wed, 8 Mar 2017 20:29:17 +0000 (21:29 +0100)]
Add parameter compression_options=None.
Andreas Røsdal [Wed, 8 Mar 2017 20:20:32 +0000 (21:20 +0100)]
Make compression options argument optional.
Andreas Røsdal [Wed, 8 Mar 2017 19:57:39 +0000 (20:57 +0100)]
Fix for Python 2.7.
Andreas Røsdal [Wed, 8 Mar 2017 19:31:00 +0000 (20:31 +0100)]
Add compression_level and mem_level to WebSocketHandler.get_compression_options().
Andrew Sumin [Tue, 7 Mar 2017 09:07:06 +0000 (12:07 +0300)]
remove redundant with_statement feature
A. Jesse Jiryu Davis [Sun, 5 Mar 2017 19:15:04 +0000 (14:15 -0500)]
Merge pull request #1969 from iver56/patch-1
Fix typo "you app" -> "your app"
Iver Jordal [Wed, 1 Mar 2017 09:29:29 +0000 (10:29 +0100)]
Fix typo "you app" -> "your app"
JZQT [Mon, 27 Feb 2017 02:46:28 +0000 (10:46 +0800)]
Make `tornado.log.LogFormatter` compatible with `logging.config.dictConfig`.
Michael V. DePalatis [Sun, 26 Feb 2017 23:25:33 +0000 (18:25 -0500)]
Leave calling colorama.init to the user
Ben Darnell [Sun, 26 Feb 2017 16:44:54 +0000 (11:44 -0500)]
Merge pull request #1909 from ajdavis/on-message-coroutine
websocket: WebSocketHandler.on_message allows coroutines
A. Jesse Jiryu Davis [Mon, 9 Jan 2017 02:43:42 +0000 (21:43 -0500)]
websocket: WebSocketHandler.on_message allows coroutines
Fixes #1650
Ben Darnell [Sat, 25 Feb 2017 22:35:22 +0000 (17:35 -0500)]
Merge pull request #1957 from bdarnell/ws-ping
websocket: Periodic pinging for failure detection
Ben Darnell [Sat, 25 Feb 2017 22:34:47 +0000 (17:34 -0500)]
Merge pull request #1964 from dv321/websocket-client-callback
websocket: fix client message callback error
Doug Vargas [Fri, 24 Feb 2017 20:36:53 +0000 (12:36 -0800)]
websocket protocol callback error handling uses getattr instead of direct attr access
Scott Meisburger [Fri, 24 Feb 2017 16:58:55 +0000 (11:58 -0500)]
httpserver: pass no_keep_alive option to connection params
Ben Darnell [Tue, 21 Feb 2017 03:28:08 +0000 (22:28 -0500)]
Merge pull request #1873 from pitrou/bytearray_buffers
Use bytearray buffers in IOStream
Ben Darnell [Tue, 21 Feb 2017 03:14:34 +0000 (22:14 -0500)]
web: Remove accidentally-set execute bit
Ben Darnell [Tue, 21 Feb 2017 03:01:01 +0000 (22:01 -0500)]
Merge commit 'pull/origin/1653'
Ben Darnell [Tue, 21 Feb 2017 02:44:22 +0000 (21:44 -0500)]
Merge pull request #1649 from xrmx/docwindows
docs: give more hints on why windows is unsupported
Ben Darnell [Tue, 21 Feb 2017 00:32:54 +0000 (19:32 -0500)]
websocket: Support periodic pings from client side
Ben Darnell [Tue, 21 Feb 2017 00:22:58 +0000 (19:22 -0500)]
Merge commit 'pull/origin/1938' into ws-ping
Ben Darnell [Tue, 21 Feb 2017 00:22:05 +0000 (19:22 -0500)]
websocket: Move periodic pings from handler to protocol
Add a basic test.
Ben Darnell [Mon, 20 Feb 2017 22:58:15 +0000 (17:58 -0500)]
Merge pull request #1956 from bdarnell/master
Misc updates
Ben Darnell [Mon, 20 Feb 2017 21:50:33 +0000 (16:50 -0500)]
tox: Update some configs to use py36
Closes #1926
Ben Darnell [Mon, 20 Feb 2017 19:59:03 +0000 (14:59 -0500)]
setup: Ship LICENSE file in tarball
Fixes #1897
Ben Darnell [Mon, 20 Feb 2017 19:55:31 +0000 (14:55 -0500)]
docs: Remove direct tarball links and legacy install instructions
The tarball links were broken for many months without anyone noticing,
so apparently they weren't getting used (and anyone using them would
miss alternate release artifacts like the binary wheels we publish for
windows). Replace the hacks used to generate the tarball links with a
link to pypi and remove legacy manual installation instructions.
Ben Darnell [Mon, 20 Feb 2017 19:45:14 +0000 (14:45 -0500)]
testing: Clarify docs of testing.main()
Ben Darnell [Mon, 20 Feb 2017 19:41:30 +0000 (14:41 -0500)]
docs: Clarify limitations of native coroutines.
Ben Darnell [Mon, 20 Feb 2017 19:35:34 +0000 (14:35 -0500)]
process: Silence "subprocess still running" warnings on python3.6
Ben Darnell [Mon, 20 Feb 2017 19:18:22 +0000 (14:18 -0500)]
tcpclient: Close socket on source_ip bind failure
Silences a warning on python 3
A. Jesse Jiryu Davis [Fri, 17 Feb 2017 16:27:12 +0000 (11:27 -0500)]
Merge pull request #1954 from dinever/patch-1
Fixed a simple typo in websocket.py
Shawn Ding [Fri, 17 Feb 2017 06:07:41 +0000 (01:07 -0500)]
Fix a typo
Ben Darnell [Fri, 10 Feb 2017 00:21:35 +0000 (19:21 -0500)]
Merge pull request #1948 from jeffhunter/master
add support for HTTP 308 redirects
Ben Darnell [Fri, 10 Feb 2017 00:06:34 +0000 (19:06 -0500)]
Merge pull request #1935 from mirceaulinic/SOURCE-IP
TCPClient: connect using specific source IP address and port
A. Jesse Jiryu Davis [Thu, 9 Feb 2017 03:59:15 +0000 (22:59 -0500)]
Merge pull request #1949 from ajdavis/asyncio-async-deprecated
Avoid deprecated asyncio.async() in test
A. Jesse Jiryu Davis [Thu, 9 Feb 2017 01:23:39 +0000 (20:23 -0500)]
Avoid deprecated asyncio.async() in test
Jeff Hunter [Thu, 9 Feb 2017 01:17:31 +0000 (17:17 -0800)]
add support for HTTP 308 redirects
A. Jesse Jiryu Davis [Wed, 8 Feb 2017 23:59:05 +0000 (18:59 -0500)]
Merge pull request #1945 from brianmego/patch-1
Documentation Typo
Brian Mego [Wed, 8 Feb 2017 21:30:41 +0000 (15:30 -0600)]
Documentation Typo
I kept misspelling "response" in my own project's docstrings and upon grepping to make sure it was totally wiped out, discovered it was also misspelled in here. Clearly the word has been misspelled since it's inception, but since we can't change English, let's update it here.
Mircea Ulinic [Tue, 7 Feb 2017 15:44:32 +0000 (15:44 +0000)]
Skip port test if not unix
Ben Darnell [Sun, 5 Feb 2017 22:58:38 +0000 (17:58 -0500)]
web: Remove obsolete doc about stream_request_body and async prepare
Fixes #1933
Ben Darnell [Sun, 5 Feb 2017 22:43:39 +0000 (17:43 -0500)]
queues: Call out thread-unsafety in docs
Fixes #1923
Mircea Ulinic [Wed, 1 Feb 2017 13:18:46 +0000 (13:18 +0000)]
Add tests for source_ip and source_port
Artur Stawiarski [Wed, 1 Feb 2017 14:24:25 +0000 (14:24 +0000)]
Added option for triggering callbacks when PING frame is received
In order to implement proper application-level handling of disconnections
a developer may want to hook up into the standard "ping" mechanism
of the websocket protocol. This is important for systems where
both the client and the server need to keep track of disconnections,
but based on client-intiated pings only.
Mircea Ulinic [Wed, 1 Feb 2017 12:02:36 +0000 (12:02 +0000)]
Support also source_port
Mircea Ulinic [Wed, 1 Feb 2017 11:36:31 +0000 (11:36 +0000)]
Remove source_ip from _Connector init kwargs
Mircea Ulinic [Wed, 1 Feb 2017 11:31:30 +0000 (11:31 +0000)]
Move bindin into _create_stream
Alexander Karpinsky [Fri, 27 Jan 2017 01:16:50 +0000 (04:16 +0300)]
Merge branch 'master' into break-circrefs
Alexander [Fri, 27 Jan 2017 01:07:35 +0000 (04:07 +0300)]
cleanups for python3
Alexander [Fri, 27 Jan 2017 00:08:27 +0000 (03:08 +0300)]
add test
add description
Alexander [Thu, 26 Jan 2017 21:28:03 +0000 (00:28 +0300)]
release exc_info even when exception is thrown
remove extra references to the futures
Mircea Ulinic [Wed, 25 Jan 2017 11:45:31 +0000 (11:45 +0000)]
TCPClient: connect using specific source IP address
A. Jesse Jiryu Davis [Tue, 24 Jan 2017 14:13:33 +0000 (09:13 -0500)]
Merge pull request #1932 from tao12345666333/master
Fix document PyPI download url
TaoBeier [Tue, 24 Jan 2017 09:39:37 +0000 (17:39 +0800)]
Fix document download url on pypi.
Min RK [Wed, 11 Jan 2017 10:22:00 +0000 (11:22 +0100)]
copy handler list in IOLoop.close(all_fds=True)
avoids modifying dict during iteration if close method on fd triggers something like `IOLoop.remove_handler`
James Maier [Mon, 9 Jan 2017 05:07:26 +0000 (00:07 -0500)]
Fix Sphinx
James Maier [Mon, 9 Jan 2017 03:52:02 +0000 (22:52 -0500)]
WebSocket: misc. from code review
James Maier [Mon, 9 Jan 2017 03:45:15 +0000 (22:45 -0500)]
WebSocket: disable RequestHandler methods by patching the instance
James Maier [Mon, 9 Jan 2017 03:11:51 +0000 (22:11 -0500)]
WebSocket: fix 426 error code
Ben Darnell [Sun, 8 Jan 2017 18:57:07 +0000 (13:57 -0500)]
Merge pull request #1924 from duboviy/master
Add Python 3.6 support
Ben Darnell [Sun, 8 Jan 2017 18:54:17 +0000 (13:54 -0500)]
Merge pull request #1899 from mr-ping/master
Rewrite url_concat function using PythonStandardLibrary
Eugene Dubovoy [Sun, 8 Jan 2017 16:19:30 +0000 (18:19 +0200)]
Add Python 3.6 support
James Maier [Fri, 23 Dec 2016 16:01:42 +0000 (11:01 -0500)]
Do WebSocket upgrade using RequestHandler, allowing set_default_headers
James Maier [Tue, 20 Dec 2016 20:32:22 +0000 (15:32 -0500)]
Add upgrade_response_headers to docs/websocket.rst