Releases: fent/node-miniget
Releases · fent/node-miniget
v2.0.2
Bug Fixes
- don't reconnect on HEAD requests (5538df8)
v2.0.1
Bug Fixes
- increase
maxRedirects
default to 10 (3c9b499)
v2.0.0
Bug Fixes
- add 308 to list of redirect status codes (52148e8)
Code Refactoring
- changed
miniget.promise(url)
to miniget(url).text()
(3991962)
- remove
callback
option (06912de)
BREAKING CHANGES
-
callback
has been removed from options. if you want the concatenated
response body, use miniget(ur).text()
-
miniget.promise(url)
changed to miniget(url).text()
to be closer to the fetch API
v1.7.2
Bug Fixes
- catch any error thrown within
transform
(0191ec9)
v1.6.0
Features
- retry requests on status code 429 and 503 (1ed8467)
v1.5.3
Bug Fixes
- don't try to reconnect if
acceptRanges
not set for request (691a7bd)
v1.5.0
Features
- add
acceptEncoding
option (b2ae01b)
- emit extra info on
reconnect
events (f2e4576)