@jaypie/mcp 0.7.24 → 0.7.26

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.24#3bcbfa74"
12
+ const BUILD_VERSION_STRING = "@jaypie/mcp@0.7.26#907a8705"
13
13
  ;
14
14
  const __filename$1 = fileURLToPath(import.meta.url);
15
15
  const __dirname$1 = path.dirname(__filename$1);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jaypie/mcp",
3
- "version": "0.7.24",
3
+ "version": "0.7.26",
4
4
  "description": "Jaypie MCP",
5
5
  "repository": {
6
6
  "type": "git",
@@ -0,0 +1,12 @@
1
+ ---
2
+ version: 1.2.11
3
+ date: 2026-02-20
4
+ summary: Fix stale socket error crashing process during retry
5
+ ---
6
+
7
+ ## Changes
8
+
9
+ - Add `AbortController` per retry attempt in `RetryExecutor` and `StreamLoop` to kill lingering socket callbacks from dropped connections
10
+ - Add optional `signal?: AbortSignal` parameter to `executeRequest()` and `executeStreamRequest()` in `ProviderAdapter` interface
11
+ - `OpenRouterAdapter` forwards abort signal to the SDK, enabling clean cancellation on retry
12
+ - Prevents unhandled promise rejections from async socket teardown events during retry sleep
@@ -0,0 +1,12 @@
1
+ ---
2
+ version: 1.2.12
3
+ date: 2026-02-23
4
+ summary: Defense-in-depth against stale socket errors (ECONNRESET) across all adapters
5
+ ---
6
+
7
+ ## Changes
8
+
9
+ - Forward `AbortSignal` to Anthropic, OpenAI, and Gemini SDK calls (OpenRouter already had this)
10
+ - Add post-abort error suppression in all four adapters to swallow stale socket errors
11
+ - Install `unhandledRejection` guard during retry sleep in RetryExecutor and StreamLoop
12
+ - Fixes #209: TypeError: terminated (ECONNRESET) crashes despite RetryExecutor