Take hono to 4.13.7 and let Dependabot open the next one

Three medium advisories land on hono before 4.13.5: a toSSG() path
escape, a query parser that reads parameters past the URL fragment, and
unbounded dot-notation nesting in parseBody(). Only the second one
touches this server -- c.req.query() is read in imageproxy, icsproxy and
app -- and even there safeFetch validates the value it actually fetches
rather than a separate pre-check, so there was nothing to desync. toSSG
and parseBody are never called. The bump is still worth taking on its
own: it is a patch release with no API change.

The declared range moves with it, from ^4.7.4 to ^4.13.7, so the
security floor is recorded in server/package.json and not only in the
lockfile.

The dependabot.yml is the actual fix for how these were found. There was
no config, so nothing opened a PR and the alerts sat on a dashboard
until someone thought to look. Routine updates now group into one PR a
week; majors stay separate, because they are migrations.
This commit is contained in:
2026-09-10 06:21:56 -07:00
parent 38fb78a095
commit 3e8b1ebb38
3 changed files with 49 additions and 5 deletions
+1 -1
View File
@@ -17,7 +17,7 @@
},
"dependencies": {
"@hono/node-server": "^1.13.8",
"hono": "^4.7.4"
"hono": "^4.13.7"
},
"devDependencies": {
"@types/node": "^22.13.10",