@aigne/core 1.68.1 → 1.68.2-beta
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 +14 -0
- package/lib/cjs/aigne/context.js +3 -1
- package/lib/esm/aigne/context.js +3 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.68.2-beta](https://github.com/AIGNE-io/aigne-framework/compare/core-v1.68.1...core-v1.68.2-beta) (2025-11-15)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **core:** memory leak in AIGNEContext by preventing duplicate signal handler ([#748](https://github.com/AIGNE-io/aigne-framework/issues/748)) ([7f17592](https://github.com/AIGNE-io/aigne-framework/commit/7f175929d78e4289e2d551746b12a73bb5c0eb22))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* The following workspace dependencies were updated
|
|
14
|
+
* dependencies
|
|
15
|
+
* @aigne/observability-api bumped to 0.11.8-beta
|
|
16
|
+
|
|
3
17
|
## [1.68.1](https://github.com/AIGNE-io/aigne-framework/compare/core-v1.68.1-beta...core-v1.68.1) (2025-11-15)
|
|
4
18
|
|
|
5
19
|
|
package/lib/cjs/aigne/context.js
CHANGED
|
@@ -203,7 +203,9 @@ class AIGNEContext {
|
|
|
203
203
|
return this.internal.events.emit(eventName, ...newArgs);
|
|
204
204
|
}
|
|
205
205
|
initProcessExitHandler() {
|
|
206
|
-
|
|
206
|
+
if (this.parentId)
|
|
207
|
+
return;
|
|
208
|
+
process.once("SIGINT", async () => {
|
|
207
209
|
try {
|
|
208
210
|
if (process.env.AIGNE_OBSERVABILITY_DISABLED)
|
|
209
211
|
return;
|
package/lib/esm/aigne/context.js
CHANGED
|
@@ -197,7 +197,9 @@ export class AIGNEContext {
|
|
|
197
197
|
return this.internal.events.emit(eventName, ...newArgs);
|
|
198
198
|
}
|
|
199
199
|
initProcessExitHandler() {
|
|
200
|
-
|
|
200
|
+
if (this.parentId)
|
|
201
|
+
return;
|
|
202
|
+
process.once("SIGINT", async () => {
|
|
201
203
|
try {
|
|
202
204
|
if (process.env.AIGNE_OBSERVABILITY_DISABLED)
|
|
203
205
|
return;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aigne/core",
|
|
3
|
-
"version": "1.68.
|
|
3
|
+
"version": "1.68.2-beta",
|
|
4
4
|
"description": "The functional core of agentic AI",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -94,7 +94,7 @@
|
|
|
94
94
|
"zod-to-json-schema": "^3.24.6",
|
|
95
95
|
"@aigne/afs": "^1.2.1",
|
|
96
96
|
"@aigne/afs-history": "^1.0.2",
|
|
97
|
-
"@aigne/observability-api": "^0.11.
|
|
97
|
+
"@aigne/observability-api": "^0.11.8-beta",
|
|
98
98
|
"@aigne/platform-helpers": "^0.6.4"
|
|
99
99
|
},
|
|
100
100
|
"devDependencies": {
|