Skip to content
Open
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions examples/tg-bot-starter/advanced-tg-bot/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"lint": "next lint"
},
"dependencies": {
"@langchain/core": "^0.3.26",
"@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.

The @langchain/core package is being upgraded from ^0.3.26 to ^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 be 1.1.24. This major version change may introduce breaking changes that could affect compatibility with other @langchain packages 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.

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

Copilot uses AI. Check for mistakes.
"@langchain/langgraph": "^0.2.36",
"@langchain/langgraph-checkpoint-postgres": "^0.0.2",
"@langchain/openai": "^0.3.16",
Expand All @@ -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"
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.

The solana-agent-kit package is being updated from ^1.3.0 to ^2.0.1, which is a major version bump. This is a breaking change and could affect the functionality of the bot. The application code should be reviewed and tested to ensure it's compatible with the new 2.x API of solana-agent-kit, as major version changes typically include breaking API changes.

Suggested change
"solana-agent-kit": "^2.0.1"
"solana-agent-kit": "^1.3.0"

Copilot uses AI. Check for mistakes.
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.

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.

Suggested change
"solana-agent-kit": "^2.0.1"
"solana-agent-kit": "^2.0.10"

Copilot uses AI. Check for mistakes.
},
"devDependencies": {
"@types/node": "^20",
Expand Down
Loading