Skip to content

chore(deps): bump @whatwg-node/server from 0.10.18 to 0.11.0#457

Merged
github-actions[bot] merged 1 commit into
mainfrom
dependabot/npm_and_yarn/whatwg-node/server-0.11.0
Jun 3, 2026
Merged

chore(deps): bump @whatwg-node/server from 0.10.18 to 0.11.0#457
github-actions[bot] merged 1 commit into
mainfrom
dependabot/npm_and_yarn/whatwg-node/server-0.11.0

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Jun 3, 2026

Bumps @whatwg-node/server from 0.10.18 to 0.11.0.

Changelog

Sourced from @​whatwg-node/server's changelog.

0.11.0

Minor Changes

  • #3399 9d02fd0 Thanks @​enisdenjo! - New useRequestDeadline plugin for enforcing per-request timeouts

    Aborts the request signal and returns a custom response when the handler takes longer than the configured timeout.

    import { createServerAdapter, useRequestDeadline } from '@whatwg-node/server'
    const adapter = createServerAdapter(myHandler, {
    plugins: [
    useRequestDeadline({
    timeout: 5000,
    response: req => new Response(Request to ${req.url} timed out, { status: 504 })
    })
    ]
    })

    The request's AbortSignal is aborted when the deadline fires, so handlers that respect it (e.g. fetch calls, database queries) are cancelled cooperatively:

    async function myHandler(req: Request) {
      // this fetch is cancelled automatically if the deadline fires
      const data = await fetch('https://slow-api.example.com/data', { signal: req.signal })
      return Response.json(await data.json())
    }

Patch Changes

  • #3376 228b517 Thanks @​copilot-swe-agent! - Fix duplicate transfer-encoding: chunked header when using uWebSockets.js. uWebSockets.js automatically adds this header when streaming via write() + end(), so forwarding it from the fetch response caused chunked, chunked which breaks strict load balancers (e.g. Google Cloud Load Balancer).
Commits
  • 60e1a14 Upcoming Release Changes (#3221)
  • 9d02fd0 useRequestDeadline plugin (#3399)
  • 80b38a9 build(deps): bump the actions-deps group across 1 directory with 7 updates (#...
  • 228b517 Fix duplicate transfer-encoding: chunked header when using uWebSockets.js (...
  • ab65d32 fix(deps): update all non-major dependencies (#3370)
  • 03b78cc fix(deps): update dependency @​types/node to v25.7.0 (#3362)
  • e6bca01 build(deps): bump uWebSockets.js from v20.66.0 to v20.67.0 (#3345)
  • afdc789 fix(deps): update all non-major dependencies (#3344)
  • 47ce961 fix(deps): update react monorepo to v19.2.6 (#3335)
  • d3383b0 chore(deps): update dependency @​hapi/hapi to v21.4.9 (#3333)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​whatwg-node/server since your current version.


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [@whatwg-node/server](https://github.com/ardatan/whatwg-node/tree/HEAD/packages/server) from 0.10.18 to 0.11.0.
- [Release notes](https://github.com/ardatan/whatwg-node/releases)
- [Changelog](https://github.com/ardatan/whatwg-node/blob/master/packages/server/CHANGELOG.md)
- [Commits](https://github.com/ardatan/whatwg-node/commits/@whatwg-node/server@0.11.0/packages/server)

---
updated-dependencies:
- dependency-name: "@whatwg-node/server"
  dependency-version: 0.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Jun 3, 2026
@github-actions github-actions Bot merged commit df15b51 into main Jun 3, 2026
9 checks passed
@github-actions github-actions Bot deleted the dependabot/npm_and_yarn/whatwg-node/server-0.11.0 branch June 3, 2026 03:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants