Skip to content

aiohttp 0.12.0

Compare
Choose a tag to compare
@fafhrd91 fafhrd91 released this 12 Dec 20:08
· 9543 commits to master since this release

CHANGES

  • Deep refactoring of aiohttp.web in backward-incompatible manner.
    Sorry, we have to do this.
  • Automatically force aiohttp.web handlers to coroutines in
    UrlDispatcher.add_route() #186
  • Rename Request.POST() function to Request.post()
  • Added POST attribute
  • Response processing refactoring: constructor does't accept Request instance anymore.
  • Pass application instance to finish callback
  • Exceptions refactoring
  • Do not unquote query string in aiohttp.web.Request
  • Fix concurrent access to payload in RequestHandle.handle_request()
  • Add access logging to aiohttp.web
  • Gunicorn worker for aiohttp.web
  • Removed deprecated AsyncGunicornWorker
  • Removed deprecated HttpClient