Skip to content

build(deps): bump @modelcontextprotocol/sdk from 1.29.0 to 1.30.0 - #9

Merged
Mearman merged 1 commit into
mainfrom
dependabot/npm_and_yarn/modelcontextprotocol/sdk-1.29.0
Sep 8, 2026
Merged

Mearman merged 1 commit into
mainfrom
dependabot/npm_and_yarn/modelcontextprotocol/sdk-1.29.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Apr 27, 2026

Copy link
Copy Markdown
Contributor

Bumps @modelcontextprotocol/sdk from 1.29.0 to 1.30.0.

Release notes

Sourced from @​modelcontextprotocol/sdk's releases.

1.30.0

What's Changed

New Contributors

Full Changelog: modelcontextprotocol/typescript-sdk@v1.29.0...1.30.0

Commits
  • 2d889f2 chore: bump version to 1.30.0 (#2563)
  • e3f3daa Fix SSE keep-alive timer lifecycle in Streamable HTTP server transport (v1.x)...
  • bb5a718 fix(deps): widen @​hono/node-server past GHSA-frvp-7c67-39w9 (#2549)
  • 1dad263 fix: send SSE keep-alive comment frames from Streamable HTTP server transport...
  • 69749aa Validate Content-Type by parsed media type instead of substring match (v1.x) ...
  • 369513d fix: support Zod 3.25 method literals (#2368)
  • e7ee57c v1 stdio buffer limit (#2239)
  • c36e1ef Add end-to-end test suite (#2167)
  • bf1e022 chore(ci): switch publish to OIDC trusted publishing (#1839)
  • 9edbab7 fix(server): prioritize zod issues and format them (#1503)
  • See full diff in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​modelcontextprotocol/sdk since your current version.


Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

@dependabot @github

dependabot Bot commented on behalf of github Apr 27, 2026

Copy link
Copy Markdown
Contributor Author

Labels

The following labels could not be found: dependencies. Please create it before Dependabot can add it to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/modelcontextprotocol/sdk-1.29.0 branch 2 times, most recently from 3ebf223 to 48a96d3 Compare April 28, 2026 18:01
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/modelcontextprotocol/sdk-1.29.0 branch from 48a96d3 to 9775408 Compare May 21, 2026 11:22
@dependabot dependabot Bot changed the title build(deps): bump @modelcontextprotocol/sdk from 1.28.0 to 1.29.0 chore(deps): bump @modelcontextprotocol/sdk from 1.28.0 to 1.29.0 May 23, 2026
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/modelcontextprotocol/sdk-1.29.0 branch 2 times, most recently from d9d7d7a to ff6484e Compare May 25, 2026 13:45
@Mearman

Mearman commented Sep 8, 2026

Copy link
Copy Markdown
Member

@dependabot rebase

Bumps [@modelcontextprotocol/sdk](https://github.com/modelcontextprotocol/typescript-sdk) from 1.29.0 to 1.30.0.
- [Release notes](https://github.com/modelcontextprotocol/typescript-sdk/releases)
- [Commits](modelcontextprotocol/typescript-sdk@v1.29.0...1.30.0)

---
updated-dependencies:
- dependency-name: "@modelcontextprotocol/sdk"
  dependency-version: 1.29.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot changed the title chore(deps): bump @modelcontextprotocol/sdk from 1.28.0 to 1.29.0 build(deps): bump @modelcontextprotocol/sdk from 1.29.0 to 1.30.0 Sep 8, 2026
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/modelcontextprotocol/sdk-1.29.0 branch from ff6484e to b5b1162 Compare September 8, 2026 22:11
@Mearman
Mearman merged commit 0658895 into main Sep 8, 2026
5 checks passed
@Mearman
Mearman deleted the dependabot/npm_and_yarn/modelcontextprotocol/sdk-1.29.0 branch September 8, 2026 22:12
@github-actions

github-actions Bot commented Sep 8, 2026

Copy link
Copy Markdown

🎉 This PR is included in version 1.25.1 🎉

The release is available on:

Your semantic-release bot 📦🚀

mavrikfalkon added a commit to mavrikfalkon/agent-comms that referenced this pull request Sep 12, 2026
…S origin check

codex's review of 28bfa22 found isSameOriginUpgrade only accepted
http://127.0.0.1:<port>, while runWeb()'s own standalone-CLI banner
advertises http://localhost:<port> for the exact same server - a
dashboard opened via that URL had its own chat WebSocket rejected
with 403. Confirmed by reading both: server.ts's runWeb listener
prints the localhost banner, isSameOriginUpgrade compared against a
single hardcoded 127.0.0.1 origin string.

Fixed with an explicit loopback-hostname allowlist (127.0.0.1,
localhost) checked against the parsed Origin's hostname and port, not
a bare Host-header trust - still rejects any other origin exactly as
before. New test opens a WS with Origin: http://localhost:<port> and
confirms it succeeds.

Verified: tsc clean, eslint clean, full web-server.integration.test.ts
14/14, full npm test 49/50 (same pre-existing ExaDev#9 Windows failure,
unrelated).

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
mavrikfalkon added a commit to mavrikfalkon/agent-comms that referenced this pull request Sep 12, 2026
…script (bug ExaDev#10)

The build script's last step piped printf | cat | mv to prepend
#!/usr/bin/env node to dist/cli.js — POSIX-only utilities, so a plain
npm run build from cmd.exe or PowerShell failed outright, same class
of bug as the husky hooks fixed earlier tonight.

src/cli.ts has no shebang of its own and tsc doesn't add one, so this
step is the only source of it, and it's still needed: npm's POSIX
bin-linking for the published agent-comms binary depends on it. Can't
just drop it.

Replaced with scripts/add-shebang.ts: reads dist/cli.js, prepends the
shebang only if not already present (idempotent), and chmods 0o755 on
POSIX only (the mode bit is meaningless on Windows — see ExaDev#9). Runs via
plain node/tsx on any OS.

Verified: tsc clean, eslint clean, ran the actual remaining build
steps (tsc, copy-web-assets, add-shebang) end to end and confirmed
dist/cli.js has the shebang and still runs (--help works), confirmed
idempotent by running the script twice, full npm test 49/50 (same
pre-existing ExaDev#9 Windows failure, unrelated). Could not run the full
'npm run build' end-to-end on this machine — pnpm itself isn't
installed here, a pre-existing, unrelated gap that fails before
reaching this step either way.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
mavrikfalkon added a commit to mavrikfalkon/agent-comms that referenced this pull request Sep 12, 2026
…Dev#9)

NTFS has no POSIX mode bits, so fs.writeFileSync's mode option is a
no-op on Windows beyond a crude read-only flag - the OS always reports
~0o666 regardless of what identity-store.ts requested, which isn't a
real security gap (protection there comes from NTFS ACLs on the parent
directory instead), just a platform mismatch in the test's assertion.

Skips the assertion on win32 with an explicit reason (t.skip, not a
silent pass); the strict 0o600 check is unchanged on POSIX, and the
skip message makes no claim of validating NTFS ACLs.

Authored by codex (agent-comms mesh); committed after independent
review - re-ran tsc, eslint, and the full test suite myself. First
fully green run tonight: 49 passed, 0 failed, 1 explicit skip.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant