Skip to content

Commit 58c77d0

Browse files
release: 2.8.0
1 parent e2fdc8b commit 58c77d0

File tree

6 files changed

+26
-5
lines changed

6 files changed

+26
-5
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-
".": "2.7.4"
2+
".": "2.8.0"
33
}

CHANGELOG.md

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

3+
## 2.8.0 (2025-08-07)
4+
5+
Full Changelog: [v2.7.4...v2.8.0](https://github.com/julep-ai/node-sdk/compare/v2.7.4...v2.8.0)
6+
7+
### Features
8+
9+
* **mcp:** add logging when environment variable is set ([be36e15](https://github.com/julep-ai/node-sdk/commit/be36e1520c295adc4396ff8f85b46203e3a3b8f4))
10+
* **mcp:** add unix socket option for remote MCP ([e2fdc8b](https://github.com/julep-ai/node-sdk/commit/e2fdc8be5b7f55135fe889bb68ff076ff2e83c9f))
11+
* **mcp:** remote server with passthru auth ([e98a089](https://github.com/julep-ai/node-sdk/commit/e98a0891b4800926d6d8ac8b796f93fd193f27ec))
12+
13+
14+
### Bug Fixes
15+
16+
* **mcp:** fix bug in header handling ([c0d1022](https://github.com/julep-ai/node-sdk/commit/c0d102255f5453422dc5b562a0a0c0c7049e0c69))
17+
18+
19+
### Chores
20+
21+
* **internal:** move publish config ([e9e8777](https://github.com/julep-ai/node-sdk/commit/e9e87771a244b79cf4acfb3eac691a6ece19dd45))
22+
* **mcp:** refactor streamable http transport ([00cb972](https://github.com/julep-ai/node-sdk/commit/00cb972cf1a90c69d879c10d0417e0429f76b88d))
23+
324
## 2.7.4 (2025-08-01)
425

526
Full Changelog: [v2.7.3...v2.7.4](https://github.com/julep-ai/node-sdk/compare/v2.7.3...v2.7.4)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@julep/sdk",
3-
"version": "2.7.4",
3+
"version": "2.8.0",
44
"description": "The official TypeScript library for the Julep API",
55
"author": "Julep <developers@julep.ai>",
66
"types": "dist/index.d.ts",

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": "@julep/sdk-mcp",
3-
"version": "2.7.4",
3+
"version": "2.8.0",
44
"description": "The official MCP Server for the Julep API",
55
"author": "Julep <developers@julep.ai>",
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
@@ -26,7 +26,7 @@ export const newMcpServer = () =>
2626
new McpServer(
2727
{
2828
name: 'julep_sdk_api',
29-
version: '2.7.4',
29+
version: '2.8.0',
3030
},
3131
{ capabilities: { tools: {}, logging: {} } },
3232
);

src/version.ts

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

0 commit comments

Comments
 (0)