Skip to content

Commit e409cff

Browse files
authored
Merge pull request #148 from bird-house/security-fix-urllib
2 parents a3fd92f + 0c1c0c1 commit e409cff

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

.dockerignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ testdata.json
4343

4444
# PyCharm
4545
**/*.idea
46+
.run
4647

4748
# Intellij
4849
**/*.iml

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ coverage.*
3535

3636
# PyCharm
3737
*.idea
38+
.run
3839

3940
# Kate
4041
*.kate-swp

CHANGES.rst

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,19 @@ Changes
44
Unreleased
55
====================================================================================================================
66

7+
Changes:
8+
9+
* Pin ``urllib3>=2.6.3`` for latest security vulnerability fixes.
10+
711
0.11.0 (2025-12-15)
812
====================================================================================================================
913

1014
Changes:
1115

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

1822
0.10.1 (2025-05-23)

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,5 @@ PyJWT>=2
3737
setuptools==75.3.2; python_version < "3.9" # noqa
3838
setuptools>=78.1.1; python_version >= "3.9"
3939
urllib3>=2.2.2; python_version < "3.9" # noqa
40-
urllib3>=2.6.0; python_version >= "3.9"
40+
urllib3>=2.6.3; python_version >= "3.9"
4141
zipp>=3.19.1

0 commit comments

Comments
 (0)