Added missing changes and modified dist assets.

This commit is contained in:
GitHub Action 2024-08-26 02:19:46 +00:00 committed by renovate[bot]
parent bd7d572708
commit 696bea0add
2 changed files with 2 additions and 2 deletions

2
dist/index.js generated vendored
View File

@ -8729,7 +8729,7 @@ class HttpClient {
}
const usingSsl = parsedUrl.protocol === 'https:';
proxyAgent = new undici_1.ProxyAgent(Object.assign({ uri: proxyUrl.href, pipelining: !this._keepAlive ? 0 : 1 }, ((proxyUrl.username || proxyUrl.password) && {
token: `${proxyUrl.username}:${proxyUrl.password}`
token: `Basic ${Buffer.from(`${proxyUrl.username}:${proxyUrl.password}`).toString('base64')}`
})));
this._proxyAgentDispatcher = proxyAgent;
if (usingSsl && this._ignoreSslError) {

2
dist/index.js.map generated vendored

File diff suppressed because one or more lines are too long