Release notes
*Sourced from [superagent's releases](https://github.com/visionmedia/superagent/releases).*
> ## v5.0.2
> - fix: fixed browser require for webpack (closes [#1474](https://github-redirect.dependabot.com/visionmedia/superagent/issues/1474)) ccc7f56
>
> https://github.com/visionmedia/superagent/compare/v5.0.1...v5.0.2
>
> ## v5.0.1
> - fix: fixed http2 issue for older versions of node (closes [#1474](https://github-redirect.dependabot.com/visionmedia/superagent/issues/1474)) 5b86fd3
> - docs: fixed space f7e2ae5
> - docs: added superagent-declare (closes [#1333](https://github-redirect.dependabot.com/visionmedia/superagent/issues/1333)) 32fb630
> - docs: fixed docs (closes [#1451](https://github-redirect.dependabot.com/visionmedia/superagent/issues/1451)) 70df462
>
> https://github.com/visionmedia/superagent/compare/v5.0.0...v5.0.1
>
> ## v5.0.0
> - fix: removed core-js, fixed docs with async/await + then/catch usage f0bcdc0
> - Merge pull request [#1473](https://github-redirect.dependabot.com/visionmedia/superagent/issues/1473) from ladjs/master 2fd631a
> - docs: removed line regarding 8.8.1 being required d22ebd7
> - feat: modern rewrite and refactoring 47f1d28
> - Merge pull request [#1468](https://github-redirect.dependabot.com/visionmedia/superagent/issues/1468) from bajtos/fix/formdata-error 076e55a
> - Fix handling of FormData errors e6ffbde
> - History formatting 0f0949f
> - Merge pull request [#1377](https://github-redirect.dependabot.com/visionmedia/superagent/issues/1377) from eromano/master-2 f3ac20c
> - Maintenance status [#1450](https://github-redirect.dependabot.com/visionmedia/superagent/issues/1450) ad4c96f
> - clear timeout 100 percent e6630ec
> - change after review 03e5efa
> - add upload timeout 650b521
>
> https://github.com/visionmedia/superagent/compare/v4.1.0...v5.0.0
>
> ## IP overrides
>
> * `.connect()` IP/DNS override option (Kornel)
> * `.trustLocalhost()` option for allowing broken HTTPS on `localhost`
> * `.abort()` used with promises rejects the promise.
>
> ## v4 = ES6 natively
>
> ## Breaking changes
>
> * Node.js v4 has reached it's end of life, so we no longer support it. It's v6+ or later. We recommend Node.js 10.
> * We now use ES6 in the browser code, too.
> * If you're using Browserify or Webpack to package code for Internet Explorer, you will also have to use Babel.
> * The pre-built node_modules/superagent.js is still ES5-compatible.
> * `.end(…)` returns `undefined` instead of the request. If you need the request object after calling `.end()` (and you probably don't), save it in a variable and call `request.end(…)`. Consider not using `.end()` at all, and migrating to promises by calling `.then()` instead.
> * In Node, responses with unknown MIME type are buffered by default. To get old behavior, if you use custom *unbuffered* parsers, add `.buffer(false)` to requests or set `superagent.buffer[yourMimeType] = false`.
> * Invalid uses of `.pipe()` throw.
>
> ## Minor changes
>
> * Throw if `req.abort().end()` is called
> ... (truncated)
Changelog
*Sourced from [superagent's changelog](https://github.com/visionmedia/superagent/blob/master/HISTORY.md).*
> # This HISTORY log is deprecated
>
> Please see [GitHub releases page](https://github.com/visionmedia/superagent/releases) for the current changelog.
>
> # 4.1.0 (2018-12-26)
>
> * `.connect()` IP/DNS override option (Kornel)
> * `.trustLocalhost()` option for allowing broken HTTPS on `localhost`
> * `.abort()` used with promises rejects the promise.
>
> # 4.0.0 (2018-11-17)
>
> ## Breaking changes
>
> * Node.js v4 has reached it's end of life, so we no longer support it. It's v6+ or later. We recommend Node.js 10.
> * We now use ES6 in the browser code, too.
> * If you're using Browserify or Webpack to package code for Internet Explorer, you will also have to use Babel.
> * The pre-built node_modules/superagent.js is still ES5-compatible.
> * `.end(…)` returns `undefined` instead of the request. If you need the request object after calling `.end()` (and you probably don't), save it in a variable and call `request.end(…)`. Consider not using `.end()` at all, and migrating to promises by calling `.then()` instead.
> * In Node, responses with unknown MIME type are buffered by default. To get old behavior, if you use custom _unbuffered_ parsers, add `.buffer(false)` to requests or set `superagent.buffer[yourMimeType] = false`.
> * Invalid uses of `.pipe()` throw.
>
>
> ## Minor changes
>
> * Throw if `req.abort().end()` is called
> * Throw if using unsupported mix of send and field
> * Reject `.end()` promise on all error events (Kornel Lesiński)
> * Set `https.servername` from the `Host` header (Kornel Lesiński)
> * Leave backticks unencoded in query strings where possible (Ethan Resnick)
> * Update node-mime to 2.x (Alexey Kucherenko)
> * Allow default buffer settings based on response-type (shrey)
> * `response.buffered` is more accurate.
>
> # 3.8.3 (2018-04-29)
>
> * Add flags for 201 & 422 responses (Nikhil Fadnis)
> * Emit progress event while uploading Node `Buffer` via send method (Sergey Akhalkov)
> * Fixed setting correct cookies for redirects (Damien Clark)
> * Replace .catch with ['catch'] for IE9 Support (Miguel Stevens)
>
> # 3.8.2 (2017-12-09)
>
> * Fixed handling of exceptions thrown from callbacks
> * Stricter matching of `+json` MIME types.
>
> # 3.8.1 (2017-11-08)
>
> * Clear authorization header on cross-domain redirect
>
> ... (truncated)
Commits
- [`ed3e235`](https://github.com/visionmedia/superagent/commit/ed3e235878f675a9286d0c4480e971ed6cec9124) v5.0.2
- [`ccc7f56`](https://github.com/visionmedia/superagent/commit/ccc7f564f6db79f150f029d850a01452bc07f7e3) fix: fixed browser require for webpack (closes [#1474](https://github-redirect.dependabot.com/visionmedia/superagent/issues/1474))
- [`1de219e`](https://github.com/visionmedia/superagent/commit/1de219e512d0a123041a1b79956c1ee2cdf635fb) v5.0.1
- [`5b86fd3`](https://github.com/visionmedia/superagent/commit/5b86fd397264cb7b84634fa7ff00ad82214aa473) fix: fixed http2 issue for older versions of node (closes [#1474](https://github-redirect.dependabot.com/visionmedia/superagent/issues/1474))
- [`f7e2ae5`](https://github.com/visionmedia/superagent/commit/f7e2ae5cffd559b3f37756df46d271434eed818f) docs: fixed space
- [`32fb630`](https://github.com/visionmedia/superagent/commit/32fb630c3db918c52638f256243cf0d42d3cba2b) docs: added superagent-declare (closes [#1333](https://github-redirect.dependabot.com/visionmedia/superagent/issues/1333))
- [`70df462`](https://github.com/visionmedia/superagent/commit/70df4625cdfe59371b9c6619d5f1d6ab0043e9ca) docs: fixed docs (closes [#1451](https://github-redirect.dependabot.com/visionmedia/superagent/issues/1451))
- [`1618f8d`](https://github.com/visionmedia/superagent/commit/1618f8db91246e50420d3e1bbdfb248d347b68dd) v5.0.0
- [`f0bcdc0`](https://github.com/visionmedia/superagent/commit/f0bcdc013f7ee79959cde0cbce5cd6baec866096) fix: removed core-js, fixed docs with async/await + then/catch usage
- [`2fd631a`](https://github.com/visionmedia/superagent/commit/2fd631ae225f4335fef37e9888925db0ef42d497) Merge pull request [#1473](https://github-redirect.dependabot.com/visionmedia/superagent/issues/1473) from ladjs/master
- Additional commits viewable in [compare view](https://github.com/visionmedia/superagent/compare/v2.3.0...v5.0.2)
Maintainer changes
This version was pushed to npm by [niftylettuce](https://www.npmjs.com/~niftylettuce), a new releaser for superagent since your current version.
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language
- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language
- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language
- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language
You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/stevenzeiler/namecheap-cli/network/alerts).
Bumps superagent from 2.3.0 to 5.0.2.
Release notes
*Sourced from [superagent's releases](https://github.com/visionmedia/superagent/releases).* > ## v5.0.2 > - fix: fixed browser require for webpack (closes [#1474](https://github-redirect.dependabot.com/visionmedia/superagent/issues/1474)) ccc7f56 > > https://github.com/visionmedia/superagent/compare/v5.0.1...v5.0.2 > > ## v5.0.1 > - fix: fixed http2 issue for older versions of node (closes [#1474](https://github-redirect.dependabot.com/visionmedia/superagent/issues/1474)) 5b86fd3 > - docs: fixed space f7e2ae5 > - docs: added superagent-declare (closes [#1333](https://github-redirect.dependabot.com/visionmedia/superagent/issues/1333)) 32fb630 > - docs: fixed docs (closes [#1451](https://github-redirect.dependabot.com/visionmedia/superagent/issues/1451)) 70df462 > > https://github.com/visionmedia/superagent/compare/v5.0.0...v5.0.1 > > ## v5.0.0 > - fix: removed core-js, fixed docs with async/await + then/catch usage f0bcdc0 > - Merge pull request [#1473](https://github-redirect.dependabot.com/visionmedia/superagent/issues/1473) from ladjs/master 2fd631a > - docs: removed line regarding 8.8.1 being required d22ebd7 > - feat: modern rewrite and refactoring 47f1d28 > - Merge pull request [#1468](https://github-redirect.dependabot.com/visionmedia/superagent/issues/1468) from bajtos/fix/formdata-error 076e55a > - Fix handling of FormData errors e6ffbde > - History formatting 0f0949f > - Merge pull request [#1377](https://github-redirect.dependabot.com/visionmedia/superagent/issues/1377) from eromano/master-2 f3ac20c > - Maintenance status [#1450](https://github-redirect.dependabot.com/visionmedia/superagent/issues/1450) ad4c96f > - clear timeout 100 percent e6630ec > - change after review 03e5efa > - add upload timeout 650b521 > > https://github.com/visionmedia/superagent/compare/v4.1.0...v5.0.0 > > ## IP overrides > > * `.connect()` IP/DNS override option (Kornel) > * `.trustLocalhost()` option for allowing broken HTTPS on `localhost` > * `.abort()` used with promises rejects the promise. > > ## v4 = ES6 natively > > ## Breaking changes > > * Node.js v4 has reached it's end of life, so we no longer support it. It's v6+ or later. We recommend Node.js 10. > * We now use ES6 in the browser code, too. > * If you're using Browserify or Webpack to package code for Internet Explorer, you will also have to use Babel. > * The pre-built node_modules/superagent.js is still ES5-compatible. > * `.end(…)` returns `undefined` instead of the request. If you need the request object after calling `.end()` (and you probably don't), save it in a variable and call `request.end(…)`. Consider not using `.end()` at all, and migrating to promises by calling `.then()` instead. > * In Node, responses with unknown MIME type are buffered by default. To get old behavior, if you use custom *unbuffered* parsers, add `.buffer(false)` to requests or set `superagent.buffer[yourMimeType] = false`. > * Invalid uses of `.pipe()` throw. > > ## Minor changes > > * Throw if `req.abort().end()` is called > ... (truncated)Changelog
*Sourced from [superagent's changelog](https://github.com/visionmedia/superagent/blob/master/HISTORY.md).* > # This HISTORY log is deprecated > > Please see [GitHub releases page](https://github.com/visionmedia/superagent/releases) for the current changelog. > > # 4.1.0 (2018-12-26) > > * `.connect()` IP/DNS override option (Kornel) > * `.trustLocalhost()` option for allowing broken HTTPS on `localhost` > * `.abort()` used with promises rejects the promise. > > # 4.0.0 (2018-11-17) > > ## Breaking changes > > * Node.js v4 has reached it's end of life, so we no longer support it. It's v6+ or later. We recommend Node.js 10. > * We now use ES6 in the browser code, too. > * If you're using Browserify or Webpack to package code for Internet Explorer, you will also have to use Babel. > * The pre-built node_modules/superagent.js is still ES5-compatible. > * `.end(…)` returns `undefined` instead of the request. If you need the request object after calling `.end()` (and you probably don't), save it in a variable and call `request.end(…)`. Consider not using `.end()` at all, and migrating to promises by calling `.then()` instead. > * In Node, responses with unknown MIME type are buffered by default. To get old behavior, if you use custom _unbuffered_ parsers, add `.buffer(false)` to requests or set `superagent.buffer[yourMimeType] = false`. > * Invalid uses of `.pipe()` throw. > > > ## Minor changes > > * Throw if `req.abort().end()` is called > * Throw if using unsupported mix of send and field > * Reject `.end()` promise on all error events (Kornel Lesiński) > * Set `https.servername` from the `Host` header (Kornel Lesiński) > * Leave backticks unencoded in query strings where possible (Ethan Resnick) > * Update node-mime to 2.x (Alexey Kucherenko) > * Allow default buffer settings based on response-type (shrey) > * `response.buffered` is more accurate. > > # 3.8.3 (2018-04-29) > > * Add flags for 201 & 422 responses (Nikhil Fadnis) > * Emit progress event while uploading Node `Buffer` via send method (Sergey Akhalkov) > * Fixed setting correct cookies for redirects (Damien Clark) > * Replace .catch with ['catch'] for IE9 Support (Miguel Stevens) > > # 3.8.2 (2017-12-09) > > * Fixed handling of exceptions thrown from callbacks > * Stricter matching of `+json` MIME types. > > # 3.8.1 (2017-11-08) > > * Clear authorization header on cross-domain redirect > > ... (truncated)Commits
- [`ed3e235`](https://github.com/visionmedia/superagent/commit/ed3e235878f675a9286d0c4480e971ed6cec9124) v5.0.2 - [`ccc7f56`](https://github.com/visionmedia/superagent/commit/ccc7f564f6db79f150f029d850a01452bc07f7e3) fix: fixed browser require for webpack (closes [#1474](https://github-redirect.dependabot.com/visionmedia/superagent/issues/1474)) - [`1de219e`](https://github.com/visionmedia/superagent/commit/1de219e512d0a123041a1b79956c1ee2cdf635fb) v5.0.1 - [`5b86fd3`](https://github.com/visionmedia/superagent/commit/5b86fd397264cb7b84634fa7ff00ad82214aa473) fix: fixed http2 issue for older versions of node (closes [#1474](https://github-redirect.dependabot.com/visionmedia/superagent/issues/1474)) - [`f7e2ae5`](https://github.com/visionmedia/superagent/commit/f7e2ae5cffd559b3f37756df46d271434eed818f) docs: fixed space - [`32fb630`](https://github.com/visionmedia/superagent/commit/32fb630c3db918c52638f256243cf0d42d3cba2b) docs: added superagent-declare (closes [#1333](https://github-redirect.dependabot.com/visionmedia/superagent/issues/1333)) - [`70df462`](https://github.com/visionmedia/superagent/commit/70df4625cdfe59371b9c6619d5f1d6ab0043e9ca) docs: fixed docs (closes [#1451](https://github-redirect.dependabot.com/visionmedia/superagent/issues/1451)) - [`1618f8d`](https://github.com/visionmedia/superagent/commit/1618f8db91246e50420d3e1bbdfb248d347b68dd) v5.0.0 - [`f0bcdc0`](https://github.com/visionmedia/superagent/commit/f0bcdc013f7ee79959cde0cbce5cd6baec866096) fix: removed core-js, fixed docs with async/await + then/catch usage - [`2fd631a`](https://github.com/visionmedia/superagent/commit/2fd631ae225f4335fef37e9888925db0ef42d497) Merge pull request [#1473](https://github-redirect.dependabot.com/visionmedia/superagent/issues/1473) from ladjs/master - Additional commits viewable in [compare view](https://github.com/visionmedia/superagent/compare/v2.3.0...v5.0.2)Maintainer changes
This version was pushed to npm by [niftylettuce](https://www.npmjs.com/~niftylettuce), a new releaser for superagent since your current version.Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase
.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/stevenzeiler/namecheap-cli/network/alerts).