Changelog for Falcon 1.3.0

Breaking Changes

(None)

Changes to Supported Platforms

  • CPython 3.6 is now fully supported.

  • Falcon appears to work well on PyPy3.5, but we are waiting until that platform is out of beta before officially supporting it.

  • Support for both CPython 2.6 and Jython 2.7 is now deprecated and will be discontinued in Falcon 2.0.

New & Improved

Fixed

  • If even a single cookie in the request to the server is malformed, none of the cookies will be parsed (all-or-nothing). Change the parser to simply skip bad cookies (best-effort).

  • API instances are not pickleable. Modify the default router to fix this.