Skip to content

Commit

Permalink
chore(deps): lock file maintenance (#369)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate-cds[bot] <117288780+renovate-cds[bot]@users.noreply.github.com>
renovate-cds[bot] authored Sep 9, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent 2aa797a commit 8165355
Showing 3 changed files with 71 additions and 71 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
@@ -1902,7 +1902,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 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

138 changes: 69 additions & 69 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 8165355

Please sign in to comment.