-
Notifications
You must be signed in to change notification settings - Fork 372
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[2.x] Update got to v10.x #432
Comments
What's the benefit here? |
Currently Node.js 8.x support is dropped ;) |
Seems this Running the following script works absolutely fine: const got = require('got');
(async () => {
try {
const response = await got(
'https://fonts.googleapis.com/css?family=Merriweather:300',
{
method: 'head'
}
);
console.log('DONE');
} catch (error) {
console.error(error);
}
})(); But as soon as |
Done with #453 |
@bezoerb https://github.com/sindresorhus/got/releases/tag/v10.0.0
We will need to drop support for Node.js 8.x but that's OK IMO for v2.x. From a quick test some tests fail.
The text was updated successfully, but these errors were encountered: