Skip to content

Commit 1aaa39d

Browse files
Version Packages (alpha)
1 parent df4b6cc commit 1aaa39d

File tree

7 files changed

+31
-4
lines changed

7 files changed

+31
-4
lines changed

.changeset/pre.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,15 @@
4242
"fix-session-status-codes",
4343
"fix-stdio-epipe-crash",
4444
"fix-stdio-windows-hide",
45+
"fix-streamable-close-reentrant",
4546
"fix-streamable-http-error-response",
4647
"fix-task-session-isolation",
4748
"fix-transport-exact-optional-property-types",
4849
"fix-unknown-tool-protocol-error",
4950
"funky-baths-attack",
5051
"heavy-walls-swim",
5152
"oauth-error-http200",
53+
"odd-forks-enjoy",
5254
"quick-islands-occur",
5355
"reconnection-scheduler",
5456
"remove-websocket-transport",
@@ -63,6 +65,7 @@
6365
"tender-snails-fold",
6466
"token-provider-composable-auth",
6567
"twelve-dodos-taste",
66-
"use-scopes-supported-in-dcr"
68+
"use-scopes-supported-in-dcr",
69+
"zod-json-schema-compat"
6770
]
6871
}

packages/client/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# @modelcontextprotocol/client
22

3+
## 2.0.0-alpha.3
4+
5+
### Patch Changes
6+
7+
- [#1655](https://github.com/modelcontextprotocol/typescript-sdk/pull/1655) [`1eb3123`](https://github.com/modelcontextprotocol/typescript-sdk/commit/1eb31236e707c4f4ab9234d87db21ab3f34bf0bc) Thanks [@nielskaspers](https://github.com/nielskaspers)! - fix(client): append custom
8+
Accept headers to spec-required defaults in StreamableHTTPClientTransport
9+
10+
Custom Accept headers provided via `requestInit.headers` are now appended to the spec-mandated Accept types instead of being overwritten. This ensures the required media types (`application/json, text/event-stream` for POST; `text/event-stream` for GET SSE) are always present
11+
while allowing users to include additional types for proxy/gateway routing.
12+
313
## 2.0.0-alpha.2
414

515
### Patch Changes

packages/client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@modelcontextprotocol/client",
3-
"version": "2.0.0-alpha.2",
3+
"version": "2.0.0-alpha.3",
44
"description": "Model Context Protocol implementation for TypeScript - Client package",
55
"license": "MIT",
66
"author": "Anthropic, PBC (https://anthropic.com)",

packages/core/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @modelcontextprotocol/core
22

3+
## 2.0.0-alpha.2
4+
5+
### Patch Changes
6+
7+
- [#1768](https://github.com/modelcontextprotocol/typescript-sdk/pull/1768) [`866c08d`](https://github.com/modelcontextprotocol/typescript-sdk/commit/866c08d3640c5213f80c3b4220e24c42acfc2db8) Thanks [@felixweinberger](https://github.com/felixweinberger)! - Allow additional JSON
8+
Schema properties in elicitInput's requestedSchema type by adding .catchall(z.unknown()), matching the pattern used by inputSchema. This fixes type incompatibility when using Zod v4's .toJSONSchema() output which includes extra properties like $schema and additionalProperties.
9+
310
## 2.0.0-alpha.1
411

512
### Minor Changes

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@modelcontextprotocol/core",
33
"private": true,
4-
"version": "2.0.0-alpha.1",
4+
"version": "2.0.0-alpha.2",
55
"description": "Model Context Protocol implementation for TypeScript - Core package",
66
"license": "MIT",
77
"author": "Anthropic, PBC (https://anthropic.com)",

packages/server/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @modelcontextprotocol/server
22

3+
## 2.0.0-alpha.3
4+
5+
### Patch Changes
6+
7+
- [#1788](https://github.com/modelcontextprotocol/typescript-sdk/pull/1788) [`df4b6cc`](https://github.com/modelcontextprotocol/typescript-sdk/commit/df4b6cc88d6f24fc857519cf506a7a039f532637) Thanks [@claygeo](https://github.com/claygeo)! - Prevent stack overflow in
8+
StreamableHTTPServerTransport.close() with re-entrant guard
9+
310
## 2.0.0-alpha.2
411

512
### Patch Changes

packages/server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@modelcontextprotocol/server",
3-
"version": "2.0.0-alpha.2",
3+
"version": "2.0.0-alpha.3",
44
"description": "Model Context Protocol implementation for TypeScript - Server package",
55
"license": "MIT",
66
"author": "Anthropic, PBC (https://anthropic.com)",

0 commit comments

Comments
 (0)