@aigne/anthropic 0.8.2 → 0.9.2

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
@@ -1,5 +1,43 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.9.2](https://github.com/AIGNE-io/aigne-framework/compare/anthropic-v0.9.1...anthropic-v0.9.2) (2025-07-17)
4
+
5
+
6
+ ### Dependencies
7
+
8
+ * The following workspace dependencies were updated
9
+ * dependencies
10
+ * @aigne/core bumped to 1.36.0
11
+ * devDependencies
12
+ * @aigne/test-utils bumped to 0.5.10
13
+
14
+ ## [0.9.1](https://github.com/AIGNE-io/aigne-framework/compare/anthropic-v0.9.0...anthropic-v0.9.1) (2025-07-17)
15
+
16
+
17
+ ### Dependencies
18
+
19
+ * The following workspace dependencies were updated
20
+ * dependencies
21
+ * @aigne/core bumped to 1.35.0
22
+ * devDependencies
23
+ * @aigne/test-utils bumped to 0.5.9
24
+
25
+ ## [0.9.0](https://github.com/AIGNE-io/aigne-framework/compare/anthropic-v0.8.2...anthropic-v0.9.0) (2025-07-15)
26
+
27
+
28
+ ### Features
29
+
30
+ * **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))
31
+
32
+
33
+ ### Dependencies
34
+
35
+ * The following workspace dependencies were updated
36
+ * dependencies
37
+ * @aigne/core bumped to 1.34.0
38
+ * devDependencies
39
+ * @aigne/test-utils bumped to 0.5.8
40
+
3
41
  ## [0.8.2](https://github.com/AIGNE-io/aigne-framework/compare/anthropic-v0.8.1...anthropic-v0.8.2) (2025-07-14)
4
42
 
5
43
 
@@ -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/anthropic",
3
- "version": "0.8.2",
3
+ "version": "0.9.2",
4
4
  "description": "AIGNE Anthropic SDK for integrating with Claude AI models",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -36,7 +36,7 @@
36
36
  "ajv": "^8.17.1",
37
37
  "jaison": "^2.0.2",
38
38
  "zod": "^3.25.67",
39
- "@aigne/core": "^1.33.2"
39
+ "@aigne/core": "^1.36.0"
40
40
  },
41
41
  "devDependencies": {
42
42
  "@types/bun": "^1.2.18",
@@ -44,7 +44,7 @@
44
44
  "npm-run-all": "^4.1.5",
45
45
  "rimraf": "^6.0.1",
46
46
  "typescript": "^5.8.3",
47
- "@aigne/test-utils": "^0.5.7"
47
+ "@aigne/test-utils": "^0.5.10"
48
48
  },
49
49
  "scripts": {
50
50
  "lint": "tsc --noEmit",
@@ -52,6 +52,6 @@
52
52
  "clean": "rimraf lib test/coverage",
53
53
  "test": "bun test",
54
54
  "test:coverage": "bun test --coverage --coverage-reporter=lcov --coverage-reporter=text",
55
- "postbuild": "echo '{\"type\": \"module\"}' > lib/esm/package.json && echo '{\"type\": \"commonjs\"}' > lib/cjs/package.json"
55
+ "postbuild": "node ../../scripts/post-build-lib.mjs"
56
56
  }
57
57
  }