Skip to content

fix(deps): update dependency @hono/node-server to v2 [security]#2727

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/npm-hono-node-server-vulnerability
Open

fix(deps): update dependency @hono/node-server to v2 [security]#2727
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/npm-hono-node-server-vulnerability

Conversation

@renovate

@renovate renovate Bot commented Jul 22, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
@hono/node-server ^1.13.0^2.0.5 age confidence
@hono/node-server ^1.8.0^2.0.5 age confidence

Node.js Adapter for Hono: Path traversal in serve-static on Windows via encoded backslash (%5C)

GHSA-frvp-7c67-39w9

More information

Details

The same as the hono core Path traversal in serve-static on Windows via encoded backslash (%5C).

Summary

On Windows hosts, an encoded backslash (%5C) in the request path decodes to \, which the Windows path resolver treats as a separator. serve-static then resolves a single URL segment such as admin\secret.txt into a nested file under the root and serves it, letting an attacker read static files meant to be protected behind prefix-mounted middleware. Directory escape (..) remains blocked.

Details

The router splits paths only on /, so /admin%5Csecret.txt is one segment and middleware on /admin/* does not run. The serve-static guard rejects ./.. and consecutive separators but lets a lone \ through; on Windows the file resolver re-splits it into the protected subtree.

This affects Windows hosts serving static files via the Node, Bun, or Deno adapters that guard a static subtree with prefix-mounted middleware.

Impact

An unauthenticated attacker can read static files under a middleware-guarded prefix on Windows hosts. The read stays within the configured root; escape outside the root is not possible.

Severity

  • CVSS Score: 5.9 / 10 (Medium)
  • Vector String: CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N

References

This data is provided by the GitHub Advisory Database (CC-BY 4.0).


Release Notes

honojs/node-server (@​hono/node-server)

v2.0.5

Compare Source

Security Fix

Fixed a security issue in Serve Static Middleware where prefix-mounted middleware could be bypassed on Windows. This only affects applications running on Windows that use Serve Static Middleware. Affected users are encouraged to upgrade to this version.

See GHSA-frvp-7c67-39w9 for details.

v2.0.4

Compare Source

What's Changed

Full Changelog: honojs/node-server@v2.0.3...v2.0.4

v2.0.3

Compare Source

What's Changed

New Contributors

Full Changelog: honojs/node-server@v2.0.2...v2.0.3

v2.0.2

Compare Source

What's Changed

Full Changelog: honojs/node-server@v2.0.1...v2.0.2

v2.0.1

Compare Source

What's Changed

New Contributors

Full Changelog: honojs/node-server@v2.0.0...v2.0.1

v2.0.0

Compare Source

Now, we release the second major version of the Hono Node.js adapter 🎉 🎉 🎉

The Hono Node.js adapter is now up to 2.3x faster

v2 of the Hono Node.js adapter reaches up to 2.3x the throughput of v1 — that's the peak number, measured on the body-parsing scenario of bun-http-framework-benchmark. The other scenarios (Ping, Query) get a smaller but real boost too.

Install or upgrade with:

npm i @​hono/node-server@latest

v2

The Node.js adapter is going through a major version bump to v2. That said, the public API stays the same — the headline of this release is the large performance improvement described above.

What does the Node.js adapter do?

A quick refresher on what the Node.js adapter actually does — it exists so that Hono applications can run on Node.js. Hono is built on the Web Standards APIs, but you cannot serve those directly from Node.js. The adapter bridges the Web Standards APIs and the Node.js APIs, which is what lets a Hono app — and more generally a Web-Standards-style app — run on top of Node.js.

If you write the following code and run node ./index.js, a server starts up on localhost:3000. And it really is plain Node.js underneath.

import { Hono } from 'hono'
import { serve } from '@​hono/node-server'

const app = new Hono()
app.get('/', (c) => c.text('Hello World!'))

serve(app)

The early performance story

The very first implementation of the Node.js adapter looked roughly like this in pseudocode:

export const getRequestListener = (fetchCallback: FetchCallback) => {
  return async (incoming: IncomingMessage, outgoing: ServerResponse) => {
    const method = incoming.method || 'GET'
    const url = `http://${incoming.headers.host}${incoming.url}`

    // ...

    const init = {
      method: method,
      headers: headerRecord,
    }

    // app is a Hono application
    const res = await app.fetch(new Request(url, init))
    const buffer = await res.arrayBuffer()
    outgoing.writeHead(res.status, resHeaderRecord)
    outgoing.end(new Uint8Array(buffer))
  }
}

So the flow was:

  • a request comes in as an IncomingMessage
  • it gets converted into a Request object and handed to the app
  • the Response returned by the app is written back to the outgoing ServerResponse

In diagram form:

IncomingMessage => Request => app => Response => ServerResponse

This is, frankly, inefficient. So whenever Hono went head-to-head with other Node.js frameworks we kept losing — all we could do was shrug and say "well, it's slow on Node.js."

Introducing LightweightRequest / LightweightResponse

The huge step forward that fixed this was a legendary PR from @​usualoma:

#​95

It made things up to 2.7x faster.

SS

I previously wrote about this in detail in this post:

https://zenn.dev/yusukebe/articles/7ac501716ae1f7?locale=en

In short, the trick is wonderfully simple. It just follows the golden rule of performance tuning: don't do work you don't have to do. Lightweight versions of Request and Response are constructed and used first — and that path is fast. Only when something actually needs the contents of the Request, e.g. when you call req.json(), does a real new Request() get instantiated under the hood and used from then on. The result is fast, and behavior stays correct.

…but body parsing was still slow

"Fast" here was for a very simple "Hello World" benchmark — a GET that just returns text.

There are many ways to benchmark, but the one we tend to reach for is this:

https://github.com/SaltyAom/bun-http-framework-benchmark

It tests three scenarios: Ping, Query, and Body. Let's pit Hono against the major Node.js frameworks:

SS

As you can see, the Body case is very slow. The handler being measured is essentially this:

import { Hono } from 'hono'
import { serve } from '@​hono/node-server'

const app = new Hono()

app.post('/json', async (c) => {
  const data = await c.req.json()
  return c.json(data)
})

serve(app)

c.req.json() is the slow part. The reason is well understood: inside the Node.js adapter, when json() is called the LightweightRequest path can't be used, so a real new Request() ends up being constructed.

perf: optimize request body reading

The 2.3x figure above comes from one PR specifically — PR #​301 by @​mgcrea:

The PR bundles a few changes, but the key one is "optimize request body reading". Quoting from the PR description:

The fix overrides text(), json(), arrayBuffer(), and blob() on the request prototype to read directly from the Node.js IncomingMessage using event-based I/O.

In other words, in the json() case above, we no longer convert into a Request at all — we read the body straight off the Node.js APIs. A classic fast path. That alone gives a large jump in body-parsing throughput.

The same PR also includes two other tuning improvements:

  • URL construction fast-path — skip building a URL object except in edge cases
  • buildOutgoingHttpHeaders optimization — skip the set-cookie header comparison when there are no cookies

v2 ships several other performance PRs as well — newHeadersFromIncoming and signal fast-paths, Response fast-paths and responseViaCache improvements, method-key caching, a regex-based buildUrl rewrite, and more (see the full list below). They all add up, but #​301 is by far the largest single contributor, which is why it gets the spotlight here.

v2 performance

Now let's measure the final v2 build.

First, comparing against the v1 Node.js adapter. dev here is v2. Body improves by 2.3x, and the other scenarios get faster too:

SS

Next, the same comparison against other frameworks. With the Body score jumping, Hono passes Koa and Fastify and takes first place:

SS

[!CAUTION]
Updated: The h3 entry in the earlier framework comparison was an older snapshot. Its successor srvx now ships a FastResponse mode, and in srvx's own benchmark (h3js/srvx/test/bench-node) srvx-fast (≈68,560 req/sec) beats hono-fast (≈59,477 req/sec). The methodology is different from the benchmarks above, but worth being upfront: with FastResponse enabled, srvx is faster than Hono v2 in that setup.

Breaking changes

There are two breaking changes in v2.

Dropped support for Node.js v18

Node.js v18 reached end-of-life, so v2 requires Node.js v20 or later.

Removed the Vercel adapter

The Vercel adapter (@hono/node-server/vercel) has been removed. It is no longer needed for Vercel's modern runtimes, so the recommendation is to deploy without it.

If you still need the previous behavior, the old adapter was a one-liner on top of getRequestListener and you can write the same thing in your own project:

import type { Hono } from 'hono'
import { getRequestListener } from '@​hono/node-server'

export const handle = (app: Hono) => {
  return getRequestListener(app.fetch)
}

Then use it the same way you used handle from @hono/node-server/vercel before.

All changes

A full list of what landed in PR #​316.

Performance
Features
Breaking changes
Fixes & refactors
Build & tooling

Wrap-up

So that's v2 of the Node.js adapter — significantly faster, with the same API. Just upgrading should give you a real performance boost. No more "Hono is slow on Node.js" excuses. Please use Hono — fast not only on Cloudflare, Bun, and Deno, but now also on Node.js.

v1.19.15

Compare Source

v1.19.14

Compare Source

What's Changed

  • fix: add custom inspect to lightweight Request/Response to prevent TypeError on console.log by @​usualoma in #​340

Full Changelog: honojs/node-server@v1.19.13...v1.19.14

v1.19.13

Compare Source

Security Fix

Fixed an issue in Serve Static Middleware where inconsistent handling of repeated slashes (//) between the router and static file resolution could allow middleware to be bypassed. Users of Serve Static Middleware are encouraged to upgrade to this version.

See GHSA-92pp-h63x-v22m for details.

v1.19.12

Compare Source

What's Changed

Full Changelog: honojs/node-server@v1.19.11...v1.19.12

v1.19.11

Compare Source

What's Changed
  • fix: do not overwrite Content-Length in the fast path pattern if Content-Length already exists. by @​usualoma in #​309

Full Changelog: honojs/node-server@v1.19.10...v1.19.11

v1.19.10

Compare Source

Security Fix

Fixed an authorization bypass in Serve Static Middleware caused by inconsistent URL decoding (%2F handling) between the router and static file resolution. Users of Serve Static Middleware are encouraged to upgrade to this version.

See GHSA-wc8c-qw6v-h7f6 for details.

v1.19.9

Compare Source

What's Changed

Full Changelog: honojs/node-server@v1.19.8...v1.19.9

v1.19.8

Compare Source

What's Changed
New Contributors

Full Changelog: honojs/node-server@v1.19.7...v1.19.8

v1.19.7

Compare Source

What's Changed
New Contributors

Full Changelog: honojs/node-server@v1.19.6...v1.19.7

v1.19.6

Compare Source

What's Changed

Full Changelog: honojs/node-server@v1.19.5...v1.19.6

v1.19.5

Compare Source

What's Changed
  • fix: cancel a readable stream if a writable stream is closed before a readable stream is closed. by @​usualoma in #​280

Full Changelog: honojs/node-server@v1.19.4...v1.19.5

v1.19.4

Compare Source

What's Changed
New Contributors

Full Changelog: honojs/node-server@v1.19.3...v1.19.4

v1.19.3

Compare Source

What's Changed
New Contributors

Full Changelog: honojs/node-server@v1.19.2...v1.19.3

v1.19.2

Compare Source

What's Changed
New Contributors

Full Changelog: honojs/node-server@v1.19.1...v1.19.2

v1.19.1

Compare Source

What's Changed

Full Changelog: honojs/node-server@v1.19.0...v1.19.1

v1.19.0

Compare Source

What's Changed
New Contributors

Full Changelog: honojs/node-server@v1.18.2...v1.19.0

v1.18.2

Compare Source

What's Changed
  • fix: Skip content-length assignment when transfer-encoding is chunked. by @​usualoma in #​271

Full Changelog: honojs/node-server@v1.18.1...v1.18.2

v1.18.1

Compare Source

What's Changed

Full Changelog: honojs/node-server@v1.18.0...v1.18.1

v1.18.0

Compare Source

What's Changed

Full Changelog: honojs/node-server@v1.17.1...v1.18.0

v1.17.1

Compare Source

What's Changed

Full Changelog: honojs/node-server@v1.17.0...v1.17.1

v1.17.0

Compare Source

What's Changed

Full Changelog: honojs/node-server@v1.16.0...v1.17.0

v1.16.0

Compare Source

What's Changed
  • feat: Clean up the incoming object if the request is not completely finished. by @​usualoma in #​252

Full Changelog: honojs/node-server@v1.15.0...v1.16.0

v1.15.0

Compare Source

What's Changed

Full Changelog: honojs/node-server@v1.14.4...v1.15.0

v1.14.4

Compare Source

What's Changed

Full Changelog: honojs/node-server@v1.14.3...v1.14.4

v1.14.3

Compare Source

What's Changed

Full Changelog: honojs/node-server@v1.14.2...v1.14.3

v1.14.2

Compare Source

What's Changed
  • perf: keep using the lightweight Response object when retrieving headers, status, and ok, and then drop the getInternalBody function. by @​usualoma in #​242

Full Changelog: honojs/node-server@v1.14.1...v1.14.2

v1.14.1

Compare Source

What's Changed
New Contributors

Full Changelog: honojs/node-server@v1.14.0...v1.14.1

v1.14.0

Compare Source

What's Changed
New Contributors

Full Changelog: honojs/node-server@v1.13.8...v1.14.0

v1.13.8

Compare Source

What's Changed

New Contributors

Full Changelog: honojs/node-server@v1.13.7...v1.13.8

v1.13.7

Compare Source

What's Changed

New Contributors

Full Changelog: honojs/node-server@v1.13.6...v1.13.7

v1.13.6

Compare Source

What's Changed

Full Changelog: honojs/node-server@v1.13.5...v1.13.6

v1.13.5

Compare Source

What's Changed

  • fix(utils): accept HeadersInit, null, undefined in buildOutgoingHttpHeaders by @​usualoma in #​212

Full Changelog: honojs/node-server@v1.13.4...v1.13.5

v1.13.4

Compare Source

What's Changed

New Contributors

Full Changelog: honojs/node-server@v1.13.3...v1.13.4

v1.13.3

Compare Source

What's Changed

  • fix(serve-static): add error handler for decoding uri components by @​alumowa in #​208

New Contributors

Full Changelog: honojs/node-server@v1.13.2...v1.13.3

v1.13.2

Compare Source

What's Changed
New Contributors

Full Changelog: honojs/node-server@v1.13.1...v1.13.2

v1.13.1

Compare Source

What's Changed
  • fix(serve-static): use application/octet-stream if the mime type is not detected by @​usualoma in #​201

Full Changelog: honojs/node-server@v1.13.0...v1.13.1


Configuration

📅 Schedule: (in timezone America/Los_Angeles)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot added the security label Jul 22, 2026
@renovate
renovate Bot force-pushed the renovate/npm-hono-node-server-vulnerability branch from 477bdeb to fae94b8 Compare July 22, 2026 00:08
@renovate renovate Bot changed the title fix(deps): update dependency @hono/node-server to ^1.19.14 [security] fix(deps): update dependency @hono/node-server to v2 [security] Jul 22, 2026
@renovate
renovate Bot force-pushed the renovate/npm-hono-node-server-vulnerability branch from fae94b8 to 9158487 Compare July 22, 2026 00:38
@renovate renovate Bot changed the title fix(deps): update dependency @hono/node-server to v2 [security] fix(deps): update dependency @hono/node-server to ^1.19.14 [security] Jul 22, 2026
@renovate
renovate Bot force-pushed the renovate/npm-hono-node-server-vulnerability branch from 9158487 to fda3d1c Compare July 22, 2026 21:47
@renovate renovate Bot changed the title fix(deps): update dependency @hono/node-server to ^1.19.14 [security] fix(deps): update dependency @hono/node-server to v2 [security] Jul 22, 2026
@renovate
renovate Bot force-pushed the renovate/npm-hono-node-server-vulnerability branch from fda3d1c to 7b652e2 Compare July 22, 2026 22:46
@renovate renovate Bot changed the title fix(deps): update dependency @hono/node-server to v2 [security] fix(deps): update dependency @hono/node-server to ^1.19.14 [security] Jul 22, 2026
@renovate
renovate Bot force-pushed the renovate/npm-hono-node-server-vulnerability branch from 7b652e2 to 19a0264 Compare July 23, 2026 00:50
@renovate renovate Bot changed the title fix(deps): update dependency @hono/node-server to ^1.19.14 [security] fix(deps): update dependency @hono/node-server to v2 [security] Jul 23, 2026
@renovate
renovate Bot force-pushed the renovate/npm-hono-node-server-vulnerability branch from 19a0264 to 75997dc Compare July 23, 2026 01:20
@renovate renovate Bot changed the title fix(deps): update dependency @hono/node-server to v2 [security] fix(deps): update dependency @hono/node-server to ^1.19.14 [security] Jul 23, 2026
@renovate
renovate Bot force-pushed the renovate/npm-hono-node-server-vulnerability branch from 75997dc to 7258c3c Compare July 23, 2026 01:24
@renovate renovate Bot changed the title fix(deps): update dependency @hono/node-server to ^1.19.14 [security] fix(deps): update dependency @hono/node-server to v2 [security] Jul 23, 2026
@renovate
renovate Bot force-pushed the renovate/npm-hono-node-server-vulnerability branch from 7258c3c to 3c8a11b Compare July 23, 2026 03:01
@renovate renovate Bot changed the title fix(deps): update dependency @hono/node-server to v2 [security] fix(deps): update dependency @hono/node-server to ^1.19.14 [security] Jul 23, 2026
@renovate
renovate Bot force-pushed the renovate/npm-hono-node-server-vulnerability branch from 3c8a11b to a351895 Compare July 23, 2026 07:04
@renovate renovate Bot changed the title fix(deps): update dependency @hono/node-server to ^1.19.14 [security] fix(deps): update dependency @hono/node-server to v2 [security] Jul 23, 2026
@renovate renovate Bot changed the title fix(deps): update dependency @hono/node-server to v2 [security] fix(deps): update dependency @hono/node-server to ^1.19.14 [security] Jul 23, 2026
@renovate
renovate Bot force-pushed the renovate/npm-hono-node-server-vulnerability branch 2 times, most recently from 900993a to 000403e Compare July 23, 2026 14:48
@renovate renovate Bot changed the title fix(deps): update dependency @hono/node-server to ^1.19.14 [security] fix(deps): update dependency @hono/node-server to v2 [security] Jul 23, 2026
@renovate
renovate Bot force-pushed the renovate/npm-hono-node-server-vulnerability branch from 000403e to 4f7b227 Compare July 23, 2026 15:36
@renovate renovate Bot changed the title fix(deps): update dependency @hono/node-server to v2 [security] fix(deps): update dependency @hono/node-server to ^1.19.14 [security] Jul 23, 2026
@renovate
renovate Bot force-pushed the renovate/npm-hono-node-server-vulnerability branch from 4f7b227 to 23220fb Compare July 23, 2026 17:42
@renovate renovate Bot changed the title fix(deps): update dependency @hono/node-server to ^1.19.14 [security] fix(deps): update dependency @hono/node-server to v2 [security] Jul 23, 2026
@renovate
renovate Bot force-pushed the renovate/npm-hono-node-server-vulnerability branch from 23220fb to 1c63f4b Compare July 23, 2026 19:06
@renovate renovate Bot changed the title fix(deps): update dependency @hono/node-server to v2 [security] fix(deps): update dependency @hono/node-server to ^1.19.14 [security] Jul 23, 2026
@renovate
renovate Bot force-pushed the renovate/npm-hono-node-server-vulnerability branch from 1c63f4b to de38695 Compare July 23, 2026 21:32
@renovate
renovate Bot force-pushed the renovate/npm-hono-node-server-vulnerability branch from 465c170 to 9f47cc8 Compare July 24, 2026 07:11
@renovate renovate Bot changed the title fix(deps): update dependency @hono/node-server to ^1.19.15 [security] fix(deps): update dependency @hono/node-server to v2 [security] Jul 24, 2026
@renovate
renovate Bot force-pushed the renovate/npm-hono-node-server-vulnerability branch from 9f47cc8 to ca09850 Compare July 24, 2026 15:23
@renovate renovate Bot changed the title fix(deps): update dependency @hono/node-server to v2 [security] fix(deps): update dependency @hono/node-server to ^1.19.15 [security] Jul 24, 2026
@renovate
renovate Bot force-pushed the renovate/npm-hono-node-server-vulnerability branch from ca09850 to 10bd140 Compare July 24, 2026 15:39
@renovate renovate Bot changed the title fix(deps): update dependency @hono/node-server to ^1.19.15 [security] fix(deps): update dependency @hono/node-server to v2 [security] Jul 24, 2026
@renovate
renovate Bot force-pushed the renovate/npm-hono-node-server-vulnerability branch from 10bd140 to 0433d92 Compare July 24, 2026 17:02
@renovate renovate Bot changed the title fix(deps): update dependency @hono/node-server to v2 [security] fix(deps): update dependency @hono/node-server to ^1.19.15 [security] Jul 24, 2026
@renovate
renovate Bot force-pushed the renovate/npm-hono-node-server-vulnerability branch from 0433d92 to a0af342 Compare July 24, 2026 18:22
@renovate renovate Bot changed the title fix(deps): update dependency @hono/node-server to ^1.19.15 [security] fix(deps): update dependency @hono/node-server to v2 [security] Jul 24, 2026
@renovate
renovate Bot force-pushed the renovate/npm-hono-node-server-vulnerability branch from a0af342 to 4be0400 Compare July 24, 2026 18:58
@renovate renovate Bot changed the title fix(deps): update dependency @hono/node-server to v2 [security] fix(deps): update dependency @hono/node-server to ^1.19.15 [security] Jul 24, 2026
@renovate
renovate Bot force-pushed the renovate/npm-hono-node-server-vulnerability branch from 4be0400 to 1ebe41a Compare July 25, 2026 01:46
@renovate renovate Bot changed the title fix(deps): update dependency @hono/node-server to ^1.19.15 [security] fix(deps): update dependency @hono/node-server to v2 [security] Jul 25, 2026
@renovate
renovate Bot force-pushed the renovate/npm-hono-node-server-vulnerability branch from 1ebe41a to 0c80f6f Compare July 25, 2026 02:35
@renovate renovate Bot changed the title fix(deps): update dependency @hono/node-server to v2 [security] fix(deps): update dependency @hono/node-server to ^1.19.15 [security] Jul 25, 2026
@renovate
renovate Bot force-pushed the renovate/npm-hono-node-server-vulnerability branch from 0c80f6f to 562eec3 Compare July 25, 2026 05:12
@renovate renovate Bot changed the title fix(deps): update dependency @hono/node-server to ^1.19.15 [security] fix(deps): update dependency @hono/node-server to v2 [security] Jul 25, 2026
@renovate
renovate Bot force-pushed the renovate/npm-hono-node-server-vulnerability branch from 562eec3 to e8458c6 Compare July 25, 2026 07:35
@renovate renovate Bot changed the title fix(deps): update dependency @hono/node-server to v2 [security] fix(deps): update dependency @hono/node-server to ^1.19.15 [security] Jul 25, 2026
@renovate
renovate Bot force-pushed the renovate/npm-hono-node-server-vulnerability branch from e8458c6 to db18036 Compare July 25, 2026 08:45
@renovate renovate Bot changed the title fix(deps): update dependency @hono/node-server to ^1.19.15 [security] fix(deps): update dependency @hono/node-server to v2 [security] Jul 25, 2026
@renovate
renovate Bot force-pushed the renovate/npm-hono-node-server-vulnerability branch from db18036 to cd20811 Compare July 25, 2026 12:35
@renovate renovate Bot changed the title fix(deps): update dependency @hono/node-server to v2 [security] fix(deps): update dependency @hono/node-server to ^1.19.15 [security] Jul 25, 2026
@renovate
renovate Bot force-pushed the renovate/npm-hono-node-server-vulnerability branch from cd20811 to bf56a40 Compare July 25, 2026 16:09
@renovate renovate Bot changed the title fix(deps): update dependency @hono/node-server to ^1.19.15 [security] fix(deps): update dependency @hono/node-server to v2 [security] Jul 25, 2026
@renovate
renovate Bot force-pushed the renovate/npm-hono-node-server-vulnerability branch from bf56a40 to 773d1e4 Compare July 25, 2026 17:05
@renovate renovate Bot changed the title fix(deps): update dependency @hono/node-server to v2 [security] fix(deps): update dependency @hono/node-server to ^1.19.15 [security] Jul 25, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants