@jaypie/mcp 0.8.68 → 0.8.70

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.8.68#abfd8600"
12
+ const BUILD_VERSION_STRING = "@jaypie/mcp@0.8.70#ec155ccd"
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.8.68",
3
+ "version": "0.8.70",
4
4
  "description": "Jaypie MCP",
5
5
  "repository": {
6
6
  "type": "git",
@@ -0,0 +1,10 @@
1
+ ---
2
+ version: 1.2.9
3
+ date: 2026-06-14
4
+ summary: Replace deprecated @aws-sdk/middleware-retry with @smithy/util-retry
5
+ ---
6
+
7
+ ## Changes
8
+
9
+ - `sendTextractJob` now builds its retry strategy with `ConfiguredRetryStrategy` from `@smithy/util-retry` instead of `StandardRetryStrategy` from the deprecated `@aws-sdk/middleware-retry`. Behavior is unchanged: 5 max attempts with the same capped exponential backoff (`min(600 * 2 ** attempt, 3000)` ms).
10
+ - Drops the `@aws-sdk/middleware-retry` dependency, which transitively pulled a vulnerable `uuid` (npm audit). `@smithy/util-retry` is already used internally by every AWS SDK v3 client, so no new resolved version enters the tree.
@@ -0,0 +1,9 @@
1
+ ---
2
+ version: 1.2.63
3
+ date: 2026-06-14
4
+ summary: Bump datadog-cdk-constructs-v2 to 4.x (fixes synth crash on current aws-cdk-lib)
5
+ ---
6
+
7
+ ## Changes
8
+
9
+ - Bumps `datadog-cdk-constructs-v2` from `^3.4.0` to `^4.1.0`. The 3.x source-code-integration step read `lam.environment[DD_TAGS].value`, which throws on aws-cdk-lib 2.253+ where `Function.environment` is a `{ map: Map }` token rather than a plain object — crashing synth (and `JaypieLambda` Datadog tests) whenever git metadata is present. 4.x rewrote that path to `lam.environment.map.get(DD_TAGS)?.value`, restoring the git commit/repository source-code integration without crashing. No `@jaypie/constructs` API changes; the `DatadogLambda` props used by `addDatadogLayers` are unchanged.
@@ -0,0 +1,9 @@
1
+ ---
2
+ version: 1.2.51
3
+ date: 2026-06-14
4
+ summary: Bump @jaypie/aws to 1.2.9 (drops deprecated @aws-sdk/middleware-retry)
5
+ ---
6
+
7
+ ## Changes
8
+
9
+ - Bumps the `@jaypie/aws` dependency range to `^1.2.9`, which replaces the deprecated `@aws-sdk/middleware-retry` with `@smithy/util-retry` and clears its transitively vulnerable `uuid` from npm audit. No API changes.
@@ -0,0 +1,10 @@
1
+ ---
2
+ version: 0.8.69
3
+ date: 2026-06-14
4
+ summary: Add @jaypie/aws 1.2.9 and @jaypie/constructs 1.2.63 release notes
5
+ ---
6
+
7
+ ## Changes
8
+
9
+ - Adds release notes for `@jaypie/aws` 1.2.9 (deprecated `@aws-sdk/middleware-retry` replaced with `@smithy/util-retry`).
10
+ - Adds release notes for `@jaypie/constructs` 1.2.63 (`datadog-cdk-constructs-v2` bumped to 4.x).
@@ -0,0 +1,9 @@
1
+ ---
2
+ version: 0.8.70
3
+ date: 2026-06-14
4
+ summary: Add @jaypie/testkit 1.2.42 release notes
5
+ ---
6
+
7
+ ## Changes
8
+
9
+ - Adds release notes for `@jaypie/testkit` 1.2.42 (vitest 4 compatibility for constructor mocks and callable mock typing).
@@ -0,0 +1,12 @@
1
+ ---
2
+ version: 1.2.42
3
+ date: 2026-06-14
4
+ summary: vitest 4 compatibility for constructor mocks (Llm) and callable mock typing
5
+ ---
6
+
7
+ ## @jaypie/testkit 1.2.42
8
+
9
+ ### Changes
10
+
11
+ - **vitest 4 support**: mock factories in `mock/utils.ts` now surface a callable `Mock` type (vitest 4 types a bare `vi.fn()` as the non-callable `Mock<Constructable | Procedure>`).
12
+ - **`Llm` mock**: converted to a constructable (non-arrow `function`) implementation so it can be instantiated with `new` under vitest 4 while preserving the previous mock shape.