fix: bump dependency minimums to address active CVEs#1519
Open
jsonmp-k8 wants to merge 2 commits intokagent-dev:mainfrom
Open
fix: bump dependency minimums to address active CVEs#1519jsonmp-k8 wants to merge 2 commits intokagent-dev:mainfrom
jsonmp-k8 wants to merge 2 commits intokagent-dev:mainfrom
Conversation
- next: ^16.1.4 → ^16.1.5 (CVE-2026-23864: DoS via memory exhaustion in React Server Components, CVSS 7.5) - react/react-dom: ^19.2.3 → ^19.2.4 (CVE-2026-23864: same RSC DoS, React-side vector) - litellm: >=1.74.3 → >=1.81.0 (CVE-2025-45809: SQL injection; pins above all known affected releases) - httpx-sse: >=0.4.2 → >=0.4.3 (fixes performance regression introduced in the 0.4.2 SSE line terminator fix) Signed-off-by: Jaison Paul <paul.jaison@gmail.com>
Contributor
There was a problem hiding this comment.
Pull request overview
Updates frontend and Python dependency minimum versions to address known vulnerabilities (and one performance regression) so the UI and agent runtime pull patched releases.
Changes:
- Bump
next,react, andreact-domminimums inui/package.json. - Bump
litellmandhttpx-sseminimums inpython/packages/kagent-adk/pyproject.tomlwith clarifying security/perf notes.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 3 comments.
| File | Description |
|---|---|
| ui/package.json | Raises next/react/react-dom minimums to patched versions. |
| python/packages/kagent-adk/pyproject.toml | Raises litellm and httpx-sse minimums to avoid vulnerable/buggy releases. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
- ui/package-lock.json: reflects bumped next/react/react-dom ranges - python/uv.lock: resolves litellm to v1.82.4 (was v1.74.9) and updates httpx-sse constraint to >=0.4.3 Signed-off-by: Jaison Paul <paul.jaison@gmail.com>
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.
Summary
^16.1.4→^16.1.5— fixes CVE-2026-23864 (DoS via memory exhaustion in React Server Components, CVSS 7.5)^19.2.3→^19.2.4— fixes CVE-2026-23864 (same RSC DoS, React-side vector)>=1.74.3→>=1.81.0— pins above CVE-2025-45809 (SQL injection) and all other known affected releases>=0.4.2→>=0.4.3— fixes performance regression introduced in the 0.4.2 SSE line terminator fixCVE Details
Test plan
cd ui && npm installresolves without conflictscd ui && npm run buildsucceedsuv syncin Python workspace resolves without conflictsmake -C python testpasses