Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 0 additions & 34 deletions .travis.yml

This file was deleted.

36 changes: 36 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,39 @@
1.8.9 (2024-11-23)
------------------

Bugfix
~~~~~~

- Add `legacy-cgi` to required packages to be installed for Python 3.13
compatibility. See https://github.com/Pylons/webob/pull/469

1.8.8 (2024-08-13)
------------------

Security Fix
~~~~~~~~~~~~

- 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.

See https://github.com/Pylons/webob/security/advisories/GHSA-mg3v-6m49-jhp3
and CVE-2024-42353

Thanks to Sara Gao for the report

1.8.7 (2021-02-17)
------------------

Bugfix
~~~~~~

- 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.

See https://github.com/Pylons/webob/pull/426


1.8.6 (2020-01-21)
------------------

Expand Down
15 changes: 15 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
graft src
graft docs
prune docs/_build
graft tests

include README.rst
include CHANGES.txt HISTORY.txt
include contributing.md RELEASING.rst
include pyproject.toml
include .coveragerc .flake8 tox.ini
include .readthedocs.yaml
include appveyor.yml rtd.txt

global-exclude __pycache__ *.py[cod]
global-exclude .DS_Store
Loading
Loading