a7614cdaa5
Accepting request 1230046 from devel:languages:python
Ana Guerrero2024-12-13 21:31:11 +00:00
22dc393feb
Accepting request 1230046 from devel:languages:python
Ana Guerrero2024-12-13 21:31:11 +00:00
52c2e3368c
Accepting request 1230025 from home:glaubitz:branches:devel:languages:python
Markéta Machová2024-12-11 09:55:42 +00:00
a84de6bc3d
Accepting request 1230025 from home:glaubitz:branches:devel:languages:python
Markéta Machová2024-12-11 09:55:42 +00:00
32ba1759f7
Accepting request 1208518 from devel:languages:python
Ana Guerrero2024-10-18 13:52:50 +00:00
8180cfdf5d
Accepting request 1208518 from devel:languages:python
Ana Guerrero2024-10-18 13:52:50 +00:00
fda2a8ff2e
- Add patch support-python-313.patch: * Add legacy-cgi to install_requires to support Python 3.13. - Switch to autosetup macro.
Steve Kowalik2024-10-16 23:01:46 +00:00
8bb0995f72
- Add patch support-python-313.patch: * Add legacy-cgi to install_requires to support Python 3.13. - Switch to autosetup macro.
Steve Kowalik2024-10-16 23:01:46 +00:00
d7341db0db
Accepting request 1194616 from devel:languages:python
Ana Guerrero2024-08-20 14:12:34 +00:00
e563dda3de
Accepting request 1194616 from devel:languages:python
Ana Guerrero2024-08-20 14:12:34 +00:00
fc599474c2
- Update to 1.8.8: * The use of WebOb's Response object to redirect a request to a new location can lead to an open redirect if the Location header is not a full URI. (bsc#1229221, CVE-2024-42353) - Drop Python 2 blocks in the spec file. - Switch to pyproject macros.
Steve Kowalik2024-08-19 03:30:43 +00:00
80f3ad5272
- Update to 1.8.8: * The use of WebOb's Response object to redirect a request to a new location can lead to an open redirect if the Location header is not a full URI. (bsc#1229221, CVE-2024-42353) - Drop Python 2 blocks in the spec file. - Switch to pyproject macros.
Steve Kowalik2024-08-19 03:30:43 +00:00
c9c41f6ea0
Accepting request 1100879 from devel:languages:python
Ana Guerrero2023-07-27 14:50:09 +00:00
95e7280f55
Accepting request 1100879 from devel:languages:python
Ana Guerrero2023-07-27 14:50:09 +00:00
008ef9d7f2
Accepting request 1100758 from home:bmwiedemann:branches:devel:languages:python
Matej Cepl2023-07-26 14:28:52 +00:00
ac0e998966
Accepting request 1100758 from home:bmwiedemann:branches:devel:languages:python
Matej Cepl2023-07-26 14:28:52 +00:00
0012c78feb
Accepting request 880296 from home:bnavigator:branches:devel:languages:python
Dirk Mueller2021-03-22 14:49:54 +00:00
c06071fd60
Accepting request 880296 from home:bnavigator:branches:devel:languages:python
Dirk Mueller2021-03-22 14:49:54 +00:00
d244873f10
Accepting request 876093 from devel:languages:python
Richard Brown
2021-03-05 12:43:11 +00:00
b7129694c4
Accepting request 876093 from devel:languages:python
Richard Brown
2021-03-05 12:43:11 +00:00
08a2f718b6
- update to 1.8.7: - Decoding deflate-encoded responses now supports data which is packed in a zlib container as it is supposed to be. The old, non-standard behaviour is still supported.
Dirk Mueller2021-03-02 00:33:43 +00:00
d1e2eb1d77
- update to 1.8.7: - Decoding deflate-encoded responses now supports data which is packed in a zlib container as it is supposed to be. The old, non-standard behaviour is still supported.
Dirk Mueller2021-03-02 00:33:43 +00:00
c3276ed32d
- update to 1.8.5: - Fixed one last remaining invalid escape sequence in a docstring. - Response.content_type now accepts unicode strings on Python 2 and encodes them to latin-1. - Accept header classes now support a .copy() function that may be used to create a copy. This allows `create_accept_header and other like functions to accept an pre-existing Accept header. - Some backslashes introduced with the new accept handling code were causing DeprecationWarnings upon compiling the source to pyc files, all of the backslashes have been reigned in as appropriate, and users should no longer see DeprecationWarnings for invalid escape sequence. - acceptparse.AcceptValidHeader, acceptparse.AcceptInvalidHeader, and acceptparse.AcceptNoHeader will now always ignore offers that do not match the required media type grammar when calling .acceptable_offers(). Previous versions raised a ValueError for invalid offers in AcceptValidHeader and returned them as acceptable in the others. - Add Request.remote_host, exposing REMOTE_HOST environment variable. - Added acceptparse.Accept.parse_offer to codify what types of offers are compatible with acceptparse.AcceptValidHeader.acceptable_offers, acceptparse.AcceptMissingHeader.acceptable_offers, and acceptparse.AcceptInvalidHeader.acceptable_offers. This API also normalizes the offer with lowercased type/subtype and parameter names. - SameSite may now be passed as str or bytes to Response.set_cookie and cookies.make_cookie. This was an oversight as all other arguments would be correctly coerced before being serialized. - acceptparse.MIMEAccept which is deprecated in WebOb 1.8.0 made a backwards incompatible change that led to it raising on an invalid Accept header. This behaviour has now been reversed, as well as some other fixes to allow MIMEAccept to behave more like the old version. - request.POST` now supports any requests with the appropriate
Thomas Bechtold2019-01-07 09:57:14 +00:00
535642c887
- update to 1.8.5: - Fixed one last remaining invalid escape sequence in a docstring. - Response.content_type now accepts unicode strings on Python 2 and encodes them to latin-1. - Accept header classes now support a .copy() function that may be used to create a copy. This allows `create_accept_header and other like functions to accept an pre-existing Accept header. - Some backslashes introduced with the new accept handling code were causing DeprecationWarnings upon compiling the source to pyc files, all of the backslashes have been reigned in as appropriate, and users should no longer see DeprecationWarnings for invalid escape sequence. - acceptparse.AcceptValidHeader, acceptparse.AcceptInvalidHeader, and acceptparse.AcceptNoHeader will now always ignore offers that do not match the required media type grammar when calling .acceptable_offers(). Previous versions raised a ValueError for invalid offers in AcceptValidHeader and returned them as acceptable in the others. - Add Request.remote_host, exposing REMOTE_HOST environment variable. - Added acceptparse.Accept.parse_offer to codify what types of offers are compatible with acceptparse.AcceptValidHeader.acceptable_offers, acceptparse.AcceptMissingHeader.acceptable_offers, and acceptparse.AcceptInvalidHeader.acceptable_offers. This API also normalizes the offer with lowercased type/subtype and parameter names. - SameSite may now be passed as str or bytes to Response.set_cookie and cookies.make_cookie. This was an oversight as all other arguments would be correctly coerced before being serialized. - acceptparse.MIMEAccept which is deprecated in WebOb 1.8.0 made a backwards incompatible change that led to it raising on an invalid Accept header. This behaviour has now been reversed, as well as some other fixes to allow MIMEAccept to behave more like the old version. - request.POST` now supports any requests with the appropriate
Thomas Bechtold2019-01-07 09:57:14 +00:00
6b93b077b9
- Drop not needed python-pytest-cov BuildRequires
Thomas Bechtold2018-02-23 19:55:39 +00:00
258d8d8dac
- Drop not needed python-pytest-cov BuildRequires
Thomas Bechtold2018-02-23 19:55:39 +00:00
ccb6142826
- update to 1.7.4: - Add support for wsgi.input_terminated in the wsgi environ to allow for Chunked Encoding to be used with WebOb
Thomas Bechtold2018-02-23 13:58:33 +00:00
7df3299bc0
- update to 1.7.4: - Add support for wsgi.input_terminated in the wsgi environ to allow for Chunked Encoding to be used with WebOb
Thomas Bechtold2018-02-23 13:58:33 +00:00
fa732c2f16
Accepting request 508803 from devel:languages:python
Yuchen Lin2017-08-04 09:58:54 +00:00
41a537ea42
Accepting request 508803 from devel:languages:python
Yuchen Lin2017-08-04 09:58:54 +00:00
9e8e0a8a84
Accepting request 508590 from home:tbechtold:branches:devel:languages:python
Thomas Bechtold2017-07-07 13:03:48 +00:00
e27ca57a11
Accepting request 508590 from home:tbechtold:branches:devel:languages:python
Thomas Bechtold2017-07-07 13:03:48 +00:00
dbd1ab5a85
- update to 1.6.2: * WebOb's exceptions will lazily read underlying variables when inserted into templates to avoid expensive computations/crashes when inserting into the template. This had a bad performance regression on Py27 because of the way the lazified class was created and returned. See https://github.com/Pylons/webob/pull/284Dirk Mueller2016-10-15 09:38:23 +00:00
b02832e3a5
- update to 1.6.2: * WebOb's exceptions will lazily read underlying variables when inserted into templates to avoid expensive computations/crashes when inserting into the template. This had a bad performance regression on Py27 because of the way the lazified class was created and returned. See https://github.com/Pylons/webob/pull/284Dirk Mueller2016-10-15 09:38:23 +00:00