Open
Conversation
There was a problem hiding this comment.
Pull request overview
Updates JavaScript dependencies to address runtime/install issues encountered on Ubuntu 24.04, aiming to keep the project’s Bun-based toolchain working across environments.
Changes:
- Bump
@modelcontextprotocol/sdkfrom^1.25.1to^1.26.0 - Bump
node-llama-cppfrom^3.14.5to^3.15.1 - Bump
zodfrom^4.2.1to^4.3.6
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+21
to
+25
| "@modelcontextprotocol/sdk": "^1.26.0", | ||
| "node-llama-cpp": "^3.15.1", | ||
| "sqlite-vec": "^0.1.7-alpha.2", | ||
| "yaml": "^2.8.2", | ||
| "zod": "^4.2.1" | ||
| "zod": "^4.3.6" |
There was a problem hiding this comment.
Dependency versions were bumped in package.json, but bun.lock still pins the old versions (@modelcontextprotocol/sdk@1.25.1, node-llama-cpp@3.14.5, zod@4.2.1). This means installs/CI will continue using the old versions and the upgrade may not actually take effect. Regenerate and commit bun.lock (e.g., run bun install) so the lockfile matches the updated dependency ranges.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Issue was that it doesn't work on my Ubuntu 24.04 laptop.
After I upgraded packages everything seems solved.
Recommending to merge upgrades to main, it'll solve some future issue for others too.