@aigne/anthropic 0.8.2 → 0.9.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 +16 -0
- package/lib/cjs/package.json +3 -1
- package/lib/esm/package.json +3 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.9.0](https://github.com/AIGNE-io/aigne-framework/compare/anthropic-v0.8.2...anthropic-v0.9.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
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* The following workspace dependencies were updated
|
|
14
|
+
* dependencies
|
|
15
|
+
* @aigne/core bumped to 1.34.0
|
|
16
|
+
* devDependencies
|
|
17
|
+
* @aigne/test-utils bumped to 0.5.8
|
|
18
|
+
|
|
3
19
|
## [0.8.2](https://github.com/AIGNE-io/aigne-framework/compare/anthropic-v0.8.1...anthropic-v0.8.2) (2025-07-14)
|
|
4
20
|
|
|
5
21
|
|
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/anthropic",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.0",
|
|
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.
|
|
39
|
+
"@aigne/core": "^1.34.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.
|
|
47
|
+
"@aigne/test-utils": "^0.5.8"
|
|
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": "
|
|
55
|
+
"postbuild": "node ../../scripts/post-build-lib.mjs"
|
|
56
56
|
}
|
|
57
57
|
}
|