Files
Fluxup_PAP/node_modules/fetch-nodeshim/CHANGELOG.md
2026-03-10 16:18:05 +00:00

4.9 KiB

minifetch

0.4.8

Patch Changes

  • ⚠️ Fix fetch(new Request(...), init) case, where init should take precedence over the request Submitted by @kitten (See #37)

0.4.7

Patch Changes

  • Avoid setHeaders to increase consistency, fix Set-Cookie case for older Node versions, and work around bug in Bun <=1.3.9 Submitted by @kitten (See #35)

0.4.6

Patch Changes

  • Replace undici Response with node:stream/consumers in body helper Submitted by @kitten (See #32)

0.4.5

Patch Changes

  • ⚠️ Fix Content-Type being overridden for string inputs when it's already set Submitted by @kitten (See #30)

0.4.4

Patch Changes

  • Limit state in which incoming.socket is unrefed and instead .ref() it when the body is being read, and .unref() it again when reading stops Submitted by @kitten (See #28)

0.4.3

Patch Changes

  • ⚠️ Fix typo in NO_PROXY construction Submitted by @kitten (See #18)
  • Set Content-Length: 0 when response.body is null for PATCH as well Submitted by @kitten (See #23)
  • Protect against invalid Location URI Submitted by @kitten (See #26)
  • Issue an explicit ETIMEDOUT when the request times out Submitted by @kitten (See #24)
  • ⚠️ Fix Set-Cookie list handling by capturing them with Headers#append Submitted by @kitten (See #20)
  • Reset requestOptions.agent on retry/redirect Submitted by @kitten (See #27)
  • ⚠️ Fix _final on InflateStream calling callback before full flush Submitted by @kitten (See #25)
  • Propagate errors for duplex request/response streams, and ensure early errors propagate to the Response stream Submitted by @kitten (See #16)
  • Protect against missing Symbol.toStringTag Submitted by @kitten (See #19)

0.4.2

Patch Changes

  • Unref the incoming socket when the timeout is disabled, to prevent body streams that never start from keeping processes alive Submitted by @kitten (See #14)

0.4.1

Patch Changes

  • Add sane default timeout to http.request Submitted by @kitten (See #12)

0.4.0

Minor Changes

  • Add automatic configuration for HTTP_PROXY, HTTPS_PROXY, and NO_PROXY similar to the upcoming Node 24+ built-in support. Agents will automatically be created and used when these environment variables are set Submitted by @kitten (See #8)

Patch Changes

  • Prevent outright error when --no-experimental-fetch is set, which causes Request, Response, FormData, and Headers to not be available globally Submitted by @kitten (See #11)
  • Update rollup config for reduced output and exclude sources from sourcemaps Submitted by @kitten (See #9)

0.3.0

Minor Changes

  • Add Body mixin as export Submitted by @kitten (See #6)

0.2.1

Patch Changes

  • Provenance Release Submitted by @kitten (See #4)

0.2.0

Minor Changes

  • Add web standard type/globals re-exports and polyfill File from node:buffer Submitted by @kitten (See #1)

Patch Changes

  • Add missing constructor type overloads and add missing Blob re-export Submitted by @kitten (See #2)

0.1.0

Initial Release.