Skip to content

Commit dd3b98f

Browse files
Version Packages (#238)
1 parent 1d39f6c commit dd3b98f

File tree

11 files changed

+85
-105
lines changed

11 files changed

+85
-105
lines changed

.changeset/eleven-bags-attend.md

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

.changeset/four-teachers-peel.md

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

packages/https-proxy-agent/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# https-proxy-agent
22

3+
## 7.0.2
4+
5+
### Patch Changes
6+
7+
- e625d10: Support SNI for proxy servers
8+
39
## 7.0.1
410

511
### Patch Changes

packages/https-proxy-agent/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "https-proxy-agent",
3-
"version": "7.0.1",
3+
"version": "7.0.2",
44
"description": "An HTTP(s) proxy `http.Agent` implementation for HTTPS",
55
"main": "./dist/index.js",
66
"types": "./dist/index.d.ts",

packages/pac-proxy-agent/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# pac-proxy-agent
22

3+
## 7.0.1
4+
5+
### Patch Changes
6+
7+
- 1d39f6c: Fix Electron support by using Node.js native URL object
8+
- Updated dependencies [1d39f6c]
9+
- Updated dependencies [e625d10]
10+
11+
12+
313
## 7.0.0
414

515
### Major Changes

packages/pac-proxy-agent/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pac-proxy-agent",
3-
"version": "7.0.0",
3+
"version": "7.0.1",
44
"description": "A PAC file proxy `http.Agent` implementation for HTTP",
55
"main": "./dist/index.js",
66
"types": "./dist/index.d.ts",
@@ -36,9 +36,9 @@
3636
"debug": "^4.3.4",
3737
"get-uri": "^6.0.1",
3838
"http-proxy-agent": "^7.0.0",
39-
"https-proxy-agent": "^7.0.0",
39+
"https-proxy-agent": "^7.0.2",
4040
"pac-resolver": "^7.0.0",
41-
"socks-proxy-agent": "^8.0.1"
41+
"socks-proxy-agent": "^8.0.2"
4242
},
4343
"devDependencies": {
4444
"@types/debug": "^4.1.7",

packages/proxy-agent/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# proxy-agent
22

3+
## 6.3.1
4+
5+
### Patch Changes
6+
7+
- 1d39f6c: Fix Electron support by using Node.js native URL object
8+
- Updated dependencies [1d39f6c]
9+
- Updated dependencies [e625d10]
10+
11+
12+
13+
314
## 6.3.0
415

516
### Minor Changes

packages/proxy-agent/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "proxy-agent",
3-
"version": "6.3.0",
3+
"version": "6.3.1",
44
"description": "Maps proxy protocols to `http.Agent` implementations",
55
"main": "./dist/index.js",
66
"types": "./dist/index.d.ts",
@@ -35,11 +35,11 @@
3535
"agent-base": "^7.0.2",
3636
"debug": "^4.3.4",
3737
"http-proxy-agent": "^7.0.0",
38-
"https-proxy-agent": "^7.0.0",
38+
"https-proxy-agent": "^7.0.2",
3939
"lru-cache": "^7.14.1",
40-
"pac-proxy-agent": "^7.0.0",
40+
"pac-proxy-agent": "^7.0.1",
4141
"proxy-from-env": "^1.1.0",
42-
"socks-proxy-agent": "^8.0.1"
42+
"socks-proxy-agent": "^8.0.2"
4343
},
4444
"devDependencies": {
4545
"@types/agent-base": "^4.2.0",

packages/socks-proxy-agent/CHANGELOG.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# socks-proxy-agent
22

3+
## 8.0.2
4+
5+
### Patch Changes
6+
7+
- 1d39f6c: Fix Electron support by using Node.js native URL object
8+
39
## 8.0.1
410

511
### Patch Changes
@@ -19,11 +25,11 @@
1925

2026
In version 5.x, the `SocksProxyAgent` constructor took a single argument of either (A) a `string`, or (B) an object with specific connection
2127
properties.
22-
28+
2329
Now the constructor takes two _separate_ arguments:
2430

25-
* 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)
26-
* Argument 2 (optional): An object with standard [`http.Agent`](https://nodejs.org/docs/latest-v14.x/api/url.html#url_the_whatwg_url_api)
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)
2733
properties.
2834

2935
If you were using an object argument in 7.x, you'll need to change the first argument to match the structure of the `URL` class, and move

packages/socks-proxy-agent/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "socks-proxy-agent",
3-
"version": "8.0.1",
3+
"version": "8.0.2",
44
"description": "A SOCKS proxy `http.Agent` implementation for HTTP and HTTPS",
55
"main": "./dist/index.js",
66
"types": "./dist/index.d.ts",

0 commit comments

Comments
 (0)