-
Notifications
You must be signed in to change notification settings - Fork 64
Bump urllib3 from 2.5.0 to 2.6.0 in the pip group across 1 directory #162
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Bumps the pip group with 1 update in the / directory: [urllib3](https://github.com/urllib3/urllib3). Updates `urllib3` from 2.5.0 to 2.6.0 - [Release notes](https://github.com/urllib3/urllib3/releases) - [Changelog](https://github.com/urllib3/urllib3/blob/main/CHANGES.rst) - [Commits](urllib3/urllib3@2.5.0...2.6.0) --- updated-dependencies: - dependency-name: urllib3 dependency-version: 2.6.0 dependency-type: indirect dependency-group: pip ... Signed-off-by: dependabot[bot] <[email protected]>
Owner
|
@dependabot merge
…On Sat, Dec 6, 2025 at 6:24 AM dependabot[bot] ***@***.***> wrote:
This automated pull request fixes a security vulnerability
<https://github.com/beaufour/flickr-download/security/dependabot/19>
(high severity).
Learn more about Dependabot security updates
<https://docs.github.com/github/managing-security-vulnerabilities/configuring-dependabot-security-updates>.
------------------------------
Bumps the pip group with 1 update in the / directory: urllib3
<https://github.com/urllib3/urllib3>.
Updates urllib3 from 2.5.0 to 2.6.0
Release notes
*Sourced from urllib3's releases
<https://github.com/urllib3/urllib3/releases>.*
2.6.0 🚀 urllib3 is fundraising for HTTP/2 support
urllib3 is raising ~$40,000 USD
<https://sethmlarson.dev/urllib3-is-fundraising-for-http2-support> to
release HTTP/2 support and ensure long-term sustainable maintenance of the
project after a sharp decline in financial support. If your company or
organization uses Python and would benefit from HTTP/2 support in Requests,
pip, cloud SDKs, and thousands of other projects please consider
contributing financially <https://opencollective.com/urllib3> to ensure
HTTP/2 support is developed sustainably and maintained for the long-haul.
Thank you for your support.
Security
- Fixed a security issue where streaming API could improperly handle
highly compressed HTTP content ("decompression bombs") leading to excessive
resource consumption even when a small amount of data was requested.
Reading small chunks of compressed data is safer and much more efficient
now. (CVE-2025-66471
<https://github.com/advisories/GHSA-2xpw-w6gg-jr37> reported by
@Cycloctane <https://github.com/Cycloctane>, 8.9 High,
GHSA-2xpw-w6gg-jr37 <https://github.com/advisories/GHSA-2xpw-w6gg-jr37>
)
- Fixed a security issue where an attacker could compose an HTTP
response with virtually unlimited links in the Content-Encoding
header, potentially leading to a denial of service (DoS) attack by
exhausting system resources during decoding. The number of allowed chained
encodings is now limited to 5. (CVE-2025-66418
<https://github.com/advisories/GHSA-gm62-xv2j-4w53> reported by
@illia-v <https://github.com/illia-v>, 8.9 High, GHSA-gm62-xv2j-4w53
<https://github.com/advisories/GHSA-gm62-xv2j-4w53>)
[!IMPORTANT]
- If urllib3 is not installed with the optional urllib3[brotli] extra,
but your environment contains a Brotli/brotlicffi/brotlipy package anyway,
make sure to upgrade it to at least Brotli 1.2.0 or brotlicffi 1.2.0.0 to
benefit from the security fixes and avoid warnings. Prefer using
urllib3[brotli] to install a compatible Brotli package automatically.
- If you use custom decompressors, please make sure to update them to
respect the changed API of urllib3.response.ContentDecoder.
Features
- Enabled retrieval, deletion, and membership testing in HTTPHeaderDict
using bytes keys. (#3653
<https://redirect.github.com/urllib3/urllib3/issues/3653>)
- Added host and port information to string representations of
HTTPConnection. (#3666
<https://redirect.github.com/urllib3/urllib3/issues/3666>)
- Added support for Python 3.14 free-threading builds explicitly. (
#3696 <https://redirect.github.com/urllib3/urllib3/issues/3696>)
Removals
- Removed the HTTPResponse.getheaders() method in favor of
HTTPResponse.headers. Removed the HTTPResponse.getheader(name, default)
method in favor of HTTPResponse.headers.get(name, default). (#3622
<https://redirect.github.com/urllib3/urllib3/issues/3622>)
Bugfixes
- Fixed redirect handling in urllib3.PoolManager when an integer is
passed for the retries parameter. (#3649
<https://redirect.github.com/urllib3/urllib3/issues/3649>)
- Fixed HTTPConnectionPool when used in Emscripten with no explicit
port. (#3664 <https://redirect.github.com/urllib3/urllib3/issues/3664>)
- Fixed handling of SSLKEYLOGFILE with expandable variables. (#3700
<https://redirect.github.com/urllib3/urllib3/issues/3700>)
Misc
- Changed the zstd extra to install backports.zstd instead of zstandard
on Python 3.13 and before. (#3693
<https://redirect.github.com/urllib3/urllib3/issues/3693>)
- Improved the performance of content decoding by optimizing
BytesQueueBuffer class. (#3710
<https://redirect.github.com/urllib3/urllib3/issues/3710>)
- Allowed building the urllib3 package with newer setuptools-scm v9.x.
(#3652 <https://redirect.github.com/urllib3/urllib3/issues/3652>)
- Ensured successful urllib3 builds by setting Hatchling requirement
to ≥ 1.27.0. (#3638
<https://redirect.github.com/urllib3/urllib3/issues/3638>)
Changelog
*Sourced from urllib3's changelog
<https://github.com/urllib3/urllib3/blob/main/CHANGES.rst>.*
2.6.0 (2025-12-05) Security
- Fixed a security issue where streaming API could improperly handle
highly compressed HTTP content ("decompression bombs") leading to excessive
resource consumption even when a small amount of data was requested.
Reading small chunks of compressed data is safer and much more efficient
now. (GHSA-2xpw-w6gg-jr37 <
https://github.com/urllib3/urllib3/security/advisories/GHSA-2xpw-w6gg-jr37
>__)
- Fixed a security issue where an attacker could compose an HTTP
response with virtually unlimited links in the Content-Encoding
header, potentially leading to a denial of service (DoS) attack by
exhausting system resources during decoding. The number of allowed chained
encodings is now limited to 5. (GHSA-gm62-xv2j-4w53 <
https://github.com/urllib3/urllib3/security/advisories/GHSA-gm62-xv2j-4w53
>__)
.. caution::
-
If urllib3 is not installed with the optional urllib3[brotli] extra,
but your environment contains a Brotli/brotlicffi/brotlipy package anyway,
make sure to upgrade it to at least Brotli 1.2.0 or brotlicffi 1.2.0.0 to
benefit from the security fixes and avoid warnings. Prefer using
urllib3[brotli] to install a compatible Brotli package automatically.
-
If you use custom decompressors, please make sure to update them to
respect the changed API of urllib3.response.ContentDecoder.
Features
- Enabled retrieval, deletion, and membership testing in HTTPHeaderDict
using bytes keys. ([#3653](
urllib3/urllib3#3653) <
urllib3/urllib3#3653)
- Added host and port information to string representations of
HTTPConnection. ([#3666](urllib3/urllib3#3666)
<urllib3/urllib3#3666)
- Added support for Python 3.14 free-threading builds explicitly. (
[#3696](urllib3/urllib3#3696) <
urllib3/urllib3#3696)
Removals
- Removed the HTTPResponse.getheaders() method in favor of
HTTPResponse.headers. Removed the HTTPResponse.getheader(name, default)
method in favor of HTTPResponse.headers.get(name, default). ([#3622](
urllib3/urllib3#3622) <
urllib3/urllib3#3622)
Bugfixes
- Fixed redirect handling in urllib3.PoolManager when an integer is
passed for the retries parameter. ([#3649](
urllib3/urllib3#3649) <
urllib3/urllib3#3649>__)
- Fixed HTTPConnectionPool when used in Emscripten with no explicit
port. ([#3664](urllib3/urllib3#3664) <
urllib3/urllib3#3664)
- Fixed handling of SSLKEYLOGFILE with expandable variables. ([#3700](
urllib3/urllib3#3700) <
urllib3/urllib3#3700>__)
... (truncated)
Commits
- 720f484
<urllib3/urllib3@720f484>
Release 2.6.0
- 24d7b67
<urllib3/urllib3@24d7b67>
Merge commit from fork
- c19571d
<urllib3/urllib3@c19571d>
Merge commit from fork
- 816fcf0
<urllib3/urllib3@816fcf0>
Bump actions/setup-python from 6.0.0 to 6.1.0 (#3725
<https://redirect.github.com/urllib3/urllib3/issues/3725>)
- 18af0a1
<urllib3/urllib3@18af0a1>
Improve speed of BytesQueueBuffer.get() by using memoryview (#3711
<https://redirect.github.com/urllib3/urllib3/issues/3711>)
- 1f6abac
<urllib3/urllib3@1f6abac>
Bump versions of pre-commit hooks (#3716
<https://redirect.github.com/urllib3/urllib3/issues/3716>)
- 1c8fbf7
<urllib3/urllib3@1c8fbf7>
Bump actions/checkout from 5.0.0 to 6.0.0 (#3722
<https://redirect.github.com/urllib3/urllib3/issues/3722>)
- 7784b9e
<urllib3/urllib3@7784b9e>
Add Python 3.15 to CI (#3717
<https://redirect.github.com/urllib3/urllib3/issues/3717>)
- 0241c9e
<urllib3/urllib3@0241c9e>
Updated docs to reflect change in optional zstd dependency from
zstandard t...
- 7afcabb
<urllib3/urllib3@7afcabb>
Expand environment variable of SSLKEYLOGFILE (#3705
<https://redirect.github.com/urllib3/urllib3/issues/3705>)
- Additional commits viewable in compare view
<urllib3/urllib3@2.5.0...2.6.0>
[image: Dependabot compatibility score]
<https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores>
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting @dependabot
rebase.
------------------------------
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
- @dependabot rebase will rebase this PR
- @dependabot recreate will recreate this PR, overwriting any edits
that have been made to it
- @dependabot merge will merge this PR after your CI passes on it
- @dependabot squash and merge will squash and merge this PR after
your CI passes on it
- @dependabot cancel merge will cancel a previously requested merge
and block automerging
- @dependabot reopen will reopen this PR if it is closed
- @dependabot close will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- @dependabot show <dependency name> ignore conditions will show all
of the ignore conditions of the specified dependency
- @dependabot ignore <dependency name> major version will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific dependency's
major version or upgrade to it yourself)
- @dependabot ignore <dependency name> minor version will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific dependency's
minor version or upgrade to it yourself)
- @dependabot ignore <dependency name> will close this group update PR
and stop Dependabot creating any more for the specific dependency (unless
you unignore this specific dependency or upgrade to it yourself)
- @dependabot unignore <dependency name> will remove all of the ignore
conditions of the specified dependency
- @dependabot unignore <dependency name> <ignore condition> will
remove the ignore condition of the specified dependency and ignore
conditions
You can disable automated security fix PRs for this repo from the Security
Alerts page
<https://github.com/beaufour/flickr-download/network/alerts>.
------------------------------
You can view, comment on, or merge this pull request online at:
#162
Commit Summary
- 71bfaf5
<71bfaf5>
Bump urllib3 from 2.5.0 to 2.6.0 in the pip group across 1 directory
File Changes
(1 file <https://github.com/beaufour/flickr-download/pull/162/files>)
- *M* poetry.lock
<https://github.com/beaufour/flickr-download/pull/162/files#diff-f53a023eedfa3fbf2925ec7dc76eecdc954ea94b7e47065393dbad519613dc89>
(10)
Patch Links:
- https://github.com/beaufour/flickr-download/pull/162.patch
- https://github.com/beaufour/flickr-download/pull/162.diff
—
Reply to this email directly, view it on GitHub
<#162>, or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAB2POPV47QRU55ADOPMMS34AJR7NAVCNFSM6AAAAACOG7TIKWVHI2DSMVQWIX3LMV43ASLTON2WKOZTG4YDCMBYHA2DCMQ>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
|
Contributor
Author
|
Beginning January 27, 2026, Dependabot will no longer support the @dependabot merge command. Please use GitHub's native pull request controls instead. Please see the changelog announcement for additional details. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
dependencies
Pull requests that update a dependency file
python
Pull requests that update python code
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Bumps the pip group with 1 update in the / directory: urllib3.
Updates
urllib3from 2.5.0 to 2.6.0Release notes
Sourced from urllib3's releases.
Changelog
Sourced from urllib3's changelog.
... (truncated)
Commits
720f484Release 2.6.024d7b67Merge commit from forkc19571dMerge commit from fork816fcf0Bump actions/setup-python from 6.0.0 to 6.1.0 (#3725)18af0a1Improve speed ofBytesQueueBuffer.get()by using memoryview (#3711)1f6abacBump versions of pre-commit hooks (#3716)1c8fbf7Bump actions/checkout from 5.0.0 to 6.0.0 (#3722)7784b9eAdd Python 3.15 to CI (#3717)0241c9eUpdated docs to reflect change in optional zstd dependency fromzstandardt...7afcabbExpand environment variable of SSLKEYLOGFILE (#3705)Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)@dependabot ignore <dependency name> minor versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)@dependabot ignore <dependency name>will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>will remove the ignore condition of the specified dependency and ignore conditionsYou can disable automated security fix PRs for this repo from the Security Alerts page.