@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 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
 
@@ -1 +1,3 @@
1
- {"type": "commonjs"}
1
+ {
2
+ "type": "commonjs"
3
+ }
@@ -1 +1,3 @@
1
- {"type": "module"}
1
+ {
2
+ "type": "module"
3
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aigne/core",
3
- "version": "1.33.2",
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/observability-api": "^0.7.2",
87
- "@aigne/platform-helpers": "^0.3.1"
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": "echo '{\"type\": \"module\"}' > lib/esm/package.json && echo '{\"type\": \"commonjs\"}' > lib/cjs/package.json"
110
+ "postbuild": "node ../../scripts/post-build-lib.mjs"
111
111
  }
112
112
  }