Skip to content

Commit d7f5e97

Browse files
release: 2.7.4
1 parent 46832fb commit d7f5e97

File tree

6 files changed

+14
-5
lines changed

6 files changed

+14
-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.3"
2+
".": "2.7.4"
33
}

CHANGELOG.md

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

3+
## 2.7.4 (2025-08-01)
4+
5+
Full Changelog: [v2.7.3...v2.7.4](https://github.com/julep-ai/node-sdk/compare/v2.7.3...v2.7.4)
6+
7+
### Bug Fixes
8+
9+
* **mcp:** avoid sending `jq_filter` to base API ([04e0ce1](https://github.com/julep-ai/node-sdk/commit/04e0ce11d2542ca2c71300c16dd7c99274085e65))
10+
* **mcp:** reverse validJson capability option and limit scope ([fdf4ff5](https://github.com/julep-ai/node-sdk/commit/fdf4ff567495cc6f1d0c26ad9b9e671a5f26a290))
11+
312
## 2.7.3 (2025-07-31)
413

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

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.3",
3+
"version": "2.7.4",
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.3",
3+
"version": "2.7.4",
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 { endpoints } from './tools';
2626
export const server = new McpServer(
2727
{
2828
name: 'julep_sdk_api',
29-
version: '2.7.3',
29+
version: '2.7.4',
3030
},
3131
{ capabilities: { tools: {} } },
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.3'; // x-release-please-version
1+
export const VERSION = '2.7.4'; // x-release-please-version

0 commit comments

Comments
 (0)