@jaypie/mcp 0.8.67 → 0.8.68

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.67#266d669f"
12
+ const BUILD_VERSION_STRING = "@jaypie/mcp@0.8.68#abfd8600"
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.67",
3
+ "version": "0.8.68",
4
4
  "description": "Jaypie MCP",
5
5
  "repository": {
6
6
  "type": "git",
@@ -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.