@aigne/platform-helpers 0.3.0 → 0.4.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/cjs/package.json +3 -1
- package/lib/esm/package.json +3 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.4.0](https://github.com/AIGNE-io/aigne-framework/compare/platform-helpers-v0.3.1...platform-helpers-v0.4.0) (2025-07-15)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* **memory:** support did space memory adapter ([#229](https://github.com/AIGNE-io/aigne-framework/issues/229)) ([6f69b64](https://github.com/AIGNE-io/aigne-framework/commit/6f69b64e98b963db9d6ab5357306b445385eaa68))
|
|
9
|
+
|
|
10
|
+
## [0.3.1](https://github.com/AIGNE-io/aigne-framework/compare/platform-helpers-v0.3.0...platform-helpers-v0.3.1) (2025-07-14)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* **deps:** update deps to latest version ([#247](https://github.com/AIGNE-io/aigne-framework/issues/247)) ([3972f88](https://github.com/AIGNE-io/aigne-framework/commit/3972f887a9abff20c26da6b51c1071cbd54c0bf1))
|
|
16
|
+
|
|
3
17
|
## [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
18
|
|
|
5
19
|
|
package/lib/cjs/package.json
CHANGED
package/lib/esm/package.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aigne/platform-helpers",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"description": "AIGNE core library for building AI-powered applications",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"dependencies": {
|
|
49
49
|
"@aigne/json-schema-to-zod": "^1.3.3",
|
|
50
50
|
"@libsql/client": "^0.15.9",
|
|
51
|
-
"@modelcontextprotocol/sdk": "^1.
|
|
51
|
+
"@modelcontextprotocol/sdk": "^1.15.0",
|
|
52
52
|
"@types/debug": "^4.1.12",
|
|
53
53
|
"camelize-ts": "^3.0.0",
|
|
54
54
|
"content-type": "^1.0.5",
|
|
@@ -70,12 +70,12 @@
|
|
|
70
70
|
"zod-to-json-schema": "^3.24.6"
|
|
71
71
|
},
|
|
72
72
|
"devDependencies": {
|
|
73
|
-
"@types/bun": "^1.2.
|
|
73
|
+
"@types/bun": "^1.2.18",
|
|
74
74
|
"@types/compression": "^1.8.1",
|
|
75
75
|
"@types/content-type": "^1.1.9",
|
|
76
76
|
"@types/express": "^5.0.3",
|
|
77
77
|
"@types/mustache": "^4.2.6",
|
|
78
|
-
"@types/node": "^24.0.
|
|
78
|
+
"@types/node": "^24.0.12",
|
|
79
79
|
"compression": "^1.8.0",
|
|
80
80
|
"detect-port": "^2.1.0",
|
|
81
81
|
"express": "^5.1.0",
|
|
@@ -89,6 +89,6 @@
|
|
|
89
89
|
"clean": "rimraf lib test/coverage",
|
|
90
90
|
"test": "bun test",
|
|
91
91
|
"test:coverage": "bun test --coverage --coverage-reporter=lcov --coverage-reporter=text",
|
|
92
|
-
"postbuild": "
|
|
92
|
+
"postbuild": "node ../../scripts/post-build-lib.mjs"
|
|
93
93
|
}
|
|
94
94
|
}
|