@aigne/core 1.72.0-beta.21 → 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 CHANGED
@@ -1,5 +1,36 @@
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
+
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)
19
+
20
+
21
+ ### Bug Fixes
22
+
23
+ * **core:** pin jaison dependency to exact version 2.0.2 ([#916](https://github.com/AIGNE-io/aigne-framework/issues/916)) ([e4ad28b](https://github.com/AIGNE-io/aigne-framework/commit/e4ad28b7fcac977d9d2087e0dceacd320818f0f5))
24
+
25
+ ## [1.72.0-beta.22](https://github.com/AIGNE-io/aigne-framework/compare/core-v1.72.0-beta.21...core-v1.72.0-beta.22) (2026-01-15)
26
+
27
+
28
+ ### Dependencies
29
+
30
+ * The following workspace dependencies were updated
31
+ * dependencies
32
+ * @aigne/observability-api bumped to 0.11.14-beta.6
33
+
3
34
  ## [1.72.0-beta.21](https://github.com/AIGNE-io/aigne-framework/compare/core-v1.72.0-beta.20...core-v1.72.0-beta.21) (2026-01-15)
4
35
 
5
36
 
@@ -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.21",
3
+ "version": "1.72.0-beta.24",
4
4
  "description": "The functional core of agentic AI",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -81,7 +81,7 @@
81
81
  "front-matter": "^4.0.2",
82
82
  "immer": "^10.1.3",
83
83
  "is-network-error": "^1.2.0",
84
- "jaison": "^2.0.2",
84
+ "jaison": "=2.0.2",
85
85
  "jsonata": "^2.1.0",
86
86
  "mime": "^4.1.0",
87
87
  "nunjucks": "^3.2.4",
@@ -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.9",
97
- "@aigne/platform-helpers": "^0.6.7-beta.2",
98
- "@aigne/observability-api": "^0.11.14-beta.5",
99
- "@aigne/afs-history": "^1.2.0-beta.10"
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",