-
Notifications
You must be signed in to change notification settings - Fork 241
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1069932
commit c0e0d83
Showing
16 changed files
with
83 additions
and
69 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,16 @@ | ||
# http-proxy-agent | ||
|
||
## 6.1.0 | ||
|
||
### Minor Changes | ||
|
||
- 1069932: Added "headers" option | ||
|
||
### Patch Changes | ||
|
||
- Updated dependencies [66b4c63] | ||
- [email protected] | ||
|
||
## 6.0.1 | ||
|
||
### Patch Changes | ||
|
@@ -20,11 +31,11 @@ | |
In version 5.x, the `HttpProxyAgent` constructor took a single argument of either (A) a `string`, or (B) an object matching the output of | ||
the [deprecated `url.parse()` method](https://nodejs.org/docs/latest-v14.x/api/url.html#url_url_parse_urlstring_parsequerystring_slashesdenotehost) | ||
_and_ various extra options. | ||
|
||
Now the constructor takes two _separate_ arguments: | ||
|
||
* Argument 1: Either (A) a `string`, or (B) a [WHATWG `URL` object](https://nodejs.org/docs/latest-v14.x/api/url.html#url_the_whatwg_url_api) | ||
* Argument 2 (optional): An object with standard [`http.Agent`](https://nodejs.org/docs/latest-v14.x/api/url.html#url_the_whatwg_url_api), | ||
- Argument 1: Either (A) a `string`, or (B) a [WHATWG `URL` object](https://nodejs.org/docs/latest-v14.x/api/url.html#url_the_whatwg_url_api) | ||
- Argument 2 (optional): An object with standard [`http.Agent`](https://nodejs.org/docs/latest-v14.x/api/url.html#url_the_whatwg_url_api), | ||
`net.TcpNetConnectOpts`, and `tls.ConnectionOptions` properties. | ||
|
||
If you were using an object argument in 5.x, you'll need to change the first argument to match the structure of the `URL` class, and move | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "http-proxy-agent", | ||
"version": "6.0.1", | ||
"version": "6.1.0", | ||
"description": "An HTTP(s) proxy `http.Agent` implementation for HTTP", | ||
"main": "./dist/index.js", | ||
"types": "./dist/index.d.ts", | ||
|
@@ -27,7 +27,7 @@ | |
"author": "Nathan Rajlich <[email protected]> (http://n8.io/)", | ||
"license": "MIT", | ||
"dependencies": { | ||
"agent-base": "^7.0.1", | ||
"agent-base": "^7.0.2", | ||
"debug": "^4.3.4" | ||
}, | ||
"devDependencies": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,16 @@ | ||
# https-proxy-agent | ||
|
||
## 6.2.0 | ||
|
||
### Minor Changes | ||
|
||
- 8ff9faa: "headers" option can now be a function | ||
|
||
### Patch Changes | ||
|
||
- Updated dependencies [66b4c63] | ||
- [email protected] | ||
|
||
## 6.1.0 | ||
|
||
### Minor Changes | ||
|
@@ -25,11 +36,11 @@ | |
In version 5.x, the `HttpsProxyAgent` constructor took a single argument of either (A) a `string`, or (B) an object matching the output of | ||
the [deprecated `url.parse()` method](https://nodejs.org/docs/latest-v14.x/api/url.html#url_url_parse_urlstring_parsequerystring_slashesdenotehost) | ||
_and_ various extra options. | ||
|
||
Now the constructor takes two _separate_ arguments: | ||
|
||
* Argument 1: Either (A) a `string`, or (B) a [WHATWG `URL` object](https://nodejs.org/docs/latest-v14.x/api/url.html#url_the_whatwg_url_api) | ||
* Argument 2 (optional): An object with standard [`http.Agent`](https://nodejs.org/docs/latest-v14.x/api/url.html#url_the_whatwg_url_api), | ||
- Argument 1: Either (A) a `string`, or (B) a [WHATWG `URL` object](https://nodejs.org/docs/latest-v14.x/api/url.html#url_the_whatwg_url_api) | ||
- Argument 2 (optional): An object with standard [`http.Agent`](https://nodejs.org/docs/latest-v14.x/api/url.html#url_the_whatwg_url_api), | ||
`net.TcpNetConnectOpts`, and `tls.ConnectionOptions` properties and/or custom options supported by this package. | ||
|
||
If you were using an object argument in 5.x, you'll need to change the first argument to match the structure of the `URL` class, and move | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "https-proxy-agent", | ||
"version": "6.1.0", | ||
"version": "6.2.0", | ||
"description": "An HTTP(s) proxy `http.Agent` implementation for HTTPS", | ||
"main": "./dist/index.js", | ||
"types": "./dist/index.d.ts", | ||
|
@@ -28,7 +28,7 @@ | |
"author": "Nathan Rajlich <[email protected]> (http://n8.io/)", | ||
"license": "MIT", | ||
"dependencies": { | ||
"agent-base": "^7.0.1", | ||
"agent-base": "^7.0.2", | ||
"debug": "4" | ||
}, | ||
"devDependencies": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,11 +31,11 @@ | |
"author": "Nathan Rajlich <[email protected]> (http://n8.io/)", | ||
"license": "MIT", | ||
"dependencies": { | ||
"agent-base": "^7.0.1", | ||
"agent-base": "^7.0.2", | ||
"debug": "^4.3.4", | ||
"get-uri": "^6.0.1", | ||
"http-proxy-agent": "^6.0.1", | ||
"https-proxy-agent": "^6.1.0", | ||
"http-proxy-agent": "^6.1.0", | ||
"https-proxy-agent": "^6.2.0", | ||
"pac-resolver": "^6.0.1", | ||
"socks-proxy-agent": "^8.0.1" | ||
}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,10 +32,10 @@ | |
"author": "Nathan Rajlich <[email protected]> (http://n8.io/)", | ||
"license": "MIT", | ||
"dependencies": { | ||
"agent-base": "^7.0.1", | ||
"agent-base": "^7.0.2", | ||
"debug": "^4.3.4", | ||
"http-proxy-agent": "^6.0.1", | ||
"https-proxy-agent": "^6.1.0", | ||
"http-proxy-agent": "^6.1.0", | ||
"https-proxy-agent": "^6.2.0", | ||
"lru-cache": "^7.14.1", | ||
"pac-proxy-agent": "^6.0.2", | ||
"proxy-from-env": "^1.1.0", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
c0e0d83
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
proxy-agents – ./
proxy-agents.vercel.app
proxy-agents-tootallnate.vercel.app
proxy-agents-git-main-tootallnate.vercel.app