@jaypie/mcp 0.8.72 → 0.8.73
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.73#8addc2dd"
|
|
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,13 @@
|
|
|
1
|
+
---
|
|
2
|
+
version: 1.2.64
|
|
3
|
+
date: 2026-06-17
|
|
4
|
+
summary: Pass Datadog LLM Observability env vars to Lambdas; bump Datadog layer versions
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## Changes
|
|
8
|
+
|
|
9
|
+
- `jaypieLambdaEnv` (and therefore every `JaypieLambda` derivative) now passes Datadog LLM Observability environment variables through to the Lambda at synth time:
|
|
10
|
+
- `DD_LLMOBS_ENABLED` is forwarded from `process.env` when set.
|
|
11
|
+
- `DD_LLMOBS_ML_APP` is forwarded when set, **unless** observability is disabled (`DD_LLMOBS_ENABLED` resolves to `"false"` or `"0"`).
|
|
12
|
+
- Explicit `environment` props win over `process.env`, including for the disable gate — `environment: { DD_LLMOBS_ENABLED: "false" }` suppresses the `DD_LLMOBS_ML_APP` passthrough.
|
|
13
|
+
- Bumps Datadog Lambda layers to `NODE: 139` and `EXTENSION: 97`.
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
---
|
|
2
|
+
version: 0.8.73
|
|
3
|
+
date: 2026-06-17
|
|
4
|
+
summary: Add @jaypie/constructs 1.2.64 release notes; document LLM Observability env passthrough in the cdk skill
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## Changes
|
|
8
|
+
|
|
9
|
+
- Adds release notes for `@jaypie/constructs` 1.2.64 (Datadog LLM Observability env passthrough; Datadog layer bumps).
|
|
10
|
+
- Documents the `DD_LLMOBS_ENABLED` / `DD_LLMOBS_ML_APP` synth-time passthrough behavior in the `cdk` skill.
|
package/skills/cdk.md
CHANGED
|
@@ -292,6 +292,10 @@ const handler = new JaypieLambda(this, "Handler", {
|
|
|
292
292
|
});
|
|
293
293
|
```
|
|
294
294
|
|
|
295
|
+
### LLM Observability passthrough
|
|
296
|
+
|
|
297
|
+
If `DD_LLMOBS_ENABLED` is set at synth time, `JaypieLambda` (and every derivative) forwards it to the Lambda environment. `DD_LLMOBS_ML_APP` is forwarded too — **unless** observability is disabled (`DD_LLMOBS_ENABLED` resolves to `"false"` or `"0"`). Explicit `environment` props win over `process.env`, including the disable gate, so `environment: { DD_LLMOBS_ENABLED: "false" }` suppresses the `DD_LLMOBS_ML_APP` passthrough. This is the deploy-time half of the runtime opt-in documented in `skill("llm")`.
|
|
298
|
+
|
|
295
299
|
## JaypieNextJs
|
|
296
300
|
|
|
297
301
|
Deploy Next.js applications:
|