Skip to content

Commit 34c4c39

Browse files
release: 0.14.0
1 parent 6f05d28 commit 34c4c39

7 files changed

Lines changed: 34 additions & 6 deletions

File tree

.release-please-manifest.json

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

CHANGELOG.md

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

3+
## 0.14.0 (2026-04-01)
4+
5+
Full Changelog: [v0.13.0...v0.14.0](https://github.com/fashn-AI/fashn-typescript-sdk/compare/v0.13.0...v0.14.0)
6+
7+
### Features
8+
9+
* **api:** api update ([c1d2de2](https://github.com/fashn-AI/fashn-typescript-sdk/commit/c1d2de2661f2ec7f7003dcd04e0a6e3559504ab7))
10+
11+
12+
### Chores
13+
14+
* **ci:** escape input path in publish-npm workflow ([87b3e28](https://github.com/fashn-AI/fashn-typescript-sdk/commit/87b3e285269a09b33655ac1dfc0ee7ef28104b6a))
15+
* **ci:** skip lint on metadata-only changes ([a11ee3a](https://github.com/fashn-AI/fashn-typescript-sdk/commit/a11ee3a1b13f15308a3d41bd3fe04e516b5e9704))
16+
* **internal:** bump @modelcontextprotocol/sdk, @hono/node-server, and minimatch ([003b4db](https://github.com/fashn-AI/fashn-typescript-sdk/commit/003b4db8eb8f21efa2576ec3f4ffeaa5611e16c5))
17+
* **internal:** codegen related update ([f36982d](https://github.com/fashn-AI/fashn-typescript-sdk/commit/f36982d698013fca5f606ca16c8175ebde5f8ae2))
18+
* **internal:** fix MCP server TS errors that occur with required client options ([7801653](https://github.com/fashn-AI/fashn-typescript-sdk/commit/780165379e43287465336902be1db3b60316627b))
19+
* **internal:** improve local docs search for MCP servers ([6f05d28](https://github.com/fashn-AI/fashn-typescript-sdk/commit/6f05d28f0adf9641d231589dd113983aaff64259))
20+
* **internal:** improve local docs search for MCP servers ([dee7e64](https://github.com/fashn-AI/fashn-typescript-sdk/commit/dee7e644a50d810ec342037209dc9cdaa911ac88))
21+
* **internal:** make generated MCP servers compatible with Cloudflare worker environments ([954b319](https://github.com/fashn-AI/fashn-typescript-sdk/commit/954b31937721eaa6fcf41a2bf80babfaca1ca18a))
22+
* **internal:** support custom-instructions-path flag in MCP servers ([22d4962](https://github.com/fashn-AI/fashn-typescript-sdk/commit/22d4962aa9462e5d6a8b4b128857e2a55d34d043))
23+
* **internal:** support local docs search in MCP servers ([525f106](https://github.com/fashn-AI/fashn-typescript-sdk/commit/525f106e4967b2cfef564b955549d10590255804))
24+
* **internal:** support x-stainless-mcp-client-envs header in MCP servers ([7e94c06](https://github.com/fashn-AI/fashn-typescript-sdk/commit/7e94c062f4c52dd0ad50ef930fc6a58a2c9dfc3d))
25+
* **internal:** support x-stainless-mcp-client-permissions headers in MCP servers ([8a89be6](https://github.com/fashn-AI/fashn-typescript-sdk/commit/8a89be6761c35abb106dcfcf4ef54d71bb71d50d))
26+
* **internal:** tweak CI branches ([c41604c](https://github.com/fashn-AI/fashn-typescript-sdk/commit/c41604c0c2ed791573e30ae681e58412b2e6c72d))
27+
* **internal:** update dependencies to address dependabot vulnerabilities ([76cc049](https://github.com/fashn-AI/fashn-typescript-sdk/commit/76cc04944bbdeeb6d67645e2e888b8b229af31e1))
28+
* **internal:** update gitignore ([4946281](https://github.com/fashn-AI/fashn-typescript-sdk/commit/4946281612ac223eec1130fa7714ca95b7f8a7e5))
29+
* **mcp-server:** add support for session id, forward client info ([a5f0540](https://github.com/fashn-AI/fashn-typescript-sdk/commit/a5f0540527e93916e96621e71473c9faffc0541c))
30+
331
## 0.13.0 (2026-03-09)
432

533
Full Changelog: [v0.12.0...v0.13.0](https://github.com/fashn-AI/fashn-typescript-sdk/compare/v0.12.0...v0.13.0)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fashn",
3-
"version": "0.13.0",
3+
"version": "0.14.0",
44
"description": "The official TypeScript library for the Fashn API",
55
"author": "Fashn <>",
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": "fashn-mcp",
4-
"version": "0.13.0",
4+
"version": "0.14.0",
55
"description": "The official MCP Server for the Fashn API",
66
"author": {
77
"name": "Fashn"

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": "fashn-mcp",
3-
"version": "0.13.0",
3+
"version": "0.14.0",
44
"description": "The official MCP Server for the Fashn API",
55
"author": "Fashn <>",
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: 'fashn_api',
31-
version: '0.13.0',
31+
version: '0.14.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 = '0.13.0'; // x-release-please-version
1+
export const VERSION = '0.14.0'; // x-release-please-version

0 commit comments

Comments
 (0)