Upgrade TypeScript libraries to newer versions - #198
Merged
olaservo merged 1 commit intoSep 15, 2026
Merged
Conversation
There was a problem hiding this comment.
🟢 Approval recommended
No unresolved blocking issues were identified.
Pull request overview
This pull request upgrades TypeScript dependencies and updates compatibility with the Anthropic SDK and dotenv.
Changes:
- Upgrades TypeScript, Node types, Zod, dotenv, and Anthropic SDK dependencies.
- Enables explicit Node typings in all TypeScript configurations.
- Updates Anthropic type usage and quiets dotenv startup logging.
File summaries
| File | Summary |
|---|---|
weather-server-typescript/tsconfig.json |
Enables Node typings. |
weather-server-typescript/package.json |
Updates dependencies. |
weather-server-typescript/package-lock.json |
Locks updated dependencies. |
tests/helpers/tsconfig.json |
Enables Node typings. |
tests/helpers/package.json |
Updates helper dependencies. |
tests/helpers/package-lock.json |
Locks updated helper dependencies. |
mcp-client-typescript/tsconfig.json |
Enables Node typings. |
mcp-client-typescript/package.json |
Updates client dependencies. |
mcp-client-typescript/package-lock.json |
Locks updated dependencies. |
mcp-client-typescript/index.ts |
Uses supported Anthropic types and quiet dotenv loading. |
Review details
Files not reviewed (3)
- mcp-client-typescript/package-lock.json: Generated file
- tests/helpers/package-lock.json: Generated file
- weather-server-typescript/package-lock.json: Generated file
- Files reviewed: 7/10 changed files
- Comments generated: 0
- Review effort level: Lite
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
olaservo
approved these changes
Sep 15, 2026
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.
Motivation and Context
Updating to the latest versions of
@anthropic-ai/sdk(0.124.0),typescript(7.0.2) and@types/node(24.13.4), as well as other dependencies to keep the repo up-to-date.Code changes required by the new versions:
mcp-client-typescript/index.ts: the Anthropic types were imported from a deepresources/messages/messages.mjspath, which is not a supported entry point. They now come from theAnthropicnamespace, the idiom the SDK documents.dotenv17 logs an "injecting env" line to stdout by default. The client now passesquiet: true.types: ["node"]explicitly, which is what the TypeScript team recommends.tests/helpersgot the same package bumps so the whole TypeScript surface of the repo is on one toolchain.How Has This Been Tested?
Locally.
Breaking Changes
N/a.
Types of changes
Checklist
Additional context
N/a