@aigne/core 1.72.0-beta.23 → 1.72.0-beta.24
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/utils/type-utils.js +0 -1
- package/lib/esm/utils/type-utils.js +0 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.72.0-beta.24](https://github.com/AIGNE-io/aigne-framework/compare/core-v1.72.0-beta.23...core-v1.72.0-beta.24) (2026-01-16)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* **afs:** add AFSJSON module support mount a JSON/yaml file to AFS ([6adedc6](https://github.com/AIGNE-io/aigne-framework/commit/6adedc624bedb1bc741da8534f2fbb41e1bc6623))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* The following workspace dependencies were updated
|
|
14
|
+
* dependencies
|
|
15
|
+
* @aigne/afs bumped to 1.4.0-beta.10
|
|
16
|
+
* @aigne/afs-history bumped to 1.2.0-beta.11
|
|
17
|
+
|
|
3
18
|
## [1.72.0-beta.23](https://github.com/AIGNE-io/aigne-framework/compare/core-v1.72.0-beta.22...core-v1.72.0-beta.23) (2026-01-15)
|
|
4
19
|
|
|
5
20
|
|
|
@@ -58,7 +58,6 @@ function duplicates(arr, key = (item) => item) {
|
|
|
58
58
|
function remove(arr, remove) {
|
|
59
59
|
const removed = [];
|
|
60
60
|
for (let i = 0; i < arr.length; i++) {
|
|
61
|
-
// biome-ignore lint/style/noNonNullAssertion: false positive
|
|
62
61
|
const item = arr[i];
|
|
63
62
|
if ((Array.isArray(remove) && remove.includes(item)) ||
|
|
64
63
|
(typeof remove === "function" && remove(item))) {
|
|
@@ -37,7 +37,6 @@ export function duplicates(arr, key = (item) => item) {
|
|
|
37
37
|
export function remove(arr, remove) {
|
|
38
38
|
const removed = [];
|
|
39
39
|
for (let i = 0; i < arr.length; i++) {
|
|
40
|
-
// biome-ignore lint/style/noNonNullAssertion: false positive
|
|
41
40
|
const item = arr[i];
|
|
42
41
|
if ((Array.isArray(remove) && remove.includes(item)) ||
|
|
43
42
|
(typeof remove === "function" && remove(item))) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aigne/core",
|
|
3
|
-
"version": "1.72.0-beta.
|
|
3
|
+
"version": "1.72.0-beta.24",
|
|
4
4
|
"description": "The functional core of agentic AI",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -93,10 +93,10 @@
|
|
|
93
93
|
"zod": "^3.25.67",
|
|
94
94
|
"zod-from-json-schema": "^0.0.5",
|
|
95
95
|
"zod-to-json-schema": "^3.24.6",
|
|
96
|
-
"@aigne/afs": "^1.4.0-beta.
|
|
97
|
-
"@aigne/
|
|
98
|
-
"@aigne/
|
|
99
|
-
"@aigne/
|
|
96
|
+
"@aigne/afs": "^1.4.0-beta.10",
|
|
97
|
+
"@aigne/observability-api": "^0.11.14-beta.6",
|
|
98
|
+
"@aigne/afs-history": "^1.2.0-beta.11",
|
|
99
|
+
"@aigne/platform-helpers": "^0.6.7-beta.2"
|
|
100
100
|
},
|
|
101
101
|
"devDependencies": {
|
|
102
102
|
"@types/bun": "^1.2.22",
|