@aigne/core 1.67.0-beta.3 → 1.67.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
@@ -1,5 +1,22 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.67.0](https://github.com/AIGNE-io/aigne-framework/compare/core-v1.67.0-beta.4...core-v1.67.0) (2025-11-12)
4
+
5
+
6
+ ### Dependencies
7
+
8
+ * The following workspace dependencies were updated
9
+ * dependencies
10
+ * @aigne/afs bumped to 1.1.2
11
+ * @aigne/observability-api bumped to 0.11.6
12
+
13
+ ## [1.67.0-beta.4](https://github.com/AIGNE-io/aigne-framework/compare/core-v1.67.0-beta.3...core-v1.67.0-beta.4) (2025-11-12)
14
+
15
+
16
+ ### Bug Fixes
17
+
18
+ * **core:** order history entries by time in ascending order ([#736](https://github.com/AIGNE-io/aigne-framework/issues/736)) ([7a3c2c3](https://github.com/AIGNE-io/aigne-framework/commit/7a3c2c32c428026ae7b8025f42ac51c38374915a))
19
+
3
20
  ## [1.67.0-beta.3](https://github.com/AIGNE-io/aigne-framework/compare/core-v1.67.0-beta.2...core-v1.67.0-beta.3) (2025-11-12)
4
21
 
5
22
 
@@ -125,7 +125,9 @@ class PromptBuilder {
125
125
  const ms = result.list.map((entry) => ({ content: (0, yaml_1.stringify)(entry.content) }));
126
126
  memories.push(...ms);
127
127
  }
128
- memories.push(...history.list.filter((i) => (0, type_utils_js_1.isNonNullable)(i.content)));
128
+ memories.push(...history.list
129
+ .reverse()
130
+ .filter((i) => (0, type_utils_js_1.isNonNullable)(i.content)));
129
131
  }
130
132
  }
131
133
  if (memories.length)
@@ -122,7 +122,9 @@ export class PromptBuilder {
122
122
  const ms = result.list.map((entry) => ({ content: stringify(entry.content) }));
123
123
  memories.push(...ms);
124
124
  }
125
- memories.push(...history.list.filter((i) => isNonNullable(i.content)));
125
+ memories.push(...history.list
126
+ .reverse()
127
+ .filter((i) => isNonNullable(i.content)));
126
128
  }
127
129
  }
128
130
  if (memories.length)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aigne/core",
3
- "version": "1.67.0-beta.3",
3
+ "version": "1.67.0",
4
4
  "description": "The functional core of agentic AI",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -92,9 +92,9 @@
92
92
  "zod": "^3.25.67",
93
93
  "zod-from-json-schema": "^0.0.5",
94
94
  "zod-to-json-schema": "^3.24.6",
95
+ "@aigne/observability-api": "^0.11.6",
95
96
  "@aigne/platform-helpers": "^0.6.3",
96
- "@aigne/observability-api": "^0.11.6-beta.2",
97
- "@aigne/afs": "^1.1.2-beta"
97
+ "@aigne/afs": "^1.1.2"
98
98
  },
99
99
  "devDependencies": {
100
100
  "@types/bun": "^1.2.22",