@jaypie/mcp 0.8.36 → 0.8.38
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/dist/suites/docs/index.js +1 -1
- package/package.json +1 -1
- package/release-notes/aws/1.2.8.md +9 -0
- package/release-notes/constructs/1.2.47.md +9 -0
- package/release-notes/core/1.2.2.md +9 -0
- package/release-notes/eslint/1.2.3.md +17 -0
- package/release-notes/jaypie/1.2.39.md +12 -0
- package/release-notes/llm/1.2.27.md +11 -0
- package/release-notes/llm/1.2.28.md +12 -0
- package/release-notes/mcp/0.8.38.md +17 -0
- package/release-notes/testkit/1.2.34.md +9 -0
- package/skills/monorepo.md +1 -1
|
@@ -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.8.
|
|
12
|
+
const BUILD_VERSION_STRING = "@jaypie/mcp@0.8.38#ff8c48d7"
|
|
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,9 @@
|
|
|
1
|
+
---
|
|
2
|
+
version: 1.2.8
|
|
3
|
+
date: 2026-04-17
|
|
4
|
+
summary: Fix getTextractJob termination for non-success job states
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## Changes
|
|
8
|
+
|
|
9
|
+
- `getTextractJob` now actually exits the fetch loop on `IN_PROGRESS`, `FAILED`, and unknown job statuses. Previously the terminal cases set `doneFetching = true`, only to have it overwritten by the unconditional `doneFetching = !response.NextToken` assignment at the end of the loop body. Terminal cases now `continue` so the `while (!doneFetching)` check exits cleanly.
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
---
|
|
2
|
+
version: 1.2.47
|
|
3
|
+
date: 2026-04-17
|
|
4
|
+
summary: Remove dead post-increment in JaypieDistribution WAF rule priority
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## Changes
|
|
8
|
+
|
|
9
|
+
- Removed a useless `priority++` on the last use of the `priority` counter when building WAF rules in `JaypieDistribution`. No behavior change.
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
---
|
|
2
|
+
version: 1.2.3
|
|
3
|
+
date: 2026-04-17
|
|
4
|
+
summary: Support ESLint 10 in addition to ESLint 9
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## Changes
|
|
8
|
+
|
|
9
|
+
- Peer dependency widened to `eslint: "^9.0.0 || ^10.0.0"`
|
|
10
|
+
- Bumped `@eslint/js` to `^10.0.0` (strict major peer)
|
|
11
|
+
- Bumped supporting plugins: `typescript-eslint` 8.58, `@vitest/eslint-plugin` 1.6, `eslint-plugin-import-x` 4.16, `eslint-plugin-prettier` 5.5, `eslint-config-prettier` 10.1, `eslint-import-resolver-typescript` 4.4, `globals` 17
|
|
12
|
+
|
|
13
|
+
## Notes
|
|
14
|
+
|
|
15
|
+
ESLint 10's `@eslint/js` recommended config adds `no-useless-assignment`, `no-unassigned-vars`, and `preserve-caught-error`. Existing code that relies on the v9 rule set may surface new errors on upgrade.
|
|
16
|
+
|
|
17
|
+
Node engines: ESLint 10 requires `^20.19.0 || ^22.13.0 || >=24`.
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
---
|
|
2
|
+
version: 1.2.39
|
|
3
|
+
date: 2026-04-17
|
|
4
|
+
summary: Bump @jaypie/aws, @jaypie/core, @jaypie/llm deps
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## Changes
|
|
8
|
+
|
|
9
|
+
- Dependency bumps:
|
|
10
|
+
- `@jaypie/aws` ^1.2.7 → ^1.2.8
|
|
11
|
+
- `@jaypie/core` ^1.2.1 → ^1.2.2
|
|
12
|
+
- `@jaypie/llm` ^1.2.27 → ^1.2.28 (peer)
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
---
|
|
2
|
+
version: 1.2.27
|
|
3
|
+
date: 2026-04-17
|
|
4
|
+
summary: Update ANTHROPIC.LARGE to claude-opus-4-7
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## Changes
|
|
8
|
+
|
|
9
|
+
- `PROVIDER.ANTHROPIC.MODEL.LARGE` bumped from `claude-opus-4-6` to `claude-opus-4-7` (the current flagship Anthropic model)
|
|
10
|
+
- No behavior change for other providers; Gemini, OpenAI, and xAI model constants already reflect their latest URLs
|
|
11
|
+
- Opus 4.7 is already covered by the existing `claude-opus-4-[789]` temperature denylist, so requests with temperature are stripped automatically
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
---
|
|
2
|
+
version: 1.2.28
|
|
3
|
+
date: 2026-04-17
|
|
4
|
+
summary: Internal cleanups surfaced by ESLint 10
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## Changes
|
|
8
|
+
|
|
9
|
+
- `GeminiAdapter` stream path: replaced a `let`+null-reset pattern with a block-scoped `const` for the in-flight function call. No behavior change.
|
|
10
|
+
- `providers/gemini/utils.ts`: removed an always-`undefined` `let systemInstruction` declaration; the return shape still exposes `systemInstruction: undefined` for callers that destructure it.
|
|
11
|
+
- `tools/weather`: preserves existing vanilla-`Error` throws with an inline eslint-disable — the package targets ES2020 and `Error`'s `cause` option requires ES2022.
|
|
12
|
+
- Test fixtures (`test/document.ts`, `test/structured.ts`): dropped dead `success = false` initializers.
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
---
|
|
2
|
+
version: 0.8.38
|
|
3
|
+
date: 2026-04-17
|
|
4
|
+
summary: Add release notes for the ESLint 10 upgrade batch
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## Changes
|
|
8
|
+
|
|
9
|
+
Added release notes for the packages bumped during the ESLint 10 upgrade branch:
|
|
10
|
+
|
|
11
|
+
- `@jaypie/aws@1.2.8`
|
|
12
|
+
- `@jaypie/constructs@1.2.47`
|
|
13
|
+
- `@jaypie/core@1.2.2`
|
|
14
|
+
- `@jaypie/eslint@1.2.3`
|
|
15
|
+
- `@jaypie/llm@1.2.28`
|
|
16
|
+
- `@jaypie/testkit@1.2.34`
|
|
17
|
+
- `jaypie@1.2.39`
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
---
|
|
2
|
+
version: 1.2.34
|
|
3
|
+
date: 2026-04-17
|
|
4
|
+
summary: Remove dead assignments in lambda/websocket mock handlers
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## Changes
|
|
8
|
+
|
|
9
|
+
- Cleaned up dead `props = temp` assignments in `lambdaStreamHandler` and `websocketHandler` swap branches — no behavior change, surfaced by ESLint 10's new `no-useless-assignment` rule.
|
package/skills/monorepo.md
CHANGED
|
@@ -9,7 +9,7 @@ Initialize a new monorepo using Jaypie conventions and utilities.
|
|
|
9
9
|
|
|
10
10
|
## Overview
|
|
11
11
|
|
|
12
|
-
- ESLint 9
|
|
12
|
+
- ESLint 9 or 10 flat config with @jaypie/eslint
|
|
13
13
|
- NPM with Workspaces ("monorepo")
|
|
14
14
|
- TypeScript with ESM modules
|
|
15
15
|
- Vite for building, Vitest for testing
|