-
Notifications
You must be signed in to change notification settings - Fork 0
[Snyk] Fix for 4 vulnerabilities #48
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 | ||||
|---|---|---|---|---|---|---|
|
|
@@ -13,8 +13,8 @@ | |||||
| "node": ">=18" | ||||||
| }, | ||||||
| "dependencies": { | ||||||
| "@langchain/community": "^0.3.11", | ||||||
| "@langchain/core": "^0.3.17", | ||||||
| "@langchain/community": "^1.1.14", | ||||||
| "@langchain/core": "^1.1.14", | ||||||
| "@langchain/langgraph": "^0.2.20", | ||||||
| "@langchain/openai": "^0.3.11", | ||||||
| "@next/bundle-analyzer": "^13.4.19", | ||||||
|
|
@@ -25,7 +25,7 @@ | |||||
| "@types/react-dom": "18.3.0", | ||||||
| "ai": "^3.1.12", | ||||||
| "autoprefixer": "10.4.14", | ||||||
| "eslint": "8.46.0", | ||||||
| "eslint": "10.0.0", | ||||||
|
||||||
| "eslint": "10.0.0", | |
| "eslint": "8.46.0", |
Copilot
AI
Feb 14, 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 upgrade of solana-agent-kit from ^1.3.0 to ^2.0.1 creates version inconsistency across the repository examples. The root package (main solana-agent-kit library) is at version 1.4.8, and other examples (agent-kit-langgraph, persistent-agent) still use ^1.3.0. This could lead to inconsistent behavior across examples and confusion for users. Consider:
- Updating all examples to use the same version of solana-agent-kit, or
- Documenting why different examples use different versions, or
- Verifying that version 2.0.1 is compatible with the current codebase (since the root package is still at 1.4.8)
| "solana-agent-kit": "^2.0.1", | |
| "solana-agent-kit": "^1.4.8", |
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 major version upgrade of @langchain/core (0.3.17 → 1.1.14) and @langchain/community (0.3.11 → 1.1.14) creates version inconsistency across the repository. Other dependencies like @langchain/langgraph (^0.2.20), @langchain/openai (^0.3.11), and langchain (^0.3.5) remain at 0.x versions. LangChain packages typically have peer dependency requirements, and mixing v0.3 and v1.1 packages may cause compatibility issues. All @langchain/* packages should ideally be upgraded together to ensure compatibility. Consider upgrading @langchain/langgraph, @langchain/openai, and langchain to their v1.x equivalents if available.