@jaypie/mcp 0.8.29 → 0.8.30
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.30#e4c15172"
|
|
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,9 @@
|
|
|
1
|
+
---
|
|
2
|
+
version: 1.2.21
|
|
3
|
+
date: 2026-04-12
|
|
4
|
+
summary: Include HTTP method in express session report
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## Changes
|
|
8
|
+
|
|
9
|
+
- `expressHandler` and `expressStreamHandler` now include `method` (e.g. `GET`, `POST`) alongside `path` and `status` in the `log.report` payload emitted at teardown.
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
---
|
|
2
|
+
version: 1.2.7
|
|
3
|
+
date: 2026-04-12
|
|
4
|
+
summary: jaypieHandler logs unhandled errors on the root logger so log.report counts them
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## Changes
|
|
8
|
+
|
|
9
|
+
- `jaypieHandler` now logs unhandled-error `fatal`/`error` calls via the root `publicLogger` instead of a `.with()`-derived child. Child loggers maintain their own `_errorCount`, so errors logged there were invisible to `log.report` on the root. The report now reflects unhandled errors correctly.
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
---
|
|
2
|
+
version: 1.2.15
|
|
3
|
+
date: 2026-04-12
|
|
4
|
+
summary: Count log.fatal toward session errorCount in log.report
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## Changes
|
|
8
|
+
|
|
9
|
+
- `log.fatal` and `log.fatal.var` now increment the session error count, matching the severity of fatal vs error. Previously only `log.error` incremented the counter, so unhandled error paths that logged `fatal` would underreport.
|