15
0

- update to 10.0.0:

* Cheroot now accepts a ``reuse_port`` parameter on the
    ``HTTPServer`` object.
  * Subclasses overriding ``prepare_socket`` will no longer
    work and will need to adapt to the new interface.
- drop python-cheroot-no-six.patch (upstream)
    failing on some platforms presumably because of OBS specific
- Avoid possible race condition on persistent HTTP connections (bsc#1169604)
  * Remove custom setup.cfg parser handling, allowing the project (including sdist)
    to build/run on setuptools 41.4. Now building cheroot requires setuptools 30.3 or later

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-cheroot?expand=0&rev=58
This commit is contained in:
2023-12-29 18:08:56 +00:00
committed by Git OBS Bridge
parent 0606f1d5a2
commit 3e070229ef
6 changed files with 33 additions and 48 deletions

View File

@@ -1,3 +1,13 @@
-------------------------------------------------------------------
Fri Dec 29 18:07:41 UTC 2023 - Dirk Müller <dmueller@suse.com>
- update to 10.0.0:
* Cheroot now accepts a ``reuse_port`` parameter on the
``HTTPServer`` object.
* Subclasses overriding ``prepare_socket`` will no longer
work and will need to adapt to the new interface.
- drop python-cheroot-no-six.patch (upstream)
-------------------------------------------------------------------
Sat Jun 10 09:22:04 UTC 2023 - ecsos <ecsos@opensuse.org>
@@ -102,7 +112,7 @@ Mon Mar 29 17:49:02 UTC 2021 - Ben Greiner <code@bnavigator.de>
* only remove coverage options from pytest.ini
* don't skip tests which had failed 2 years ago
(gh#cherrypy/cheroot#200) -- except for two subtests still
failing on some platforms presumably because of OBS specific
failing on some platforms presumably because of OBS specific
network setups
* skip the one test requiring python-jaraco.context in Factory
staging so that we do not need that package in Ring1.
@@ -188,7 +198,7 @@ Tue May 19 10:35:40 UTC 2020 - Tomáš Chvátal <tchvatal@suse.com>
-------------------------------------------------------------------
Thu May 7 09:33:29 UTC 2020 - Pablo Suárez Hernández <pablo.suarezhernandez@suse.com>
- Avoid possible race condition on persistent HTTP connections (bsc#1169604)
- Avoid possible race condition on persistent HTTP connections (bsc#1169604)
- Added:
* 0001-Avoid-race-condition-on-persistent-HTTP-connections.patch
@@ -214,8 +224,8 @@ Wed Oct 23 13:38:06 UTC 2019 - Marketa Calabkova <mcalabkova@suse.com>
* Deprecated use of negative timeouts as alias for infinite timeouts in ThreadPool.stop.
* For OPTION requests, bypass URI as path if it does not appear absolute.
* Workers are now request-based, addressing the long-standing issue with keep-alive connections
* Remove custom setup.cfg parser handling, allowing the project (including sdist)
to build/run on setuptools 41.4. Now building cheroot requires setuptools 30.3 or later
* Remove custom setup.cfg parser handling, allowing the project (including sdist)
to build/run on setuptools 41.4. Now building cheroot requires setuptools 30.3 or later
(for declarative config support) and preferably 34.4 or later (as indicated in pyproject.toml).
-------------------------------------------------------------------