-
Notifications
You must be signed in to change notification settings - Fork 0
[Snyk] Fix for 2 vulnerabilities #51
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -9,7 +9,7 @@ | |||||||||
| "lint": "next lint" | ||||||||||
| }, | ||||||||||
| "dependencies": { | ||||||||||
| "@langchain/core": "^0.3.26", | ||||||||||
| "@langchain/core": "^1.1.14", | ||||||||||
| "@langchain/langgraph": "^0.2.36", | ||||||||||
| "@langchain/langgraph-checkpoint-postgres": "^0.0.2", | ||||||||||
| "@langchain/openai": "^0.3.16", | ||||||||||
|
|
@@ -20,7 +20,7 @@ | |||||||||
| "prebuilt": "link:@langchain/langgraph/prebuilt", | ||||||||||
| "react": "^19.2.0", | ||||||||||
| "react-dom": "^19.0.0", | ||||||||||
| "solana-agent-kit": "^1.3.0" | ||||||||||
| "solana-agent-kit": "^2.0.1" | ||||||||||
|
||||||||||
| "solana-agent-kit": "^2.0.1" | |
| "solana-agent-kit": "^1.3.0" |
Copilot
AI
Feb 16, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The PR description mentions upgrading solana-agent-kit to fix vulnerabilities, but the package.json specifies ^2.0.1 while the PR description mentions ^2.0.10. The diff shows the version in package.json is being changed from ^1.3.0 to ^2.0.1, but the pnpm-lock.yaml shows version 2.0.10 is actually being installed. This inconsistency should be resolved - either update package.json to ^2.0.10 to match what's actually being installed, or explain why the versions differ.
| "solana-agent-kit": "^2.0.1" | |
| "solana-agent-kit": "^2.0.10" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The
@langchain/corepackage is being upgraded from^0.3.26to^1.1.14, which is a major version bump (0.x to 1.x). According to the pnpm-lock.yaml, the actual installed version will be1.1.24. This major version change may introduce breaking changes that could affect compatibility with other@langchainpackages in the project (@langchain/langgraph,@langchain/langgraph-checkpoint-postgres,@langchain/openai). These peer dependencies should be verified for compatibility with the new major version of@langchain/core.