Changelog for
python39-falcon-3.1.3-2.1.2.1.noarch.rpm :
* Tue Mar 19 2024 Daniel Garcia
- Ignore \"tests/asgi\" for python 3.9, some ws tests stalls with this python version
* Tue Feb 06 2024 Ben Greiner - Update source file- Replace deprecated %patch0- Move to PEP517- Remove old TW python36 flavor directives- Install examples into doc package and properly fdup
* Sun Feb 04 2024 Ben Greiner - 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 an appropriate code instead of bubbling up an unhandled error to the application server. (#2146)
* Falcon’s TestClient mimics the behavior of real WSGI servers (and the WSGI spec) by presenting the PATH_INFO CGI variable already in the percent-decoded form. However, the client also used to indiscriminately set the non-standard RAW_URI CGI variable to /, which made writing tests for apps decoding raw URL path cumbersome. This has been fixed, and the raw path of a simulated request is now preserved in RAW_URI. (#2157)
* Thu Jan 18 2024 Markéta Machová - remove unneeded build dependency python-ujson
* Tue Jan 02 2024 Jiri Srain - removed unneeded build dependency on python3-pygments-style-railscasts
* Sun Jun 11 2023 ecsos - Add %{?sle15_python_module_pythons}
* Mon Jan 16 2023 Daniel Garcia - Update to 3.1.1: 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.
* Thu Dec 09 2021 pgajdosAATTsuse.com- do not require pytest-runner for build, not required
* Tue Nov 23 2021 Ben Greiner - Don\'t restrict to primary python3 flavor. Other packages depend on this.- Update requirements
* The only runtime deps have been removed in version 2.0
* Test requirements from examples are obsolete- Implement some python packaging best practises:
* Check for version in dist metadata
* uninstall alternative only takes master (there was even a typo)
* Mon Nov 22 2021 Matej Cepl - Don\'t create %%{python_sitelib}/examples directory, that\' just evil.
* Wed Nov 17 2021 Andreas Schneider - Update to version 3.0.1 This is a minor point release to take care of a couple of bugs that we did not catch for 3.0.0. - The api_helpers module was re-added, since it was renamed to app_helpers (and effectively removed) without announcing a corresponding breaking change. This module is now considered deprecated, and will be removed in a future Falcon version. - ASGI HTTP headers were treated as UTF-8 encoded, not taking the incompatibility with WSGI and porting of WSGI applications into consideration. This was fixed, and ASGI headers are now decoded and encoded as ISO-8859-1.