-
Notifications
You must be signed in to change notification settings - Fork 33
build(deps): bump requests from 2.31.0 to 2.32.4 in /contrib/libcbor/doc/source #360
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
ericbsd
merged 1 commit into
stable/14
from
dependabot/pip/contrib/libcbor/doc/source/requests-2.32.4
Jun 12, 2025
Merged
build(deps): bump requests from 2.31.0 to 2.32.4 in /contrib/libcbor/doc/source #360
ericbsd
merged 1 commit into
stable/14
from
dependabot/pip/contrib/libcbor/doc/source/requests-2.32.4
Jun 12, 2025
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
Contributor
Bumps [requests](https://github.com/psf/requests) from 2.31.0 to 2.32.4. - [Release notes](https://github.com/psf/requests/releases) - [Changelog](https://github.com/psf/requests/blob/main/HISTORY.md) - [Commits](psf/requests@v2.31.0...v2.32.4) --- updated-dependencies: - dependency-name: requests dependency-version: 2.32.4 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]>
Can one of the admins verify this patch? |
Reviewer's GuideUpdates the Sphinx documentation build requirements by bumping the requests library from 2.31.0 to 2.32.4 to incorporate the latest security fixes and improvements. Sequence Diagram: 'requests' Library .netrc File Interaction (CVE-2024-47081 Fix)sequenceDiagram
participant ClientCode as "Application/Script (using requests)"
participant RequestsLib as "requests Library (v2.32.4)"
participant NetrcFile as ".netrc File"
ClientCode->>+RequestsLib: Make HTTP Request (e.g., to example.com)
RequestsLib->>RequestsLib: Determine hostname for .netrc lookup
alt Behavior prior to v2.32.4 (Vulnerable to CVE-2024-47081)
RequestsLib->>NetrcFile: Lookup credentials using full netloc (e.g., example.com:port)
NetrcFile-->>RequestsLib: Potentially returns credentials for a broader or incorrect host match
else Behavior with v2.32.4 (CVE-2024-47081 Fixed)
RequestsLib->>NetrcFile: Lookup credentials using only hostname (e.g., example.com)
NetrcFile-->>RequestsLib: Returns credentials strictly for the specified hostname
end
RequestsLib-->>-ClientCode: Proceed with request using appropriately scoped credentials
Class Diagram: API Change in 'requests.adapters.HTTPAdapter' (v2.32.x)classDiagram
class HTTPAdapter {
# _get_connection(pool_manager, request, ...)* : Connection %% Deprecated in requests >=2.32.0
+ get_connection_with_tls_context(pool_manager, request, ...)* : Connection %% New public API in requests >=2.32.2
}
note "Method _get_connection is deprecated in requests v2.32.x series. Custom HTTPAdapter subclasses should migrate to get_connection_with_tls_context."
%% The note above is for context; actual Mermaid rendering might vary.
%% For a pure diagram without explicit notes, the method names and context imply the change:
class requests.adapters.HTTPAdapter {
#_get_connection() : Connection
+get_connection_with_tls_context() : Connection
}
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
ericbsd
approved these changes
Jun 12, 2025
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 requests from 2.31.0 to 2.32.4.
Release notes
Sourced from requests's releases.
... (truncated)
Changelog
Sourced from requests's changelog.
... (truncated)
Commits
021dc72
Polish up release tooling for last manual release821770e
Bump version and add release notes for v2.32.459f8aa2
Add netrc file search information to authentication documentation (#6876)5b4b64c
Add more tests to prevent regression of CVE 2024 470817bc4587
Add new test to check netrc auth leak (#6962)96ba401
Only use hostname to do netrc lookup instead of netloc7341690
Merge pull request #6951 from tswast/patch-16716d7c
remove linksa7e1c74
Update docs/conf.pyc799b81
docs: fix dead links to kenreitz.orgDependabot 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 this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)You can disable automated security fix PRs for this repo from the Security Alerts page.
Summary by Sourcery
Chores: