@jaypie/mcp 0.8.3 → 0.8.4

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.3#6f36ab62"
12
+ const BUILD_VERSION_STRING = "@jaypie/mcp@0.8.4#71fb4b1f"
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.3",
3
+ "version": "0.8.4",
4
4
  "description": "Jaypie MCP",
5
5
  "repository": {
6
6
  "type": "git",
@@ -0,0 +1,24 @@
1
+ ---
2
+ version: 1.2.7
3
+ date: 2026-03-27
4
+ summary: Rename JSON log field from "log" to "level" to fix Datadog CloudWatch collision
5
+ ---
6
+
7
+ ## Changes
8
+
9
+ - Renamed `"log"` field to `"level"` in JSON output to prevent Datadog Forwarder from interpreting the log level as the message content
10
+ - Updated DatadogTransport to strip `"level"` instead of `"log"` when forwarding
11
+ - Closes #250
12
+
13
+ ## Migration
14
+
15
+ JSON output changes from:
16
+ ```json
17
+ {"log":"debug","message":"hello"}
18
+ ```
19
+ to:
20
+ ```json
21
+ {"level":"debug","message":"hello"}
22
+ ```
23
+
24
+ Any log parsing rules that match on the `"log"` field should be updated to match `"level"`.