Skip to content

Commit 2dcf10b

Browse files
Version Packages (beta) (#2404)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 5ad6cd1 commit 2dcf10b

19 files changed

Lines changed: 126 additions & 35 deletions

File tree

.changeset/pre.json

Lines changed: 28 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,30 @@
11
{
2-
"mode": "pre",
3-
"tag": "beta",
4-
"initialVersions": {
5-
"@modelcontextprotocol/eslint-config": "2.0.0",
6-
"@modelcontextprotocol/tsconfig": "2.0.0",
7-
"@modelcontextprotocol/vitest-config": "2.0.0",
8-
"@modelcontextprotocol/examples": "2.0.0-alpha.0",
9-
"@mcp-examples/client-quickstart": "2.0.0-alpha.0",
10-
"@mcp-examples/server-quickstart": "2.0.0-alpha.0",
11-
"@mcp-examples/shared": "2.0.0-alpha.0",
12-
"@modelcontextprotocol/client": "2.0.0-alpha.4",
13-
"@modelcontextprotocol/codemod": "2.0.0-alpha.2",
14-
"@modelcontextprotocol/core": "2.0.0-alpha.2",
15-
"@modelcontextprotocol/core-internal": "2.0.0-alpha.3",
16-
"@modelcontextprotocol/express": "2.0.0-alpha.4",
17-
"@modelcontextprotocol/fastify": "2.0.0-alpha.4",
18-
"@modelcontextprotocol/hono": "2.0.0-alpha.4",
19-
"@modelcontextprotocol/node": "2.0.0-alpha.4",
20-
"@modelcontextprotocol/server": "2.0.0-alpha.4",
21-
"@modelcontextprotocol/server-legacy": "2.0.0-alpha.4",
22-
"@modelcontextprotocol/test-conformance": "2.0.0-alpha.1",
23-
"@modelcontextprotocol/test-e2e": "2.0.0-alpha.1",
24-
"@modelcontextprotocol/test-helpers": "2.0.0-alpha.0",
25-
"@modelcontextprotocol/test-integration": "2.0.0-alpha.1"
26-
},
27-
"changesets": []
2+
"mode": "pre",
3+
"tag": "beta",
4+
"initialVersions": {
5+
"@modelcontextprotocol/eslint-config": "2.0.0",
6+
"@modelcontextprotocol/tsconfig": "2.0.0",
7+
"@modelcontextprotocol/vitest-config": "2.0.0",
8+
"@modelcontextprotocol/examples": "2.0.0-alpha.0",
9+
"@mcp-examples/client-quickstart": "2.0.0-alpha.0",
10+
"@mcp-examples/server-quickstart": "2.0.0-alpha.0",
11+
"@mcp-examples/shared": "2.0.0-alpha.0",
12+
"@modelcontextprotocol/client": "2.0.0-alpha.4",
13+
"@modelcontextprotocol/codemod": "2.0.0-alpha.2",
14+
"@modelcontextprotocol/core": "2.0.0-alpha.2",
15+
"@modelcontextprotocol/core-internal": "2.0.0-alpha.3",
16+
"@modelcontextprotocol/express": "2.0.0-alpha.4",
17+
"@modelcontextprotocol/fastify": "2.0.0-alpha.4",
18+
"@modelcontextprotocol/hono": "2.0.0-alpha.4",
19+
"@modelcontextprotocol/node": "2.0.0-alpha.4",
20+
"@modelcontextprotocol/server": "2.0.0-alpha.4",
21+
"@modelcontextprotocol/server-legacy": "2.0.0-alpha.4",
22+
"@modelcontextprotocol/test-conformance": "2.0.0-alpha.1",
23+
"@modelcontextprotocol/test-e2e": "2.0.0-alpha.1",
24+
"@modelcontextprotocol/test-helpers": "2.0.0-alpha.0",
25+
"@modelcontextprotocol/test-integration": "2.0.0-alpha.1"
26+
},
27+
"changesets": [
28+
"beta-release"
29+
]
2830
}

packages/client/CHANGELOG.md

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

3+
## 2.0.0-beta.1
4+
5+
### Patch Changes
6+
7+
- [#2402](https://github.com/modelcontextprotocol/typescript-sdk/pull/2402) [`a400259`](https://github.com/modelcontextprotocol/typescript-sdk/commit/a4002596b914c675d17ac22471d1287976dbb52a) Thanks [@felixweinberger](https://github.com/felixweinberger)! - First beta release of SDK v2 with support for the MCP 2026-07-28 specification
8+
revision. See the migration guides for upgrading from v1
9+
(`docs/migration/upgrade-to-v2.md`) and adopting the 2026-07-28 revision
10+
(`docs/migration/support-2026-07-28.md`).
11+
312
## 2.0.0-alpha.4
413

514
### Major 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-beta.0",
3+
"version": "2.0.0-beta.1",
44
"description": "Model Context Protocol implementation for TypeScript - Client package",
55
"license": "MIT",
66
"author": "Anthropic, PBC (https://anthropic.com)",

packages/codemod/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# @modelcontextprotocol/codemod
22

3+
## 2.0.0-beta.1
4+
5+
### Patch Changes
6+
7+
- [#2402](https://github.com/modelcontextprotocol/typescript-sdk/pull/2402) [`a400259`](https://github.com/modelcontextprotocol/typescript-sdk/commit/a4002596b914c675d17ac22471d1287976dbb52a) Thanks [@felixweinberger](https://github.com/felixweinberger)! - First beta release of SDK v2 with support for the MCP 2026-07-28 specification
8+
revision. See the migration guides for upgrading from v1
9+
(`docs/migration/upgrade-to-v2.md`) and adopting the 2026-07-28 revision
10+
(`docs/migration/support-2026-07-28.md`).
11+
312
## 2.0.0-alpha.2
413

514
### Minor Changes

packages/codemod/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@modelcontextprotocol/codemod",
3-
"version": "2.0.0-beta.0",
3+
"version": "2.0.0-beta.1",
44
"description": "Codemod to migrate MCP TypeScript SDK code from v1 to v2",
55
"license": "MIT",
66
"author": "Anthropic, PBC (https://anthropic.com)",

packages/core/CHANGELOG.md

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

3+
## 2.0.0-beta.1
4+
5+
### Patch Changes
6+
7+
- [#2402](https://github.com/modelcontextprotocol/typescript-sdk/pull/2402) [`a400259`](https://github.com/modelcontextprotocol/typescript-sdk/commit/a4002596b914c675d17ac22471d1287976dbb52a) Thanks [@felixweinberger](https://github.com/felixweinberger)! - First beta release of SDK v2 with support for the MCP 2026-07-28 specification
8+
revision. See the migration guides for upgrading from v1
9+
(`docs/migration/upgrade-to-v2.md`) and adopting the 2026-07-28 revision
10+
(`docs/migration/support-2026-07-28.md`).
11+
312
## 2.0.0-alpha.2
413

514
### Major Changes

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@modelcontextprotocol/core",
3-
"version": "2.0.0-beta.0",
3+
"version": "2.0.0-beta.1",
44
"description": "Model Context Protocol for TypeScript — public Zod schemas (spec + OAuth/OpenID)",
55
"license": "MIT",
66
"author": "Anthropic, PBC (https://anthropic.com)",

packages/middleware/express/CHANGELOG.md

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

3+
## 2.0.0-beta.1
4+
5+
### Patch Changes
6+
7+
- [#2402](https://github.com/modelcontextprotocol/typescript-sdk/pull/2402) [`a400259`](https://github.com/modelcontextprotocol/typescript-sdk/commit/a4002596b914c675d17ac22471d1287976dbb52a) Thanks [@felixweinberger](https://github.com/felixweinberger)! - First beta release of SDK v2 with support for the MCP 2026-07-28 specification
8+
revision. See the migration guides for upgrading from v1
9+
(`docs/migration/upgrade-to-v2.md`) and adopting the 2026-07-28 revision
10+
(`docs/migration/support-2026-07-28.md`).
11+
- Updated dependencies [[`a400259`](https://github.com/modelcontextprotocol/typescript-sdk/commit/a4002596b914c675d17ac22471d1287976dbb52a)]:
12+
- @modelcontextprotocol/server@2.0.0-beta.1
13+
314
## 2.0.0-alpha.4
415

516
### Minor Changes

packages/middleware/express/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@modelcontextprotocol/express",
33
"private": false,
4-
"version": "2.0.0-beta.0",
4+
"version": "2.0.0-beta.1",
55
"description": "Express adapters for the Model Context Protocol TypeScript server SDK - Express middleware",
66
"license": "MIT",
77
"author": "Anthropic, PBC (https://anthropic.com)",

packages/middleware/fastify/CHANGELOG.md

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

3+
## 2.0.0-beta.1
4+
5+
### Patch Changes
6+
7+
- [#2402](https://github.com/modelcontextprotocol/typescript-sdk/pull/2402) [`a400259`](https://github.com/modelcontextprotocol/typescript-sdk/commit/a4002596b914c675d17ac22471d1287976dbb52a) Thanks [@felixweinberger](https://github.com/felixweinberger)! - First beta release of SDK v2 with support for the MCP 2026-07-28 specification
8+
revision. See the migration guides for upgrading from v1
9+
(`docs/migration/upgrade-to-v2.md`) and adopting the 2026-07-28 revision
10+
(`docs/migration/support-2026-07-28.md`).
11+
- Updated dependencies [[`a400259`](https://github.com/modelcontextprotocol/typescript-sdk/commit/a4002596b914c675d17ac22471d1287976dbb52a)]:
12+
- @modelcontextprotocol/server@2.0.0-beta.1
13+
314
## 2.0.0-alpha.4
415

516
### Minor Changes

0 commit comments

Comments
 (0)