Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 5
chore(sdk): release 0.4.0 — republish expanded client surface; pin CLI/MCP deps#342
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
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| { | ||
| "sdks/typescript-sdk": "0.3.1", | ||
| "sdks/typescript-sdk": "0.4.0", | ||
| "sdks/typescript-sdk-cli": "0.1.0" | ||
| } |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Uh oh!
There was an error while loading. Please reload this page.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -54,7 +54,7 @@ | ||
| "prepublishOnly": "npm run build && npm run lint && npm run test" | ||
| }, | ||
| "dependencies": { | ||
| "@terminal49/sdk": "0.3.1", | ||
| "@terminal49/sdk": "0.4.0", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Pinning the CLI to SDK | ||
| "cli-table3": "^0.6.5", | ||
| "commander": "^13.0.0" | ||
| }, | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| { | ||
| "name": "@terminal49/sdk", | ||
| "version": "0.3.1", | ||
| "version": "0.4.0", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The SDK version is now | ||
| "description": "Terminal49 TypeScript SDK (JSON:API, openapi-fetch)", | ||
| "repository": { | ||
| "type": "git", | ||
Uh oh!
There was an error while loading. Please reload this page.
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 updates the MCP manifest to SDK
0.4.0, but the documentednpm run sdk:setuppath still hard-codesconst sdkSemver = '0.2.0'inpackages/mcp/scripts/sdk-setup.mjs. Running it with its defaultpublishedmode—or the documentedT49_SDK_SOURCE=published—therefore installs@terminal49/sdk@0.2.0with--no-save, overriding the version declared here and defeating this pin. Update the helper to install0.4.0, preferably by readingdependencies['@terminal49/sdk']from this package manifest so future releases cannot drift again.