@aigne/platform-helpers 0.1.2 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -0
- package/lib/esm/mcp/stdio-client-transport.node.js +1 -1
- package/package.json +14 -14
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,19 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## [0.3.0](https://github.com/AIGNE-io/aigne-framework/compare/platform-helpers-v0.2.0...platform-helpers-v0.3.0) (2025-07-04)
|
4
|
+
|
5
|
+
|
6
|
+
### Features
|
7
|
+
|
8
|
+
* **core:** add standard userId/sessionId in userContext ([#219](https://github.com/AIGNE-io/aigne-framework/issues/219)) ([58e5804](https://github.com/AIGNE-io/aigne-framework/commit/58e5804cf08b1d2fa6e232646fadd70b5db2e007))
|
9
|
+
|
10
|
+
## [0.2.0](https://github.com/AIGNE-io/aigne-framework/compare/platform-helpers-v0.1.2...platform-helpers-v0.2.0) (2025-07-03)
|
11
|
+
|
12
|
+
|
13
|
+
### Features
|
14
|
+
|
15
|
+
* upgrade dependencies and adapt code to breaking changes ([#216](https://github.com/AIGNE-io/aigne-framework/issues/216)) ([f215ced](https://github.com/AIGNE-io/aigne-framework/commit/f215cedc1a57e321164064c33316e496eae8d25f))
|
16
|
+
|
3
17
|
## [0.1.2](https://github.com/AIGNE-io/aigne-framework/compare/platform-helpers-v0.1.1...platform-helpers-v0.1.2) (2025-06-19)
|
4
18
|
|
5
19
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import {
|
1
|
+
import { getDefaultEnvironment, StdioClientTransport, } from "@modelcontextprotocol/sdk/client/stdio.js";
|
2
2
|
export async function createStdioClientTransport(options) {
|
3
3
|
return new StdioClientTransport({
|
4
4
|
...options,
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@aigne/platform-helpers",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.3.0",
|
4
4
|
"description": "AIGNE core library for building AI-powered applications",
|
5
5
|
"publishConfig": {
|
6
6
|
"access": "public"
|
@@ -47,14 +47,14 @@
|
|
47
47
|
},
|
48
48
|
"dependencies": {
|
49
49
|
"@aigne/json-schema-to-zod": "^1.3.3",
|
50
|
-
"@libsql/client": "^0.15.
|
51
|
-
"@modelcontextprotocol/sdk": "^1.
|
50
|
+
"@libsql/client": "^0.15.9",
|
51
|
+
"@modelcontextprotocol/sdk": "^1.13.3",
|
52
52
|
"@types/debug": "^4.1.12",
|
53
53
|
"camelize-ts": "^3.0.0",
|
54
54
|
"content-type": "^1.0.5",
|
55
|
-
"debug": "^4.4.
|
56
|
-
"drizzle-orm": "^0.
|
57
|
-
"eventsource-parser": "^3.0.
|
55
|
+
"debug": "^4.4.1",
|
56
|
+
"drizzle-orm": "^0.44.2",
|
57
|
+
"eventsource-parser": "^3.0.3",
|
58
58
|
"fast-deep-equal": "^3.1.3",
|
59
59
|
"immer": "^10.1.1",
|
60
60
|
"mustache": "^4.2.0",
|
@@ -65,17 +65,17 @@
|
|
65
65
|
"strict-event-emitter": "^0.5.1",
|
66
66
|
"ufo": "^1.6.1",
|
67
67
|
"uuid": "^11.1.0",
|
68
|
-
"yaml": "^2.
|
69
|
-
"zod": "^3.
|
70
|
-
"zod-to-json-schema": "^3.24.
|
68
|
+
"yaml": "^2.8.0",
|
69
|
+
"zod": "^3.25.67",
|
70
|
+
"zod-to-json-schema": "^3.24.6"
|
71
71
|
},
|
72
72
|
"devDependencies": {
|
73
|
-
"@types/bun": "^1.2.
|
74
|
-
"@types/compression": "^1.
|
75
|
-
"@types/content-type": "^1.1.
|
76
|
-
"@types/express": "^5.0.
|
73
|
+
"@types/bun": "^1.2.17",
|
74
|
+
"@types/compression": "^1.8.1",
|
75
|
+
"@types/content-type": "^1.1.9",
|
76
|
+
"@types/express": "^5.0.3",
|
77
77
|
"@types/mustache": "^4.2.6",
|
78
|
-
"@types/node": "^
|
78
|
+
"@types/node": "^24.0.10",
|
79
79
|
"compression": "^1.8.0",
|
80
80
|
"detect-port": "^2.1.0",
|
81
81
|
"express": "^5.1.0",
|