Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Copy link

Copilot AI Feb 16, 2026

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.

Suggested change
"@drift-labs/sdk": "2.129.0",
"@drift-labs/sdk": "2.109.0",

Copilot uses AI. Check for mistakes.
"@drift-labs/vaults-sdk": "^0.9.90",
Copy link

Copilot AI Feb 16, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is a significant minor version upgrade from 0.3.29 to 0.9.90 for @drift-labs/vaults-sdk. This represents approximately 60 minor version increments, which likely includes breaking changes or significant API modifications. The package is used in src/tools/drift/drift.ts and src/tools/drift/drift_vault.ts for vault operations. This upgrade should be tested thoroughly to ensure all vault-related functionality (deposit, withdrawal, vault client initialization) continues to work as expected.

Suggested change
"@drift-labs/vaults-sdk": "^0.9.90",
"@drift-labs/vaults-sdk": "0.9.90",

Copilot uses AI. Check for mistakes.
"@langchain/core": "^1.1.14",
Copy link

Copilot AI Feb 16, 2026

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.

Suggested change
"@langchain/core": "^1.1.14",
"@langchain/core": "^0.3.26",

Copilot uses AI. Check for mistakes.
"@langchain/groq": "^0.1.2",
"@langchain/langgraph": "^0.2.36",
"@langchain/openai": "^0.3.16",
Expand Down Expand Up @@ -80,7 +80,7 @@
"@tiplink/api": "^0.3.1",
"@voltr/vault-sdk": "^0.1.1",
"ai": "^4.0.22",
"axios": "^1.7.9",
"axios": "^1.13.5",
"bn.js": "^5.2.1",
"bs58": "^6.0.0",
"chai": "^5.1.2",
Expand Down