Bump tornado from 6.4.1 to 6.5.6 in /experiments/agentcompany/openhands#36
Open
dependabot[bot] wants to merge 1 commit into
Open
Conversation
Bumps [tornado](https://github.com/tornadoweb/tornado) from 6.4.1 to 6.5.6. - [Changelog](https://github.com/tornadoweb/tornado/blob/master/docs/releases.rst) - [Commits](tornadoweb/tornado@v6.4.1...v6.5.6) --- updated-dependencies: - dependency-name: tornado dependency-version: 6.5.6 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
|
Review the following changes in direct dependencies. Learn more about Socket for GitHub.
|
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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 tornado from 6.4.1 to 6.5.6.
Changelog
Sourced from tornado's changelog.
... (truncated)
Commits
aba2569Merge pull request #3626 from bdarnell/fixes-656a24b260httpclient_test: Accept an additional error message varianta74240aRelease notes and version bump for 6.5.6.e8fc7edsimple_httpclient: Strip auth headers on cross-origin redirects96dc88cspeedups: validate mask lengthff808b3http1connection: Enforce max_body_size in _GzipMessageDelegateede4e37auth: Correctly parse check_authentication response1c178beRemove obsolete curl force_timeout workaroundc99d55bReplace deprecated pycurl IOCTLFUNCTION callback with SEEKFUNCTION2761431Merge pull request #3587 from bdarnell/fix-linkDependabot 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 show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill 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 versionwill 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 dependencywill 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.
Greptile Summary
This PR bumps
tornadofrom6.4.1to6.5.6in the OpenHands experiment requirements file. The upgrade includes security fixes and bug fixes across several patch releases.simple_httpclientnow stripsAuthorizationand other auth headers when following cross-origin redirects, preventing credential leakage to unintended hosts._GzipMessageDelegatenow properly enforcesmax_body_size, and the C-extension speedups module validates WebSocket mask lengths to prevent malformed frames.Confidence Score: 5/5
Safe to merge — this is a targeted dependency patch that resolves known security issues without introducing new behavior in application code.
The change is a single-line version pin update in a requirements file. The new version fixes auth-header leakage on cross-origin redirects, enforces decompression size limits, and hardens the WebSocket extension — all improvements over the previous version with no reported breaking changes.
No files require special attention.
Important Files Changed
Flowchart
%%{init: {'theme': 'neutral'}}%% flowchart TD A[HTTP Request via simple_httpclient] --> B{Cross-origin redirect?} B -- No --> C[Forward all headers including Auth] B -- Yes --> D[Strip Authorization / sensitive headers] D --> E[Follow redirect safely] C --> E E --> F[Response returned to caller] subgraph tornado 6.5.6 fixes G[GzipMessageDelegate] --> H[Enforce max_body_size] I[WebSocket C-ext speedups] --> J[Validate mask length] endReviews (1): Last reviewed commit: "Bump tornado from 6.4.1 to 6.5.6 in /exp..." | Re-trigger Greptile