@jaypie/mcp 0.7.28 → 0.7.29
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.
|
@@ -9,7 +9,7 @@ import { gt } from 'semver';
|
|
|
9
9
|
/**
|
|
10
10
|
* Docs Suite - Documentation services (skill, version, release_notes)
|
|
11
11
|
*/
|
|
12
|
-
const BUILD_VERSION_STRING = "@jaypie/mcp@0.7.
|
|
12
|
+
const BUILD_VERSION_STRING = "@jaypie/mcp@0.7.29#c4402727"
|
|
13
13
|
;
|
|
14
14
|
const __filename$1 = fileURLToPath(import.meta.url);
|
|
15
15
|
const __dirname$1 = path.dirname(__filename$1);
|
package/package.json
CHANGED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
---
|
|
2
|
+
version: 1.2.15
|
|
3
|
+
date: 2026-02-24
|
|
4
|
+
summary: Fix stale socket error guard timing gap in retry executor
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## Changes
|
|
8
|
+
|
|
9
|
+
- Widen `unhandledRejection` guard in `RetryExecutor` and `StreamLoop` to cover the entire retry loop after first failure, not just the sleep window
|
|
10
|
+
- Prevents `TypeError: terminated` (undici socket teardown) from escaping as unhandled rejections during hook calls and subsequent retry attempts
|
|
11
|
+
- Guard is now installed immediately after `controller.abort()` and cleaned up in `finally` when execution completes
|