Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
9.6.0
->14.4.5
13.0.0
->14.4.5
Release Notes
sindresorhus/got (got)
v14.4.5
Compare Source
c079b93
v14.4.4
Compare Source
AbortSignal#timeout()
(#2388)92b378e
v14.4.3
Compare Source
f2f8cb2
v14.4.2
Compare Source
f44ef43
v14.4.1
Compare Source
dfc54d9
v14.4.0
Compare Source
15ca4a0
v14.3.0
Compare Source
dbab6c3
v14.2.1
Compare Source
c81a611
v14.2.0
Compare Source
cause
property with the original error toRequestError
(#2327)4cbd01d
v14.1.0
Compare Source
RequestError
response (#2325)5e4f6ff
v14.0.0
Compare Source
Breaking
a004263
Improvements
followRedirect
option accept a function (#2306)7c3f147
v13.0.0
Compare Source
As a reminder, Got continues to require ESM. For TypeScript users, this includes having
"module": "node16", "moduleResolution": "node16"
in your tsconfig.Breaking
52a1063
enableUnixSockets
option to befalse
by default852c312
Improvements
undefined
for options (#2258)1cefe8b
v12.6.1
Compare Source
get-stream
import statement (#2266)67d5039
v12.6.0
Compare Source
88c88fb
979272e
0ca0b7f
v12.5.3
Compare Source
3cc40b5
v12.5.2
Compare Source
39f83b6
v12.5.1
Compare Source
3b3ea67
3e9d3af
v12.5.0
Compare Source
e049e94
8630815
f0ac0b3
4c3762a
v12.4.1
Compare Source
Fixes
options.context
being not extensibleb671480
uploadProgress
after promise cancelation693de21
v12.4.0
Compare Source
Improvements
850773c
Fixes
beforeError
hooks withHTTPError
if thethrowHttpErrors
option isfalse
(#2104)3927348
v12.3.1
Compare Source
43b1467
v12.3.0
Compare Source
.off()
method for events (#2092)88056be
v12.2.0
Compare Source
AbortController
(#2020)6a6d2a9
enableUnixSockets
option (#2062)461b3d4
v12.1.0
Compare Source
Improvements
response.ok
(#2043)22d58fb
{throwHttpErrors: false}
Fixes
861ccd9
v12.0.4
Compare Source
bb8eca9
v12.0.3
Compare Source
json
option (#2015)eb045bf
v12.0.2
Compare Source
encoding
option with{responseType: 'json'}
(#1996)0703318
v12.0.1
Compare Source
nock
compatibility (#1959)bf39d2c
Request
TypeScript type (#1940)0f9f2b8
v12.0.0
Compare Source
Introducing Got v12.0.0 🎉
Long time no see! The latest Got version (v11.8.2) was released just in February ❄️
We have been working hard on squashing bugs and improving overall experience.
If you find Got useful, you might want to sponsor the Got maintainers.
This package is now pure ESM
Please read this. Also see https://github.com/sindresorhus/got/issues/1789.
[ERR_REQUIRE_ESM]
andMust use import to load ES Module
errors. This is a problem with your setup, not Got.Required Node.js >=14
While working with streams, we encountered more Node.js bugs that needed workarounds.
In order to keep our code clean, we had to drop Node.js v12 as the code would get more messy.
We strongly recommend that you update Node.js to v14 LTS.
HTTP/2 support
Every Node.js release, the native
http2
module gets more stable.Unfortunately there are still some issues on the Node.js side, so we decided to keep HTTP/2 disabled for now.
We may enable it by default in Got v13. It is still possible to turn it on via the
http2
option.To run HTTP/2 requests, it is required to use Node.js v15.10 or above.
Bug fixes
Woah, we possibly couldn't make a release if we didn't fix some bugs!
49c16ee
content-length
on ReadStream (#1510)472b8ef
ff918fb
1107cc6
methodRewriting
option51d88a0
url
not being reused on retry in rare case (#1487)462bc63
a59fac4
77df9c3
62305d7
06a2d3d
1e1e506
response.complete
when using cache9e15d88
Cannot call end
error whenrequest
returns aWritable
226cc39
3c23eea
3c23eea
got.paginate does not call init hooks
(#1574)3c23eea
https
module (#1567)3c23eea
9ecc5ee
searchParams
(#1814)1018c20
732e9bd
2453e5e
439fb82
eda69ff
username
andpassword
encoding in URL (#1169 #1317)d65d0ca
1c4cefc
afterResponse
return checkcbc8902
https.alpnProtocols
not having an effecte1099fb
Improvements
context
option mergeable (#1459)2b8ed1f
6fc04a9
e943672
(blocked by https://github.com/nodejs/node/issues/35923)2675046
1120370
4f21eb3
retry.backoffLimit
option41c4136
noise
retry optione830077
83575d5
fe723a0
(thanks @Giotino)error.code
f27e8d3
options.url
even if some options are invalid8d6a680
2db5ec5
854430f
3df52f3
once
types for Stream API3c23eea
RetryError
which always triggers a new retry when thrown3c23eea
error.options
is now enumerable3c23eea
defaults.handlers
don't need a default handler now3c23eea
Link
header3c23eea
a5dd9aa
Breaking changes
Improved option normalization
Option
class that is specifically designed to parse and validate Got options.It is made of setters and getters that provide fast normalization and more consistent behavior.
When passing an option does not exist, Got will throw an error. In order to retrieve the options before the error, use
error.options
.init
hook now accepts a second argument:self
, which points to anOptions
instance.In order to define your own options, you have to move them to
options.context
in aninit
hook or store them inoptions.context
directly.init
hooks are ran only when passing an options object explicitly.options.merge()
replacedgot.mergeOptions
andRequest.normalizeArguments
This fixes issues like #1450
Url
instances are not supported anymore. You need to use WHATWG URL instead.dnsLookupIpVersion
is now a number (4 or 6) or undefinedredirectUrls
andrequestUrl
now give URL instancesrequest.aborted
torequest.isAborted
Reason: consistency with
options.isStream
.lookup
option todnsLookup
beforeRetry
hook now accepts only two arguments:error
andretryCount
The
options
argument has been removed, however it's still accessible viaerror.options
. All modifications onerror.options
will be reflected in the next requests (no behavior change, same as with Got 11).beforeRedirect
hook's first argument (options) is now a cloned instance of the Request options.This was done to make retrieving the original options possible:
plainResponse.request.options
.redirect
event now takes two arguments in this order:updatedOptions
andplainResponse
.Reason: consistency with the
beforeRedirect
hook.socketPath
option has been removed. Use theunix:
protocol instead.retryWithMergedOptions
function in anafterResponse
hook no longer returns aPromise
.It now throws
RetryError
, so this should this should be the last function being executed.This was done to allow
beforeRetry
hooks getting called.options.agent
tofalse
.To do so, you need to define all the
options.agent
properties:http
,https
andhttp2
.url
option when paginating, it now needs to be an absolute URL - theprefixUrl
option is always reset from now on. The same when retrying in anafterResponse
hook.There was confusion around the
prefixUrl
option. It was counterintuitive if used with the Pagination API. For example, it worked fine if the server replied with a relative URL, but if it was an absolute URL then theprefixUrl
would end up duplicated. In order to fix this, Got now requires an absolute URL - noprefixUrl
will be applied.got.extend(…)
will throw when passing some options that don't accept undefined - undefined no longer retains the old value, as setting undefined explicitly may reset the optionDocumentation
We have redesigned the documentation so it's easier to navigate and find exactly what you are looking for. We hope you like it ❤️
v11.8.6
Compare Source
v11.8.5
Compare Source
v11.8.3
Compare Source
9463bb6
HTTPError
missing.code
property (#1739)0e167b8
v11.8.2
Compare Source
dnsCache
option lazy (#1529)3bd245f
This slightly improves Got startup performance and fixes an issue with Jest.
v11.8.1
Compare Source
4c815c3
v11.8.0
Compare Source
0
onstat
(#1488)7acd380
beforeRetry
allows stream body if different from original (#1501)3dd2273
390b145
v11.7.0
Compare Source
Improvements
pfx
HTTPS option (#1364)c33df7f
body
afterbeforeRequest
(#1453)e1c1844
7bc69d9
Fixes
88b32ea
promise.json()
c97ce7c
52de13b
v11.6.2
Compare Source
Bug fixes
prefixUrl
option from parent if it'sundefined
(#1448)a3da70a
29d4e32
c126ff1
Docs
2b352d3
f248618
RequestError
links3ed4af6
Tests
27470b5
v11.6.1
Compare Source
Fixes
options.port
on redirect (#1439)408e22a
Meta
5031843
d12d6af
v11.6.0
Compare Source
Improvements
retry
stream event (#1384)7072198
http-cache-semantics
options2e2295f
CancelError
inheritRequestError
1f132e8
retryAfter
toRetryObject
643a305
eaf1e02
cacheOptions
property9c16d90
Bug fixes
6e1aeae
Docs
f7bbc37
CancelError
docs28c400f
README
(#1425)38bbb04
v11.5.2
Compare Source
Docs
a3e171c
request
migration guide (#1387)a748343
9a309bd
Bug fixes
e02845f
dnsCache: true
having no effect043c950
v11.5.1
Compare Source
Enhancements
http2-wrapper
to1.0.0-beta.5.0
16e7f03
f7a1379
61d6f61
Bug fixes
2d96679
1ef053d
Docs
readme.md
4ebd26a
bd2d532
c833939
559526e
4083347
v11.5.0
Compare Source
Improvements
backoff
option to pagination (#1182)4be7446
b9a855d
476c026
8d697bc
b51d836
Fixes
676be6d
ac5f67d
response
event not being emitted on cache verify request (#1305)da4769e
f33e8bc
e1afe82
aeb2e07
Docs
beforeRequest
hook779062a
044767e
v11.4.0
Compare Source
934211f
7dcd145
5028c11
04f3ea4
The server aborted pending request
rejection728aef9
ECONNRESET
code to an abort errord325d35
prefixUrl
not working when theurl
argument is empty8d3412a
searchParams
option4dbada9
8f775c7
v11.3.0
Compare Source
https
options (#1304)c98f0d7
cb4da8d
dnsLookupIpVersion
option (#1264)7f643bb
v11.2.0
Compare Source
responseType
(#1276)b9ba18a
beforeRequest
hook (#1293)d8c00cf
2ccc4c2
ready
event if the file descriptor is already opened (#1289)2c8fe19
697de37
v11.1.4
Compare Source
3f125f1
cacheable-lookup
to 5.0.39770e54
48bbb36
options.rejectUnauthorized
in the documentation9b04963
responseType
set toundefined
0e8582f
6f84051
got.paginate()
an alias forgot.paginate.each()
5480b31
761b8e0
decompress-response
to6.0.0
c2bc014
lolex
to@sinonjs/fake-timers
(#1270)df333dd
calculateDelay
promisable (#1266)3745efc
v11.1.3
Compare Source
request.abort()
(#1242)ab338a7
host
header on redirect (#1241)8ff71d9
7dbb9ee
91aa0ac
searchParams
in merge (#1208)7d7361c
8862270
47c1afe
5131dc2
v11.1.2
Compare Source
Bug fixes
options.dnsCache
by default79507c2
Enhancements
822bfa7
05ff878
v11.1.1
Compare Source
50ef99a
got.mergeOptions()
regression157e02b
7b19e8f
options.responseType
optional when using a template9ed0a39
v11.1.0
Compare Source
pagination.stackAllItems
option (#1214)c1208d1
c127f5b
278c421
v11.0.3
Compare Source
Fixes
4344c3a
b927e2d
options.searchParams
duplicates429db40
.abort()
on a destroyed request63c1b72
Docs
16ff82f
cache
anddnsCache
can befalse
7c5290d
v11.0.2
Compare Source
response.statusMessage
being null965bd03
http2-wrapper
dependency to1.0.0-beta.4.4
4e8de8e
Merge
as it's stricter than the intersection operatord3b972e
8501c69
options.body
835c70b
v11.0.1
Compare Source
Fixed two regressions:
HTTPError
s have unspecified response body (#1162)Improved TypeScript types for errors inherited from
RequestError
v11.0.0
Compare Source
Introducing Got 11! 🎉 The last major version was in December last year. ❄️ Since then, a huge amount of bugs has been fixed. There are also many new features, for example, HTTP2 support is finally live! 🌐
If you find Got useful, you might want to sponsor the Got maintainers.
Breaking changes
Removed support for
electron.net
Due to the inconsistencies between the Electron's
net
moConfiguration
📅 Schedule: Branch creation - "* * * * 1-5" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about these updates again.
This PR was generated by Mend Renovate. View the repository job log.