7
228a31ee0a
Merge pull request #1657 from huge-success/release-19.6.3
...
release: 19.6.3
2019-08-21 23:00:51 -07:00
7
41862eca61
Merge pull request #1654 from huge-success/asgi-content-type
...
Add content-type headers in response in ASGI mode
2019-08-13 12:30:40 -07:00
Yun Xu
21307b397b
release: 19.6.3
2019-08-13 10:03:08 -07:00
7
3f9c94ba4a
Merge pull request #1635 from huge-success/upgrade-websockets
...
Upgrade websockets, resolve incompatible issue between multidict and websockets
2019-08-12 10:48:56 -07:00
Adam Hopkins
aa270d3ac2
Add content-type headers in response in ASGI mode
2019-08-11 11:29:08 +03:00
7
a15d9552c4
Merge pull request #1632 from harshanarayana/feature/GIT-1631-Enable_Towncrier
...
feature: GIT-1631 enable towncrier
2019-08-06 08:33:10 -07:00
L. Kärkkäinen
7c7bedfa5d
Fix server crash on request.server_port when bound to IPv6.
...
If no X-Forwarded-Port nor Host headers are present, Sanic uses "sockname"
to determine the port. This expected (host, port) tuple to be returned but
for IPv6 a 4-tuple is returned instead. Changed code so that port is picked
up in either case. Handling of "peername" was already correct in this regard.
_get_address and server_port both still return incorrect data or crash for
other socket types (e.g unix). Socket type should checked before any queries.
2019-07-22 15:32:57 +03:00
Yun Xu
5dafa9a170
bugfix: replace CIMultiDict with compat.Header in all places
2019-07-18 20:11:25 -07:00
Yun Xu
b397637bb9
bugfix: fix incompatible api between multidict and websockets, and bump up websockets version to match uvicorn
2019-07-18 19:57:17 -07:00
Harsha Narayana
a019ff61e3
fix : #1631 : linter fix and tox platform selector
...
Signed-off-by: Harsha Narayana <harsha2k4@gmail.com>
2019-07-13 21:48:26 +05:30
Harsha Narayana
32eb8abb63
fix : #1631 : add towncrier support and fix documentation warnings
...
Signed-off-by: Harsha Narayana <harsha2k4@gmail.com>
2019-07-13 21:47:48 +05:30
Harsha Narayana
23f2d33394
fix: GIT-1623: fix dict initalization for empty case
...
Signed-off-by: Harsha Narayana <harsha2k4@gmail.com>
2019-07-11 06:38:55 +05:30
Harsha Narayana
97f288a534
fix: GIT-1623: handle cookie duplication and serialization issue
...
Signed-off-by: Harsha Narayana <harsha2k4@gmail.com>
2019-07-08 13:03:33 +05:30
Yun Xu
9d07988d75
19.6.2 release
2019-07-06 18:05:44 -07:00
7
1eaa2e3a5f
Merge pull request #1614 from huge-success/asgi-custom-request
...
Add custom request support to ASGI mode; fix a couple tests
2019-07-06 11:47:58 -07:00
Yun Xu
c7f2399ded
remove commented code
2019-07-06 11:34:22 -07:00
7
650ab61c2e
Merge pull request #1619 from huge-success/abc-fix
...
Resolve deprecation notice for import of an ABC from collections module
2019-07-04 15:07:53 -07:00
BananaWanted
72b445621b
Respect X-Forward-*
headers and generate correct URLs in url_for
( #1465 )
...
* handle forwarded address in request
* added test cases
* Fix lint errors
* Fix uncovered code branch
* Update docstrings
* Update documents
* fix import order
2019-07-04 07:13:43 -05:00
Adam Hopkins
ba0e9baffa
Resolve deprecation notice for import of an ABC from collections module
2019-07-03 09:39:38 +03:00
Adam Hopkins
a2666a2b8a
Add custom request support to ASGI mode; fix a couple tests
...
Undo change to request stream test
2019-06-24 22:59:23 +03:00
Christo Goosen
78fe97b9cb
Add bandit code static analyzer for security, some false positives removed with #nosec.
...
Bandit is a python package for staticly scanning code for security issues.
* Added to tox.ini
* Added to setup.py
* Added to .travis.yml
As part of CI/CD pipeline
2019-06-24 09:53:29 +02:00
7
891f99d71d
Merge pull request #1475 from tomchristie/asgi-refactor-attempt
...
ASGI refactoring attempt
2019-06-20 16:33:44 -07:00
Adam Hopkins
b1c23fdbaa
Increase testing coverage for ASGI
...
Beautify
Specify websockets version
2019-06-19 00:38:58 +03:00
Adam Hopkins
fb61834a2e
Add ASGI documentation
2019-06-18 09:57:42 +03:00
7
8fbbe94fe1
Merge pull request #1436 from jotagesales/config_from_object_string
...
Config from object string
2019-06-16 16:58:43 -07:00
Adam Hopkins
ab706dda7d
Resolve linting issues with imports
2019-06-11 11:21:37 +03:00
Adam Hopkins
b2d4132a14
Merge branch 'master' into asgi-refactor-attempt
2019-06-11 11:11:32 +03:00
Eli Uriegas
072fcfe03e
Fix #1587 : add support for handling Expect Header ( #1600 )
...
Fix #1587 : add support for handling Expect Header
2019-06-10 14:45:37 -07:00
Harsha Narayana
13079c6e30
GIT-1591 Strict Slashes behavior fix ( #1594 )
...
* fix: GIT-1591: fix strict_slashes option inheriting behavior
Signed-off-by: Harsha Narayana <harsha2k4@gmail.com>
* doc: GIT-1591: add documentation exlaining the strict_slashes behavior
Signed-off-by: Harsha Narayana <harsha2k4@gmail.com>
* fix: GIT-1591: fix deprecated for test_client
Signed-off-by: Harsha Narayana <harsha2k4@gmail.com>
2019-06-06 07:21:58 -05:00
Yun Xu
39d134994d
minor: address pr feedbacks, small refactoring and fix
2019-06-04 10:25:32 -07:00
Adam Hopkins
5f9e98554f
Run black and manually break up some text lines to correct linting
2019-06-04 13:26:05 +03:00
Adam Hopkins
0d9a21718f
Run black and manually break up some text lines to correct linting
2019-06-04 13:18:05 +03:00
Adam Hopkins
daf42c5f43
Add placement of before_server_start and after_server_stop
2019-06-04 12:59:15 +03:00
Adam Hopkins
3685b4de85
Lifespan and code cleanup
2019-06-04 10:58:00 +03:00
Yun Xu
2631f10c5e
lint: fix isort and flake8 complains
2019-06-03 22:12:10 -07:00
Yun Xu
f21db60859
fix: handle expect header
2019-06-03 22:08:24 -07:00
Adam Hopkins
aebe2b5809
Merge branch 'master' into asgi-refactor-attempt
2019-05-27 21:03:23 +03:00
Adam Hopkins
9172399b8c
Implement ASGI lifespan events to match Sanic listeners
2019-05-27 12:33:25 +03:00
Adam Hopkins
22c0d97783
Streaming responses
2019-05-27 02:11:52 +03:00
Adam Hopkins
3ead529693
Setup streaming on ASGI
2019-05-27 00:57:50 +03:00
Yun Xu
16d262e3e5
release: v19.6.0
2019-05-22 15:51:56 -07:00
Adam Hopkins
7b8e3624b8
Prepare initial websocket support
2019-05-22 01:42:19 +03:00
Adam Hopkins
8a56da84e6
Create SanicASGITestClient and refactor ASGI methods
2019-05-21 19:30:55 +03:00
Adam Hopkins
4767a67acd
Merge branch 'master' into asgi-refactor-attempt
2019-05-12 22:57:02 +03:00
Mike Yusko
4c8cc84b64
Delete unnecessary whitespace
2019-05-12 15:36:13 +03:00
Mike Yusko
c5efc4b64b
Added documentation for missed arguments
2019-05-12 15:32:34 +03:00
Yun Xu
bd89c7f269
fix lint issue
2019-05-09 21:14:27 -07:00
Yun Xu
d4ef151cc4
deprecation: deprecate the use of remove_route
2019-05-09 20:52:24 -07:00
Ketan Patel
ec428135ce
1564 - Moving processes
variable intialization before sig_handler
.
2019-05-07 22:38:29 -07:00
Adam Hopkins
c68523150f
Merge branch 'master' into asgi-refactor-attempt
2019-05-06 12:59:56 +03:00