-
Notifications
You must be signed in to change notification settings - Fork 0
[Snyk] Fix for 2 vulnerabilities #46
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/openai": "^0.3.16", | ||
| "grammy": "^1.33.0", | ||
|
|
@@ -18,7 +18,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" | ||
|
Comment on lines
12
to
+21
|
||
| }, | ||
| "devDependencies": { | ||
| "@types/node": "^20", | ||
|
|
||
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 package.json specifies
"solana-agent-kit": "^2.0.1"but the lock file resolves to version 2.0.10. While this is normal behavior for caret ranges (^2.0.1 allows 2.0.10), the PR description states the upgrade is to fix vulnerabilities.For clarity and to ensure reproducible builds that match security expectations, consider either:
"solana-agent-kit": "^2.0.10""solana-agent-kit": "~2.0.1"This ensures that the exact version that fixed the vulnerabilities is what gets installed.