You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The agent/httpsAgent option now works on every supported Node
version. Previously a dispatcher built from the installed undici@7 was
always handed to the platform fetch, which only works when the platform
undici shares the same major (Node 24); on Node 22 and Node 26 requests
failed (e.g. "invalid onError method"). When the majors match, the
dispatcher is now forwarded through ky to the platform fetch; when they
differ, requests fall back to the installed undici's own fetch. (Ported
from upstream digitalbazaar/http-client.)
Changed
Raised the ky floor to ^1.14.3 (needed to forward the dispatcher
option through to fetch).