Skip to content

Commit 5c7fbed

Browse files
chore: bump hono + @hono/node-server in lockfile (security noise cleanup)
Resolves our dev-environment lockfile to hono@4.12.4 / @hono/node-server@1.19.10 to clear 9 Dependabot alerts for hono middleware vulns we don't exercise (we never import serveStatic, ErrorBoundary, setCookie, writeSSE, or the various auth/cache middlewares). Published semver ranges are unchanged — catalogs still declare ^4.11.4 and ^1.19.9 which already accept the patched versions. This change does not affect what consumers see. Mechanics: - root package.json resolutions: hono ^4.12.4, @hono/node-server ^1.19.10 (root is private; resolutions affect our lockfile only, not published deps) - minimumReleaseAgeExclude: updated entries for the new versions (both published 2026-03-03, under the 7-day gate) Verified via pnpm pack: published @modelcontextprotocol/hono and @modelcontextprotocol/node still ship ^4.11.4 / ^1.19.9.
1 parent 4a7cdf4 commit 5c7fbed

File tree

3 files changed

+30
-32
lines changed

3 files changed

+30
-32
lines changed

package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,8 @@
7777
"zod": "catalog:runtimeShared"
7878
},
7979
"resolutions": {
80-
"strip-ansi": "6.0.1"
80+
"strip-ansi": "6.0.1",
81+
"hono": "^4.12.4",
82+
"@hono/node-server": "^1.19.10"
8183
}
8284
}

pnpm-lock.yaml

Lines changed: 25 additions & 29 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pnpm-workspace.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ linkWorkspacePackages: deep
5757
minimumReleaseAge: 10080 # 7 days
5858
minimumReleaseAgeExclude:
5959
- '@modelcontextprotocol/conformance'
60-
- hono@4.11.4 # fixes https://github.com/advisories/GHSA-3vhc-576x-3qv4 https://github.com/advisories/GHSA-f67f-6cw9-8mq4
61-
- '@hono/node-server@1.19.9' # https://github.com/honojs/node-server/pull/295
60+
- hono@4.12.4 # https://github.com/advisories/GHSA-q5qw-h33p-qvwr
61+
- '@hono/node-server@1.19.10' # https://github.com/advisories/GHSA-wc8c-qw6v-h7f6
6262

6363
onlyBuiltDependencies:
6464
- better-sqlite3

0 commit comments

Comments
 (0)