Skip to content

November 25, 2024

Compare
Choose a tag to compare
@theguild-bot theguild-bot released this 25 Nov 14:57
· 88 commits to master since this release
8186ea8

@whatwg-node/node-fetch@0.7.4

Patch Changes

@whatwg-node/server@0.9.57

Patch Changes

  • e88ab4a
    Thanks @ardatan! - dependencies updates:

  • e88ab4a
    Thanks @ardatan! - New Explicit Resource Management feature for the
    server adapters;
    Learn more

    • Symbol.dispose and Symbol.asyncDispose hooks When the server adapter plugin has these hooks,
      it is added to the disposable stack of the server adapter. When the server adapter is disposed,
      those hooks are triggered
    • disposableStack in the server adapter The shared disposable stack that will be triggered when
      Symbol.asyncDispose is called.
    • Automatic disposal on Node and Node-compatible environments Even if the server adapter is not
      disposed explicitly, the disposal logic will be triggered on the process termination (SIGINT,
      SIGTERM etc)
    • ctx.waitUntil relation If it is an environment does not natively provide waitUntil, the
      unresolved passed promises will be resolved by the disposable stack.