Files
deb-python-falcon/docs/changes/1.3.0.rst
Kurt Griffiths b51d4e9a35 feat(Request): Add support for several proxy "forwarded" headers (#1083)
Add support for some "forwarded" headers, included several new
attributes and a reworking of some of the existing code to better
facilitate sharing and performance.

Also clean up a couple tiny nits in the docstrings for the sake of
consistency.
2017-07-17 16:43:06 -05:00

470 B

Changelog for Falcon 1.3.0

Breaking Changes

(None)

New & Improved

  • A number of attributes were added to falcon.Request to expose information added by proxies in front of the application server. These include the forwarded, forwarded_uri, forwarded_scheme, forwarded_host, and forwarded_prefix attribute. The prefix attribute was also added as part of this work.

Fixed