Skip to content

Commit c0e0d83

Browse files
Version Packages (#171)
1 parent 1069932 commit c0e0d83

File tree

16 files changed

+83
-69
lines changed

16 files changed

+83
-69
lines changed

.changeset/seven-horses-buy.md

-5
This file was deleted.

.changeset/shiny-badgers-obey.md

-5
This file was deleted.

.changeset/tidy-jobs-refuse.md

-5
This file was deleted.

.changeset/unlucky-cows-listen.md

-5
This file was deleted.

packages/agent-base/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# agent-base
22

3+
## 7.0.2
4+
5+
### Patch Changes
6+
7+
- 66b4c63: Allow for never relying on stack trace
8+
39
## 7.0.1
410

511
### Patch Changes

packages/agent-base/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "agent-base",
3-
"version": "7.0.1",
3+
"version": "7.0.2",
44
"description": "Turn a function into an `http.Agent` instance",
55
"main": "./dist/index.js",
66
"types": "./dist/index.d.ts",

packages/http-proxy-agent/CHANGELOG.md

+14-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# http-proxy-agent
22

3+
## 6.1.0
4+
5+
### Minor Changes
6+
7+
- 1069932: Added "headers" option
8+
9+
### Patch Changes
10+
11+
- Updated dependencies [66b4c63]
12+
13+
314
## 6.0.1
415

516
### Patch Changes
@@ -20,11 +31,11 @@
2031
In version 5.x, the `HttpProxyAgent` constructor took a single argument of either (A) a `string`, or (B) an object matching the output of
2132
the [deprecated `url.parse()` method](https://nodejs.org/docs/latest-v14.x/api/url.html#url_url_parse_urlstring_parsequerystring_slashesdenotehost)
2233
_and_ various extra options.
23-
34+
2435
Now the constructor takes two _separate_ arguments:
2536

26-
* 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)
27-
* Argument 2 (optional): An object with standard [`http.Agent`](https://nodejs.org/docs/latest-v14.x/api/url.html#url_the_whatwg_url_api),
37+
- 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)
38+
- Argument 2 (optional): An object with standard [`http.Agent`](https://nodejs.org/docs/latest-v14.x/api/url.html#url_the_whatwg_url_api),
2839
`net.TcpNetConnectOpts`, and `tls.ConnectionOptions` properties.
2940

3041
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

packages/http-proxy-agent/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "http-proxy-agent",
3-
"version": "6.0.1",
3+
"version": "6.1.0",
44
"description": "An HTTP(s) proxy `http.Agent` implementation for HTTP",
55
"main": "./dist/index.js",
66
"types": "./dist/index.d.ts",
@@ -27,7 +27,7 @@
2727
"author": "Nathan Rajlich <[email protected]> (http://n8.io/)",
2828
"license": "MIT",
2929
"dependencies": {
30-
"agent-base": "^7.0.1",
30+
"agent-base": "^7.0.2",
3131
"debug": "^4.3.4"
3232
},
3333
"devDependencies": {

packages/https-proxy-agent/CHANGELOG.md

+14-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# https-proxy-agent
22

3+
## 6.2.0
4+
5+
### Minor Changes
6+
7+
- 8ff9faa: "headers" option can now be a function
8+
9+
### Patch Changes
10+
11+
- Updated dependencies [66b4c63]
12+
13+
314
## 6.1.0
415

516
### Minor Changes
@@ -25,11 +36,11 @@
2536
In version 5.x, the `HttpsProxyAgent` constructor took a single argument of either (A) a `string`, or (B) an object matching the output of
2637
the [deprecated `url.parse()` method](https://nodejs.org/docs/latest-v14.x/api/url.html#url_url_parse_urlstring_parsequerystring_slashesdenotehost)
2738
_and_ various extra options.
28-
39+
2940
Now the constructor takes two _separate_ arguments:
3041

31-
* 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)
32-
* Argument 2 (optional): An object with standard [`http.Agent`](https://nodejs.org/docs/latest-v14.x/api/url.html#url_the_whatwg_url_api),
42+
- 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)
43+
- Argument 2 (optional): An object with standard [`http.Agent`](https://nodejs.org/docs/latest-v14.x/api/url.html#url_the_whatwg_url_api),
3344
`net.TcpNetConnectOpts`, and `tls.ConnectionOptions` properties and/or custom options supported by this package.
3445

3546
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

packages/https-proxy-agent/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "https-proxy-agent",
3-
"version": "6.1.0",
3+
"version": "6.2.0",
44
"description": "An HTTP(s) proxy `http.Agent` implementation for HTTPS",
55
"main": "./dist/index.js",
66
"types": "./dist/index.d.ts",
@@ -28,7 +28,7 @@
2828
"author": "Nathan Rajlich <[email protected]> (http://n8.io/)",
2929
"license": "MIT",
3030
"dependencies": {
31-
"agent-base": "^7.0.1",
31+
"agent-base": "^7.0.2",
3232
"debug": "4"
3333
},
3434
"devDependencies": {

packages/pac-proxy-agent/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@
3131
"author": "Nathan Rajlich <[email protected]> (http://n8.io/)",
3232
"license": "MIT",
3333
"dependencies": {
34-
"agent-base": "^7.0.1",
34+
"agent-base": "^7.0.2",
3535
"debug": "^4.3.4",
3636
"get-uri": "^6.0.1",
37-
"http-proxy-agent": "^6.0.1",
38-
"https-proxy-agent": "^6.1.0",
37+
"http-proxy-agent": "^6.1.0",
38+
"https-proxy-agent": "^6.2.0",
3939
"pac-resolver": "^6.0.1",
4040
"socks-proxy-agent": "^8.0.1"
4141
},

packages/proxy-agent/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@
3232
"author": "Nathan Rajlich <[email protected]> (http://n8.io/)",
3333
"license": "MIT",
3434
"dependencies": {
35-
"agent-base": "^7.0.1",
35+
"agent-base": "^7.0.2",
3636
"debug": "^4.3.4",
37-
"http-proxy-agent": "^6.0.1",
38-
"https-proxy-agent": "^6.1.0",
37+
"http-proxy-agent": "^6.1.0",
38+
"https-proxy-agent": "^6.2.0",
3939
"lru-cache": "^7.14.1",
4040
"pac-proxy-agent": "^6.0.2",
4141
"proxy-from-env": "^1.1.0",

packages/proxy/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# proxy
22

3+
## 2.1.1
4+
5+
### Patch Changes
6+
7+
- 25e0c93: Ensure that `socket.remoteAddress` is a string
8+
39
## 2.1.0
410

511
### Minor Changes

packages/proxy/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "proxy",
3-
"version": "2.1.0",
3+
"version": "2.1.1",
44
"description": "An HTTP proxy written with Node.js (think Squid)",
55
"main": "./dist/proxy.js",
66
"types": "./dist/proxy.d.ts",

packages/socks-proxy-agent/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@
107107
"socks5h"
108108
],
109109
"dependencies": {
110-
"agent-base": "^7.0.1",
110+
"agent-base": "^7.0.2",
111111
"debug": "^4.3.4",
112112
"socks": "^2.7.1"
113113
},

pnpm-lock.yaml

+30-30
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)