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

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/shiny-badgers-obey.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/tidy-jobs-refuse.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/unlucky-cows-listen.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

packages/agent-base/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 14 additions & 3 deletions
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

Lines changed: 2 additions & 2 deletions
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

Lines changed: 14 additions & 3 deletions
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

Lines changed: 2 additions & 2 deletions
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": {

0 commit comments

Comments
 (0)