fix: update package dependencies for aiohttp, requests, pypdf, and lo…#871
Closed
Dhanushree-Microsoft wants to merge 2 commits into
Closed
fix: update package dependencies for aiohttp, requests, pypdf, and lo…#871Dhanushree-Microsoft wants to merge 2 commits into
Dhanushree-Microsoft wants to merge 2 commits into
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Note
Copilot was unable to run its full agentic suite in this review.
Updates backend (Python) and frontend (JavaScript) dependencies to newer versions to improve security, compatibility, and performance.
Changes:
- Bumped Python deps (
aiohttp,requests,types-requests) insrc/api/requirements.txtandaiohttpin agent scripts. - Upgraded
pypdffor index scripts. - Added
lodashas an explicit frontend dependency.
Reviewed changes
Copilot reviewed 4 out of 5 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| src/api/requirements.txt | Updates pinned HTTP client dependencies (requests, types-requests, aiohttp). |
| infra/scripts/agent_scripts/requirements.txt | Keeps aiohttp aligned with the API requirements bump. |
| infra/scripts/index_scripts/requirements.txt | Upgrades pypdf for index script PDF processing. |
| src/App/package.json | Adds lodash as an explicit dependency. |
Files not reviewed (1)
- src/App/package-lock.json: Language not supported
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Contributor
Author
|
Closing in favor of #872 (recreated with same changes) |
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.
Purpose
This pull request primarily updates several dependencies across both backend (Python) and frontend (JavaScript) components to their latest versions. These updates are aimed at improving security, compatibility, and performance.
Dependency updates (Python):
aiohttpfrom version 3.13.3 to 3.13.4 in bothinfra/scripts/agent_scripts/requirements.txtandsrc/api/requirements.txtto ensure consistency and benefit from the latest fixes. [1] [2]requeststo 2.33.0 andtypes-requeststo 2.33.0.20260408 insrc/api/requirements.txtfor improved compatibility and type checking.pypdffrom 6.6.2 to 6.10.0 ininfra/scripts/index_scripts/requirements.txtfor enhanced PDF processing features and bug fixes.Dependency updates (JavaScript):
lodashpackage from version 4.17.23 to 4.18.1 insrc/App/package-lock.jsonto address security vulnerabilities and improve performance.lodash(version ^4.18.0) as a dependency insrc/App/package.jsonto ensure it is explicitly included in the project.Does this introduce a breaking change?