@aigne/core 1.33.2 → 1.34.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 +15 -0
- package/lib/cjs/package.json +3 -1
- package/lib/esm/package.json +3 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -12,6 +12,21 @@
|
|
|
12
12
|
* dependencies
|
|
13
13
|
* @aigne/observability bumped to 0.1.0
|
|
14
14
|
|
|
15
|
+
## [1.34.0](https://github.com/AIGNE-io/aigne-framework/compare/core-v1.33.2...core-v1.34.0) (2025-07-15)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Features
|
|
19
|
+
|
|
20
|
+
* **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))
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
### Dependencies
|
|
24
|
+
|
|
25
|
+
* The following workspace dependencies were updated
|
|
26
|
+
* dependencies
|
|
27
|
+
* @aigne/observability-api bumped to 0.8.0
|
|
28
|
+
* @aigne/platform-helpers bumped to 0.4.0
|
|
29
|
+
|
|
15
30
|
## [1.33.2](https://github.com/AIGNE-io/aigne-framework/compare/core-v1.33.1...core-v1.33.2) (2025-07-14)
|
|
16
31
|
|
|
17
32
|
|
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/core",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.34.0",
|
|
4
4
|
"description": "AIGNE core library for building AI-powered applications",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -83,8 +83,8 @@
|
|
|
83
83
|
"yaml": "^2.8.0",
|
|
84
84
|
"zod": "^3.25.67",
|
|
85
85
|
"zod-to-json-schema": "^3.24.6",
|
|
86
|
-
"@aigne/
|
|
87
|
-
"@aigne/
|
|
86
|
+
"@aigne/platform-helpers": "^0.4.0",
|
|
87
|
+
"@aigne/observability-api": "^0.8.0"
|
|
88
88
|
},
|
|
89
89
|
"devDependencies": {
|
|
90
90
|
"@types/bun": "^1.2.18",
|
|
@@ -107,6 +107,6 @@
|
|
|
107
107
|
"clean": "rimraf lib test/coverage",
|
|
108
108
|
"test": "bun --cwd test test",
|
|
109
109
|
"test:coverage": "bun --cwd test test --coverage --coverage-reporter=lcov --coverage-reporter=text",
|
|
110
|
-
"postbuild": "
|
|
110
|
+
"postbuild": "node ../../scripts/post-build-lib.mjs"
|
|
111
111
|
}
|
|
112
112
|
}
|