Skip to content

Commit add3486

Browse files
authored
Patch to fix the dependbot alert. (#744)
* Patch to fix the dependbot alert. * . * . * .
1 parent 5126516 commit add3486

File tree

6 files changed

+42
-16
lines changed

6 files changed

+42
-16
lines changed

.licenses/npm/node-fetch.dep.yml

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js

+29-3
Original file line numberDiff line numberDiff line change
@@ -10195,7 +10195,7 @@ Object.defineProperty(Response.prototype, Symbol.toStringTag, {
1019510195
});
1019610196

1019710197
const INTERNALS$2 = Symbol('Request internals');
10198-
const URL = whatwgUrl.URL;
10198+
const URL = Url.URL || whatwgUrl.URL;
1019910199

1020010200
// fix an issue where "format", "parse" aren't a named export for node <10
1020110201
const parse_url = Url.parse;
@@ -10458,9 +10458,17 @@ AbortError.prototype = Object.create(Error.prototype);
1045810458
AbortError.prototype.constructor = AbortError;
1045910459
AbortError.prototype.name = 'AbortError';
1046010460

10461+
const URL$1 = Url.URL || whatwgUrl.URL;
10462+
1046110463
// fix an issue where "PassThrough", "resolve" aren't a named export for node <10
1046210464
const PassThrough$1 = Stream.PassThrough;
10463-
const resolve_url = Url.resolve;
10465+
10466+
const isDomainOrSubdomain = function isDomainOrSubdomain(destination, original) {
10467+
const orig = new URL$1(original).hostname;
10468+
const dest = new URL$1(destination).hostname;
10469+
10470+
return orig === dest || orig[orig.length - dest.length - 1] === '.' && orig.endsWith(dest);
10471+
};
1046410472

1046510473
/**
1046610474
* Fetch function
@@ -10548,7 +10556,19 @@ function fetch(url, opts) {
1054810556
const location = headers.get('Location');
1054910557

1055010558
// HTTP fetch step 5.3
10551-
const locationURL = location === null ? null : resolve_url(request.url, location);
10559+
let locationURL = null;
10560+
try {
10561+
locationURL = location === null ? null : new URL$1(location, request.url).toString();
10562+
} catch (err) {
10563+
// error here can only be invalid URL in Location: header
10564+
// do not throw when options.redirect == manual
10565+
// let the user extract the errorneous redirect URL
10566+
if (request.redirect !== 'manual') {
10567+
reject(new FetchError(`uri requested responds with an invalid redirect URL: ${location}`, 'invalid-redirect'));
10568+
finalize();
10569+
return;
10570+
}
10571+
}
1055210572

1055310573
// HTTP fetch step 5.5
1055410574
switch (request.redirect) {
@@ -10596,6 +10616,12 @@ function fetch(url, opts) {
1059610616
size: request.size
1059710617
};
1059810618

10619+
if (!isDomainOrSubdomain(request.url, locationURL)) {
10620+
for (const name of ['authorization', 'www-authenticate', 'cookie', 'cookie2']) {
10621+
requestOpts.headers.delete(name);
10622+
}
10623+
}
10624+
1059910625
// HTTP-redirect fetch step 9
1060010626
if (res.statusCode !== 303 && request.body && getTotalBytes(request) === null) {
1060110627
reject(new FetchError('Cannot follow redirect with body being a readable stream', 'unsupported-redirect'));

package-lock.json

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/misc/licensed-check.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ set -e
55
src/misc/licensed-download.sh
66

77
echo 'Running: licensed cached'
8-
_temp/licensed-3.3.1/licensed status
8+
_temp/licensed-3.6.0/licensed status

src/misc/licensed-download.sh

+7-7
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,23 @@
22

33
set -e
44

5-
if [ ! -f _temp/licensed-3.3.1.done ]; then
5+
if [ ! -f _temp/licensed-3.6.0.done ]; then
66
echo 'Clearing temp'
7-
rm -rf _temp/licensed-3.3.1 || true
7+
rm -rf _temp/licensed-3.6.0 || true
88

99
echo 'Downloading licensed'
10-
mkdir -p _temp/licensed-3.3.1
11-
pushd _temp/licensed-3.3.1
10+
mkdir -p _temp/licensed-3.6.0
11+
pushd _temp/licensed-3.6.0
1212
if [[ "$OSTYPE" == "darwin"* ]]; then
13-
curl -Lfs -o licensed.tar.gz https://github.com/github/licensed/releases/download/3.3.1/licensed-3.3.1-darwin-x64.tar.gz
13+
curl -Lfs -o licensed.tar.gz https://github.com/github/licensed/releases/download/3.6.0/licensed-3.6.0-darwin-x64.tar.gz
1414
else
15-
curl -Lfs -o licensed.tar.gz https://github.com/github/licensed/releases/download/3.3.1/licensed-3.3.1-linux-x64.tar.gz
15+
curl -Lfs -o licensed.tar.gz https://github.com/github/licensed/releases/download/3.6.0/licensed-3.6.0-linux-x64.tar.gz
1616
fi
1717

1818
echo 'Extracting licenesed'
1919
tar -xzf licensed.tar.gz
2020
popd
21-
touch _temp/licensed-3.3.1.done
21+
touch _temp/licensed-3.6.0.done
2222
else
2323
echo 'Licensed already downloaded'
2424
fi

src/misc/licensed-generate.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ set -e
55
src/misc/licensed-download.sh
66

77
echo 'Running: licensed cached'
8-
_temp/licensed-3.3.1/licensed cache
8+
_temp/licensed-3.6.0/licensed cache

0 commit comments

Comments
 (0)