Skip to content

Commit 209b39f

Browse files
release: 1.2.0
1 parent c931051 commit 209b39f

File tree

7 files changed

+25
-6
lines changed

7 files changed

+25
-6
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "1.1.0"
2+
".": "1.2.0"
33
}

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# Changelog
22

3+
## 1.2.0 (2026-04-03)
4+
5+
Full Changelog: [v1.1.0...v1.2.0](https://github.com/context-dot-dev/context-typescript-sdk/compare/v1.1.0...v1.2.0)
6+
7+
### Features
8+
9+
* **api:** api update ([c931051](https://github.com/context-dot-dev/context-typescript-sdk/commit/c931051a1454a44794d666b7a2695d2683cacc09))
10+
11+
12+
### Chores
13+
14+
* **internal:** fix MCP docker image builds in yarn projects ([d7023c7](https://github.com/context-dot-dev/context-typescript-sdk/commit/d7023c786b668d3afc62d151698bd05d0ab35f56))
15+
* **internal:** improve local docs search for MCP servers ([2a5884c](https://github.com/context-dot-dev/context-typescript-sdk/commit/2a5884cf913182d4cb05e5cc3a9a86f9a74aea47))
16+
* **internal:** improve local docs search for MCP servers ([6c0fe3f](https://github.com/context-dot-dev/context-typescript-sdk/commit/6c0fe3fb873609517518ce1b0b5d5a9c1a788d62))
17+
* **internal:** support type annotations when running MCP in local execution mode ([1b6f120](https://github.com/context-dot-dev/context-typescript-sdk/commit/1b6f1206b80413ac77ab7be9b471525323cb3efc))
18+
* **internal:** use link instead of file in MCP server package.json files ([dbabdac](https://github.com/context-dot-dev/context-typescript-sdk/commit/dbabdac818620983c0d464313aea3f8efa854772))
19+
* **mcp-server:** add support for session id, forward client info ([bb8cffe](https://github.com/context-dot-dev/context-typescript-sdk/commit/bb8cffe6ec501635c5c90206e2578f626ae11949))
20+
* **mcp-server:** log client info ([ae415f7](https://github.com/context-dot-dev/context-typescript-sdk/commit/ae415f745c8e24bc82b42ade8be3b5d43925422f))
21+
322
## 1.1.0 (2026-03-28)
423

524
Full Changelog: [v1.0.1...v1.1.0](https://github.com/context-dot-dev/context-typescript-sdk/compare/v1.0.1...v1.1.0)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "context.dev",
3-
"version": "1.1.0",
3+
"version": "1.2.0",
44
"description": "The official TypeScript library for the Context Dev API",
55
"author": "Context Dev <hello@context.dev>",
66
"types": "dist/index.d.ts",

packages/mcp-server/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"dxt_version": "0.2",
33
"name": "context.dev-mcp",
4-
"version": "1.1.0",
4+
"version": "1.2.0",
55
"description": "The official MCP Server for the Context Dev API",
66
"author": {
77
"name": "Context Dev",

packages/mcp-server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "context.dev-mcp",
3-
"version": "1.1.0",
3+
"version": "1.2.0",
44
"description": "The official MCP Server for the Context Dev API",
55
"author": "Context Dev <hello@context.dev>",
66
"types": "dist/index.d.ts",

packages/mcp-server/src/server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export const newMcpServer = async ({
2828
new McpServer(
2929
{
3030
name: 'context_dev_api',
31-
version: '1.1.0',
31+
version: '1.2.0',
3232
},
3333
{
3434
instructions: await getInstructions({ stainlessApiKey, customInstructionsPath }),

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const VERSION = '1.1.0'; // x-release-please-version
1+
export const VERSION = '1.2.0'; // x-release-please-version

0 commit comments

Comments
 (0)