Skip to content

Commit d8fa116

Browse files
committedJul 9, 2024
deps: https-proxy-agent@7.0.5
1 parent 76dab91 commit d8fa116

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed
 

‎node_modules/https-proxy-agent/dist/index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ class HttpsProxyAgent extends agent_base_1.Agent {
8585
const servername = this.connectOpts.servername || this.connectOpts.host;
8686
socket = tls.connect({
8787
...this.connectOpts,
88-
servername: servername && net.isIP(servername) ? undefined : servername,
88+
servername,
8989
});
9090
}
9191
else {
@@ -126,7 +126,7 @@ class HttpsProxyAgent extends agent_base_1.Agent {
126126
return tls.connect({
127127
...omit(opts, 'host', 'path', 'port'),
128128
socket,
129-
servername: net.isIP(servername) ? undefined : servername,
129+
servername,
130130
});
131131
}
132132
return socket;

‎node_modules/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": "7.0.4",
3+
"version": "7.0.5",
44
"description": "An HTTP(s) proxy `http.Agent` implementation for HTTPS",
55
"main": "./dist/index.js",
66
"types": "./dist/index.d.ts",
@@ -34,7 +34,7 @@
3434
"jest": "^29.5.0",
3535
"ts-jest": "^29.1.0",
3636
"typescript": "^5.0.4",
37-
"proxy": "2.1.1",
37+
"proxy": "2.2.0",
3838
"tsconfig": "0.0.0"
3939
},
4040
"engines": {

‎package-lock.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -6453,9 +6453,9 @@
64536453
}
64546454
},
64556455
"node_modules/https-proxy-agent": {
6456-
"version": "7.0.4",
6457-
"resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.4.tgz",
6458-
"integrity": "sha512-wlwpilI7YdjSkWaQ/7omYBMTliDcmCN8OLihO6I9B86g06lMyAoqgoDpV0XqoaPOKj+0DIdAvnsWfyAAhmimcg==",
6456+
"version": "7.0.5",
6457+
"resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.5.tgz",
6458+
"integrity": "sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw==",
64596459
"inBundle": true,
64606460
"license": "MIT",
64616461
"dependencies": {

0 commit comments

Comments
 (0)
Please sign in to comment.