Releases: sindresorhus/ky
Releases · sindresorhus/ky
v0.13.0
Breaking
await ky('…', {
hooks: {
beforeRequest: [
- options => {}
+ (input, options) => {}
]
afterResponse: [
- response => {}
+ (input, options, response) => {}
]
}
});
Enhancements
- Make the
retry
option more powerful (#110) d4ddb7a
You can now control which HTTP methods and status codes that should cause a retry. - Simplify the
Options
TypeScript type (#165) bfdc9b5
This should make it easier to wrap Ky when using TypeScript.
v0.12.0
v0.11.2
v0.11.1
- Fix TypeScript 3.5 compatibility 93d2faf
v0.11.0
v0.10.0
Breaking (for TypeScript users only):
- Don't export the
Ky
TypeScript namespace 7114ba3
Enhancements:
- Set accept header for Ky shortcut methods (#118) afc18ea
- Make it possible to install Ky in Node.js 8 even though it's not support (This is to re-enable Node.js 8 support in
ky-universal
) fcffa18
Fixes: