* Overview
+ CPython 3.11 - 3.13 is now fully supported.
+ End-of-life Python 3.5, 3.6 & 3.7 are no longer supported.
+ End-of-life Python 3.8 is no longer actively supported.
+ Type checking support was introduced.
+ Falcon is no longer vendoring the python-mimeparse library.
+ A number of undocumented internal helpers were renamed to start with an
underscore.
+ A number of previously deprecated methods, attributes and classes have
now been removed.
+ We decided, on the other hand, to keep the deprecated falcon.API alias
until Falcon 5.0.
+ The deprecated api_helpers was removed in favor of the app_helpers
module.
+ The function falcon.http_date_to_dt now validates HTTP dates to have
the correct timezone set. It now also returns timezone-aware
datetime.datetime objects.
+ setup.cfg was dropped in favor of consolidating all static project
configuration in pyproject.toml
* New & Improved
+ A new path converter falcon.routing.PathConverter
capable of matching segments that include / was added.
+ Similar to the existing falcon.routing.IntConverter, a new
falcon.routing.FloatConverter has been added, allowing to convert
path segments to float.
+ A new method falcon.Request.get_header_as_int was implemented.
+ A new property, falcon.Request.headers_lower, was added to provide a
unified, self-documenting way to get a copy of all request headers with
lowercase names to facilitate case-insensitive matching.
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-falcon?expand=0&rev=57
- Update to 3.1.3
* This is a minor bugfix release that only pins the
pytest-asyncio test dependency in order to prevent an
incompatible version from interfering with the build workflow.
* This release is otherwise identical to Falcon 3.1.2.
- Update to 3.1.2
## Summary
* This is a minor point release fixing a couple of high impact
bugs, as well as publishing binary wheels for the recently
released CPython 3.12.
## Changes to Supported Platforms
* Falcon is now supported (including binary wheels) on CPython
3.12. A couple of remaining stdlib deprecations from 3.11 and
3.12 will be addressed in Falcon 4.0.
* As with the previous release, Python 3.5 & 3.6 remain
deprecated and will no longer be supported in Falcon 4.0.
* EOL Python 3.7 will no longer be actively supported in 4.0, but
the framework should still continue to install from source. We
may remove the support for 3.7 altogether later in the 4.x
series if we are faced with incompatible ecosystem changes in
typing, Cython, etc.
## Fixed
* Some essential files were unintentionally omitted from the
source distribution archive, rendering it unsuitable to run the
test suite off. This has been fixed, and the sdist tarball
should now be usable as a base for packaging Falcon in OS
distributions. (#2051)
* WebSocket implementation has been fixed to properly handle
HTTPError and HTTPStatus exceptions raised by custom error
handlers. The WebSocket connection is now correctly closed with
OBS-URL: https://build.opensuse.org/request/show/1144006
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-falcon?expand=0&rev=50
Falcon 3.1.1 is a minor point release addressing a couple of high impact
bugs, and enabling the framework on the recently released CPython 3.11.
- 3.1.0
This release contains several refinements to request validation and error
handling, along with some tweaks to response handling for static and
downloadable files.
Due to popular demand, TestClient and ASGIConductor now expose convenience
shorthand aliases for the simulate_* methods, i.e., simulate_get() is now
also available as get(), etc.
Some important bugs were also fixed to ensure applications properly clean up
response streams and do not hang when reading request bodies that are
streamed using chunked transfer encoding.
This release also adds support for CPython 3.10 and deprecates CPython 3.6.
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-falcon?expand=0&rev=41