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
Changes stringifying options behavior. 51a3eaf
Setting the body option to be an object to stringify is no longer possible without setting either the form option for URL encoding or the json option for JSON encoding. Previously, Got would use URL encoding by default, now it will throw an error. Since the json option also means Got will decode a JSON response for you, setting both options to true will encode the request as URL and decode the response as JSON.
Now also redirects on 307, 308, 303 responses. b45896a
The timeout option now applies to the whole request and we added ability to control the timeout of the individual phases. 7964f2c
Highlights
Added ability to cancel in-progress requests! 9ef7a5a