Skip to content
Merged
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
1 change: 1 addition & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ testdata.json

# PyCharm
**/*.idea
.run

# Intellij
**/*.iml
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ coverage.*

# PyCharm
*.idea
.run

# Kate
*.kate-swp
Expand Down
10 changes: 7 additions & 3 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,19 @@ Changes
Unreleased
====================================================================================================================

Changes:

* Pin ``urllib3>=2.6.3`` for latest security vulnerability fixes.

0.11.0 (2025-12-15)
====================================================================================================================

Changes:

* Add Python 3.13 to CI and project setup.
* Update docker base to `python:3.13.11-alpine3.23`.
* Pin `requests>=2.32.5` and `urllib3>=2.6.0` for latest security vulnerability fixes.
* Pin `requests>=2.32.4` to address security vulnerability
* Update docker base to ``python:3.13.11-alpine3.23``.
* Pin ``requests>=2.32.5`` and ``urllib3>=2.6.0`` for latest security vulnerability fixes.
* Pin ``requests>=2.32.4`` to address security vulnerability
(see `#143 <https://github.com/bird-house/twitcher/pull/143>`_).

0.10.1 (2025-05-23)
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,5 @@ PyJWT>=2
setuptools==75.3.2; python_version < "3.9" # noqa
setuptools>=78.1.1; python_version >= "3.9"
urllib3>=2.2.2; python_version < "3.9" # noqa
urllib3>=2.6.0; python_version >= "3.9"
urllib3>=2.6.3; python_version >= "3.9"
zipp>=3.19.1