@jaypie/mcp 0.8.67 → 0.8.69
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.
|
|
12
|
+
const BUILD_VERSION_STRING = "@jaypie/mcp@0.8.69#4884c6e6"
|
|
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,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,20 @@
|
|
|
1
|
+
---
|
|
2
|
+
version: 1.2.62
|
|
3
|
+
date: 2026-06-11
|
|
4
|
+
summary: Lambda serviceTag now sets DD_SERVICE instead of PROJECT_SERVICE
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## @jaypie/constructs 1.2.62
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
|
|
11
|
+
- **`serviceTag` sets `DD_SERVICE` instead of `PROJECT_SERVICE`** (`JaypieLambda`
|
|
12
|
+
and the `JaypieQueuedLambda`, `JaypieBucketQueuedLambda`,
|
|
13
|
+
`JaypieExpressLambda`, `JaypieWebSocketLambda` constructs built on it). The
|
|
14
|
+
`serviceTag` value is now injected as the `DD_SERVICE` environment variable so
|
|
15
|
+
Datadog attributes traces, logs, and metrics to the service directly.
|
|
16
|
+
Precedence is explicit `environment.DD_SERVICE` > `serviceTag` >
|
|
17
|
+
`process.env.PROJECT_SERVICE`. The resolved service is also passed to the
|
|
18
|
+
Datadog layer configuration, which previously read only
|
|
19
|
+
`process.env.PROJECT_SERVICE` and could overwrite the Lambda's `DD_SERVICE`.
|
|
20
|
+
`PROJECT_SERVICE` from the deploy environment still passes through unchanged.
|
|
@@ -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).
|