-
Notifications
You must be signed in to change notification settings - Fork 0
[Snyk] Fix for 3 vulnerabilities #52
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 | ||||
|---|---|---|---|---|---|---|
|
|
@@ -42,9 +42,9 @@ | |||||
| "@bonfida/spl-name-service": "^3.0.7", | ||||||
| "@cks-systems/manifest-sdk": "0.1.59", | ||||||
| "@coral-xyz/anchor": "0.29", | ||||||
| "@drift-labs/sdk": "2.109.0-beta.11", | ||||||
| "@drift-labs/vaults-sdk": "^0.3.29", | ||||||
| "@langchain/core": "^0.3.26", | ||||||
| "@drift-labs/sdk": "2.129.0", | ||||||
| "@drift-labs/vaults-sdk": "^0.9.90", | ||||||
|
||||||
| "@drift-labs/vaults-sdk": "^0.9.90", | |
| "@drift-labs/vaults-sdk": "0.9.90", |
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.
This is a major version upgrade from 0.3.x to 1.1.x for @langchain/core. Major version changes typically include breaking API changes. The examples/agent-kit-langgraph/package.json uses @langchain/core version ^0.3.26, which may become incompatible with this upgrade. While the main package doesn't directly import from @langchain/core, it depends on other @langchain packages (@langchain/groq, @langchain/langgraph, @langchain/openai) that may have peer dependency requirements on specific @langchain/core versions. These dependencies should be checked for compatibility with @langchain/core 1.1.14.
| "@langchain/core": "^1.1.14", | |
| "@langchain/core": "^0.3.26", |
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.
This upgrade transitions from a beta version (2.109.0-beta.11) to a stable release (2.129.0), which is generally a positive change. However, this represents a jump of approximately 20 minor versions. The @drift-labs/sdk is used extensively in src/tools/drift/ for trading operations, market data, and position management. The transition from beta to stable may include API changes or behavioral differences that should be verified through testing.