Skip to content

Commit 65a2da6

Browse files
angular-robotjosephperrott
authored andcommitted
build: update all non-major dependencies (#2687)
PR Close #2687
1 parent f30f2e4 commit 65a2da6

File tree

12 files changed

+260
-168
lines changed

12 files changed

+260
-168
lines changed

.github/local-actions/branch-manager/main.js

Lines changed: 20 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -35615,7 +35615,7 @@ var require_util8 = __commonJS({
3561535615
var { InvalidArgumentError } = require_errors2();
3561635616
var { headerNameLowerCasedRecord } = require_constants7();
3561735617
var { tree } = require_tree();
35618-
var [nodeMajor, nodeMinor] = process.versions.node.split(".").map((v) => Number(v));
35618+
var [nodeMajor, nodeMinor] = process.versions.node.split(".", 2).map((v) => Number(v));
3561935619
var BodyAsyncIterable = class {
3562035620
constructor(body) {
3562135621
this[kBody] = body;
@@ -45018,7 +45018,7 @@ var require_mock_utils2 = __commonJS({
4501845018
if (typeof path4 !== "string") {
4501945019
return path4;
4502045020
}
45021-
const pathSegments = path4.split("?");
45021+
const pathSegments = path4.split("?", 3);
4502245022
if (pathSegments.length !== 2) {
4502345023
return path4;
4502445024
}
@@ -46716,6 +46716,15 @@ var require_cache2 = __commonJS({
4671646716
if (!opts.origin) {
4671746717
throw new Error("opts.origin is undefined");
4671846718
}
46719+
const headers = normaliseHeaders(opts);
46720+
return {
46721+
origin: opts.origin.toString(),
46722+
method: opts.method,
46723+
path: opts.path,
46724+
headers
46725+
};
46726+
}
46727+
function normaliseHeaders(opts) {
4671946728
let headers;
4672046729
if (opts.headers == null) {
4672146730
headers = {};
@@ -46739,12 +46748,7 @@ var require_cache2 = __commonJS({
4673946748
} else {
4674046749
throw new Error("opts.headers is not an object");
4674146750
}
46742-
return {
46743-
origin: opts.origin.toString(),
46744-
method: opts.method,
46745-
path: opts.path,
46746-
headers
46747-
};
46751+
return headers;
4674846752
}
4674946753
function assertCacheKey(key) {
4675046754
if (typeof key !== "object") {
@@ -46933,6 +46937,7 @@ var require_cache2 = __commonJS({
4693346937
}
4693446938
module.exports = {
4693546939
makeCacheKey,
46940+
normaliseHeaders,
4693646941
assertCacheKey,
4693746942
assertCacheValue,
4693846943
parseCacheControlHeader,
@@ -47615,7 +47620,7 @@ var require_cache3 = __commonJS({
4761547620
var CacheHandler = require_cache_handler();
4761647621
var MemoryCacheStore = require_memory_cache_store();
4761747622
var CacheRevalidationHandler = require_cache_revalidation_handler();
47618-
var { assertCacheStore, assertCacheMethods, makeCacheKey, parseCacheControlHeader } = require_cache2();
47623+
var { assertCacheStore, assertCacheMethods, makeCacheKey, normaliseHeaders, parseCacheControlHeader } = require_cache2();
4761947624
var { AbortError } = require_errors2();
4762047625
function needsRevalidation(result, cacheControlDirectives) {
4762147626
if (cacheControlDirectives == null ? void 0 : cacheControlDirectives["no-cache"]) {
@@ -47746,7 +47751,7 @@ var require_cache3 = __commonJS({
4774647751
withinStaleIfErrorThreshold = now < result.staleAt + staleIfErrorExpiry * 1e3;
4774747752
}
4774847753
let headers = {
47749-
...opts.headers,
47754+
...normaliseHeaders(opts),
4775047755
"if-modified-since": new Date(result.cachedAt).toUTCString()
4775147756
};
4775247757
if (result.etag) {
@@ -49840,7 +49845,9 @@ var require_fetch2 = __commonJS({
4984049845
originalURL.href,
4984149846
initiatorType,
4984249847
globalThis,
49843-
cacheState
49848+
cacheState,
49849+
"",
49850+
response.status
4984449851
);
4984549852
}
4984649853
var markResourceTiming = performance.markResourceTiming;
@@ -50129,7 +50136,7 @@ var require_fetch2 = __commonJS({
5012950136
fetchParams.controller.fullTimingInfo = timingInfo;
5013050137
}
5013150138
fetchParams.controller.reportTimingSteps = () => {
50132-
if (fetchParams.request.url.protocol !== "https:") {
50139+
if (!urlIsHttpHttpsScheme(fetchParams.request.url)) {
5013350140
return;
5013450141
}
5013550142
timingInfo.endTime = unsafeEndTime;
@@ -52155,7 +52162,7 @@ var require_util12 = __commonJS({
5215552162
const extensionList = /* @__PURE__ */ new Map();
5215652163
while (position.position < extensions.length) {
5215752164
const pair = collectASequenceOfCodePointsFast(";", extensions, position);
52158-
const [name, value = ""] = pair.split("=");
52165+
const [name, value = ""] = pair.split("=", 2);
5215952166
extensionList.set(
5216052167
removeHTTPWhitespace(name, true, false),
5216152168
removeHTTPWhitespace(value, false, true)

.github/local-actions/labels-sync/main.js

Lines changed: 20 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -20026,7 +20026,7 @@ var require_util8 = __commonJS({
2002620026
var { InvalidArgumentError } = require_errors2();
2002720027
var { headerNameLowerCasedRecord } = require_constants6();
2002820028
var { tree } = require_tree();
20029-
var [nodeMajor, nodeMinor] = process.versions.node.split(".").map((v) => Number(v));
20029+
var [nodeMajor, nodeMinor] = process.versions.node.split(".", 2).map((v) => Number(v));
2003020030
var BodyAsyncIterable = class {
2003120031
constructor(body) {
2003220032
this[kBody] = body;
@@ -29429,7 +29429,7 @@ var require_mock_utils2 = __commonJS({
2942929429
if (typeof path !== "string") {
2943029430
return path;
2943129431
}
29432-
const pathSegments = path.split("?");
29432+
const pathSegments = path.split("?", 3);
2943329433
if (pathSegments.length !== 2) {
2943429434
return path;
2943529435
}
@@ -31127,6 +31127,15 @@ var require_cache2 = __commonJS({
3112731127
if (!opts.origin) {
3112831128
throw new Error("opts.origin is undefined");
3112931129
}
31130+
const headers = normaliseHeaders(opts);
31131+
return {
31132+
origin: opts.origin.toString(),
31133+
method: opts.method,
31134+
path: opts.path,
31135+
headers
31136+
};
31137+
}
31138+
function normaliseHeaders(opts) {
3113031139
let headers;
3113131140
if (opts.headers == null) {
3113231141
headers = {};
@@ -31150,12 +31159,7 @@ var require_cache2 = __commonJS({
3115031159
} else {
3115131160
throw new Error("opts.headers is not an object");
3115231161
}
31153-
return {
31154-
origin: opts.origin.toString(),
31155-
method: opts.method,
31156-
path: opts.path,
31157-
headers
31158-
};
31162+
return headers;
3115931163
}
3116031164
function assertCacheKey(key) {
3116131165
if (typeof key !== "object") {
@@ -31344,6 +31348,7 @@ var require_cache2 = __commonJS({
3134431348
}
3134531349
module.exports = {
3134631350
makeCacheKey,
31351+
normaliseHeaders,
3134731352
assertCacheKey,
3134831353
assertCacheValue,
3134931354
parseCacheControlHeader,
@@ -32026,7 +32031,7 @@ var require_cache3 = __commonJS({
3202632031
var CacheHandler = require_cache_handler();
3202732032
var MemoryCacheStore = require_memory_cache_store();
3202832033
var CacheRevalidationHandler = require_cache_revalidation_handler();
32029-
var { assertCacheStore, assertCacheMethods, makeCacheKey, parseCacheControlHeader } = require_cache2();
32034+
var { assertCacheStore, assertCacheMethods, makeCacheKey, normaliseHeaders, parseCacheControlHeader } = require_cache2();
3203032035
var { AbortError } = require_errors2();
3203132036
function needsRevalidation(result, cacheControlDirectives) {
3203232037
if (cacheControlDirectives == null ? void 0 : cacheControlDirectives["no-cache"]) {
@@ -32157,7 +32162,7 @@ var require_cache3 = __commonJS({
3215732162
withinStaleIfErrorThreshold = now < result.staleAt + staleIfErrorExpiry * 1e3;
3215832163
}
3215932164
let headers = {
32160-
...opts.headers,
32165+
...normaliseHeaders(opts),
3216132166
"if-modified-since": new Date(result.cachedAt).toUTCString()
3216232167
};
3216332168
if (result.etag) {
@@ -34251,7 +34256,9 @@ var require_fetch2 = __commonJS({
3425134256
originalURL.href,
3425234257
initiatorType,
3425334258
globalThis,
34254-
cacheState
34259+
cacheState,
34260+
"",
34261+
response.status
3425534262
);
3425634263
}
3425734264
var markResourceTiming = performance.markResourceTiming;
@@ -34540,7 +34547,7 @@ var require_fetch2 = __commonJS({
3454034547
fetchParams.controller.fullTimingInfo = timingInfo;
3454134548
}
3454234549
fetchParams.controller.reportTimingSteps = () => {
34543-
if (fetchParams.request.url.protocol !== "https:") {
34550+
if (!urlIsHttpHttpsScheme(fetchParams.request.url)) {
3454434551
return;
3454534552
}
3454634553
timingInfo.endTime = unsafeEndTime;
@@ -36566,7 +36573,7 @@ var require_util12 = __commonJS({
3656636573
const extensionList = /* @__PURE__ */ new Map();
3656736574
while (position.position < extensions.length) {
3656836575
const pair = collectASequenceOfCodePointsFast(";", extensions, position);
36569-
const [name, value = ""] = pair.split("=");
36576+
const [name, value = ""] = pair.split("=", 2);
3657036577
extensionList.set(
3657136578
removeHTTPWhitespace(name, true, false),
3657236579
removeHTTPWhitespace(value, false, true)

.github/local-actions/lock-closed/main.js

Lines changed: 20 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -20026,7 +20026,7 @@ var require_util8 = __commonJS({
2002620026
var { InvalidArgumentError } = require_errors2();
2002720027
var { headerNameLowerCasedRecord } = require_constants6();
2002820028
var { tree } = require_tree();
20029-
var [nodeMajor, nodeMinor] = process.versions.node.split(".").map((v) => Number(v));
20029+
var [nodeMajor, nodeMinor] = process.versions.node.split(".", 2).map((v) => Number(v));
2003020030
var BodyAsyncIterable = class {
2003120031
constructor(body) {
2003220032
this[kBody] = body;
@@ -29429,7 +29429,7 @@ var require_mock_utils2 = __commonJS({
2942929429
if (typeof path !== "string") {
2943029430
return path;
2943129431
}
29432-
const pathSegments = path.split("?");
29432+
const pathSegments = path.split("?", 3);
2943329433
if (pathSegments.length !== 2) {
2943429434
return path;
2943529435
}
@@ -31127,6 +31127,15 @@ var require_cache2 = __commonJS({
3112731127
if (!opts.origin) {
3112831128
throw new Error("opts.origin is undefined");
3112931129
}
31130+
const headers = normaliseHeaders(opts);
31131+
return {
31132+
origin: opts.origin.toString(),
31133+
method: opts.method,
31134+
path: opts.path,
31135+
headers
31136+
};
31137+
}
31138+
function normaliseHeaders(opts) {
3113031139
let headers;
3113131140
if (opts.headers == null) {
3113231141
headers = {};
@@ -31150,12 +31159,7 @@ var require_cache2 = __commonJS({
3115031159
} else {
3115131160
throw new Error("opts.headers is not an object");
3115231161
}
31153-
return {
31154-
origin: opts.origin.toString(),
31155-
method: opts.method,
31156-
path: opts.path,
31157-
headers
31158-
};
31162+
return headers;
3115931163
}
3116031164
function assertCacheKey(key) {
3116131165
if (typeof key !== "object") {
@@ -31344,6 +31348,7 @@ var require_cache2 = __commonJS({
3134431348
}
3134531349
module.exports = {
3134631350
makeCacheKey,
31351+
normaliseHeaders,
3134731352
assertCacheKey,
3134831353
assertCacheValue,
3134931354
parseCacheControlHeader,
@@ -32026,7 +32031,7 @@ var require_cache3 = __commonJS({
3202632031
var CacheHandler = require_cache_handler();
3202732032
var MemoryCacheStore = require_memory_cache_store();
3202832033
var CacheRevalidationHandler = require_cache_revalidation_handler();
32029-
var { assertCacheStore, assertCacheMethods, makeCacheKey, parseCacheControlHeader } = require_cache2();
32034+
var { assertCacheStore, assertCacheMethods, makeCacheKey, normaliseHeaders, parseCacheControlHeader } = require_cache2();
3203032035
var { AbortError } = require_errors2();
3203132036
function needsRevalidation(result, cacheControlDirectives) {
3203232037
if (cacheControlDirectives == null ? void 0 : cacheControlDirectives["no-cache"]) {
@@ -32157,7 +32162,7 @@ var require_cache3 = __commonJS({
3215732162
withinStaleIfErrorThreshold = now < result.staleAt + staleIfErrorExpiry * 1e3;
3215832163
}
3215932164
let headers = {
32160-
...opts.headers,
32165+
...normaliseHeaders(opts),
3216132166
"if-modified-since": new Date(result.cachedAt).toUTCString()
3216232167
};
3216332168
if (result.etag) {
@@ -34251,7 +34256,9 @@ var require_fetch2 = __commonJS({
3425134256
originalURL.href,
3425234257
initiatorType,
3425334258
globalThis,
34254-
cacheState
34259+
cacheState,
34260+
"",
34261+
response.status
3425534262
);
3425634263
}
3425734264
var markResourceTiming = performance.markResourceTiming;
@@ -34540,7 +34547,7 @@ var require_fetch2 = __commonJS({
3454034547
fetchParams.controller.fullTimingInfo = timingInfo;
3454134548
}
3454234549
fetchParams.controller.reportTimingSteps = () => {
34543-
if (fetchParams.request.url.protocol !== "https:") {
34550+
if (!urlIsHttpHttpsScheme(fetchParams.request.url)) {
3454434551
return;
3454534552
}
3454634553
timingInfo.endTime = unsafeEndTime;
@@ -36566,7 +36573,7 @@ var require_util12 = __commonJS({
3656636573
const extensionList = /* @__PURE__ */ new Map();
3656736574
while (position.position < extensions.length) {
3656836575
const pair = collectASequenceOfCodePointsFast(";", extensions, position);
36569-
const [name, value = ""] = pair.split("=");
36576+
const [name, value = ""] = pair.split("=", 2);
3657036577
extensionList.set(
3657136578
removeHTTPWhitespace(name, true, false),
3657236579
removeHTTPWhitespace(value, false, true)

0 commit comments

Comments
 (0)