diff --git a/.github/local-actions/branch-manager/main.js b/.github/local-actions/branch-manager/main.js index e733d9fd6..f7c600d52 100644 --- a/.github/local-actions/branch-manager/main.js +++ b/.github/local-actions/branch-manager/main.js @@ -35615,7 +35615,7 @@ var require_util8 = __commonJS({ var { InvalidArgumentError } = require_errors2(); var { headerNameLowerCasedRecord } = require_constants7(); var { tree } = require_tree(); - var [nodeMajor, nodeMinor] = process.versions.node.split(".").map((v) => Number(v)); + var [nodeMajor, nodeMinor] = process.versions.node.split(".", 2).map((v) => Number(v)); var BodyAsyncIterable = class { constructor(body) { this[kBody] = body; @@ -45018,7 +45018,7 @@ var require_mock_utils2 = __commonJS({ if (typeof path4 !== "string") { return path4; } - const pathSegments = path4.split("?"); + const pathSegments = path4.split("?", 3); if (pathSegments.length !== 2) { return path4; } @@ -46716,6 +46716,15 @@ var require_cache2 = __commonJS({ if (!opts.origin) { throw new Error("opts.origin is undefined"); } + const headers = normaliseHeaders(opts); + return { + origin: opts.origin.toString(), + method: opts.method, + path: opts.path, + headers + }; + } + function normaliseHeaders(opts) { let headers; if (opts.headers == null) { headers = {}; @@ -46739,12 +46748,7 @@ var require_cache2 = __commonJS({ } else { throw new Error("opts.headers is not an object"); } - return { - origin: opts.origin.toString(), - method: opts.method, - path: opts.path, - headers - }; + return headers; } function assertCacheKey(key) { if (typeof key !== "object") { @@ -46933,6 +46937,7 @@ var require_cache2 = __commonJS({ } module.exports = { makeCacheKey, + normaliseHeaders, assertCacheKey, assertCacheValue, parseCacheControlHeader, @@ -47615,7 +47620,7 @@ var require_cache3 = __commonJS({ var CacheHandler = require_cache_handler(); var MemoryCacheStore = require_memory_cache_store(); var CacheRevalidationHandler = require_cache_revalidation_handler(); - var { assertCacheStore, assertCacheMethods, makeCacheKey, parseCacheControlHeader } = require_cache2(); + var { assertCacheStore, assertCacheMethods, makeCacheKey, normaliseHeaders, parseCacheControlHeader } = require_cache2(); var { AbortError } = require_errors2(); function needsRevalidation(result, cacheControlDirectives) { if (cacheControlDirectives == null ? void 0 : cacheControlDirectives["no-cache"]) { @@ -47746,7 +47751,7 @@ var require_cache3 = __commonJS({ withinStaleIfErrorThreshold = now < result.staleAt + staleIfErrorExpiry * 1e3; } let headers = { - ...opts.headers, + ...normaliseHeaders(opts), "if-modified-since": new Date(result.cachedAt).toUTCString() }; if (result.etag) { @@ -49840,7 +49845,9 @@ var require_fetch2 = __commonJS({ originalURL.href, initiatorType, globalThis, - cacheState + cacheState, + "", + response.status ); } var markResourceTiming = performance.markResourceTiming; @@ -50129,7 +50136,7 @@ var require_fetch2 = __commonJS({ fetchParams.controller.fullTimingInfo = timingInfo; } fetchParams.controller.reportTimingSteps = () => { - if (fetchParams.request.url.protocol !== "https:") { + if (!urlIsHttpHttpsScheme(fetchParams.request.url)) { return; } timingInfo.endTime = unsafeEndTime; @@ -52155,7 +52162,7 @@ var require_util12 = __commonJS({ const extensionList = /* @__PURE__ */ new Map(); while (position.position < extensions.length) { const pair = collectASequenceOfCodePointsFast(";", extensions, position); - const [name, value = ""] = pair.split("="); + const [name, value = ""] = pair.split("=", 2); extensionList.set( removeHTTPWhitespace(name, true, false), removeHTTPWhitespace(value, false, true) diff --git a/.github/local-actions/labels-sync/main.js b/.github/local-actions/labels-sync/main.js index a736349d0..1cc9811e6 100644 --- a/.github/local-actions/labels-sync/main.js +++ b/.github/local-actions/labels-sync/main.js @@ -20026,7 +20026,7 @@ var require_util8 = __commonJS({ var { InvalidArgumentError } = require_errors2(); var { headerNameLowerCasedRecord } = require_constants6(); var { tree } = require_tree(); - var [nodeMajor, nodeMinor] = process.versions.node.split(".").map((v) => Number(v)); + var [nodeMajor, nodeMinor] = process.versions.node.split(".", 2).map((v) => Number(v)); var BodyAsyncIterable = class { constructor(body) { this[kBody] = body; @@ -29429,7 +29429,7 @@ var require_mock_utils2 = __commonJS({ if (typeof path !== "string") { return path; } - const pathSegments = path.split("?"); + const pathSegments = path.split("?", 3); if (pathSegments.length !== 2) { return path; } @@ -31127,6 +31127,15 @@ var require_cache2 = __commonJS({ if (!opts.origin) { throw new Error("opts.origin is undefined"); } + const headers = normaliseHeaders(opts); + return { + origin: opts.origin.toString(), + method: opts.method, + path: opts.path, + headers + }; + } + function normaliseHeaders(opts) { let headers; if (opts.headers == null) { headers = {}; @@ -31150,12 +31159,7 @@ var require_cache2 = __commonJS({ } else { throw new Error("opts.headers is not an object"); } - return { - origin: opts.origin.toString(), - method: opts.method, - path: opts.path, - headers - }; + return headers; } function assertCacheKey(key) { if (typeof key !== "object") { @@ -31344,6 +31348,7 @@ var require_cache2 = __commonJS({ } module.exports = { makeCacheKey, + normaliseHeaders, assertCacheKey, assertCacheValue, parseCacheControlHeader, @@ -32026,7 +32031,7 @@ var require_cache3 = __commonJS({ var CacheHandler = require_cache_handler(); var MemoryCacheStore = require_memory_cache_store(); var CacheRevalidationHandler = require_cache_revalidation_handler(); - var { assertCacheStore, assertCacheMethods, makeCacheKey, parseCacheControlHeader } = require_cache2(); + var { assertCacheStore, assertCacheMethods, makeCacheKey, normaliseHeaders, parseCacheControlHeader } = require_cache2(); var { AbortError } = require_errors2(); function needsRevalidation(result, cacheControlDirectives) { if (cacheControlDirectives == null ? void 0 : cacheControlDirectives["no-cache"]) { @@ -32157,7 +32162,7 @@ var require_cache3 = __commonJS({ withinStaleIfErrorThreshold = now < result.staleAt + staleIfErrorExpiry * 1e3; } let headers = { - ...opts.headers, + ...normaliseHeaders(opts), "if-modified-since": new Date(result.cachedAt).toUTCString() }; if (result.etag) { @@ -34251,7 +34256,9 @@ var require_fetch2 = __commonJS({ originalURL.href, initiatorType, globalThis, - cacheState + cacheState, + "", + response.status ); } var markResourceTiming = performance.markResourceTiming; @@ -34540,7 +34547,7 @@ var require_fetch2 = __commonJS({ fetchParams.controller.fullTimingInfo = timingInfo; } fetchParams.controller.reportTimingSteps = () => { - if (fetchParams.request.url.protocol !== "https:") { + if (!urlIsHttpHttpsScheme(fetchParams.request.url)) { return; } timingInfo.endTime = unsafeEndTime; @@ -36566,7 +36573,7 @@ var require_util12 = __commonJS({ const extensionList = /* @__PURE__ */ new Map(); while (position.position < extensions.length) { const pair = collectASequenceOfCodePointsFast(";", extensions, position); - const [name, value = ""] = pair.split("="); + const [name, value = ""] = pair.split("=", 2); extensionList.set( removeHTTPWhitespace(name, true, false), removeHTTPWhitespace(value, false, true) diff --git a/.github/local-actions/lock-closed/main.js b/.github/local-actions/lock-closed/main.js index a9930ba67..772f36ec1 100644 --- a/.github/local-actions/lock-closed/main.js +++ b/.github/local-actions/lock-closed/main.js @@ -20026,7 +20026,7 @@ var require_util8 = __commonJS({ var { InvalidArgumentError } = require_errors2(); var { headerNameLowerCasedRecord } = require_constants6(); var { tree } = require_tree(); - var [nodeMajor, nodeMinor] = process.versions.node.split(".").map((v) => Number(v)); + var [nodeMajor, nodeMinor] = process.versions.node.split(".", 2).map((v) => Number(v)); var BodyAsyncIterable = class { constructor(body) { this[kBody] = body; @@ -29429,7 +29429,7 @@ var require_mock_utils2 = __commonJS({ if (typeof path !== "string") { return path; } - const pathSegments = path.split("?"); + const pathSegments = path.split("?", 3); if (pathSegments.length !== 2) { return path; } @@ -31127,6 +31127,15 @@ var require_cache2 = __commonJS({ if (!opts.origin) { throw new Error("opts.origin is undefined"); } + const headers = normaliseHeaders(opts); + return { + origin: opts.origin.toString(), + method: opts.method, + path: opts.path, + headers + }; + } + function normaliseHeaders(opts) { let headers; if (opts.headers == null) { headers = {}; @@ -31150,12 +31159,7 @@ var require_cache2 = __commonJS({ } else { throw new Error("opts.headers is not an object"); } - return { - origin: opts.origin.toString(), - method: opts.method, - path: opts.path, - headers - }; + return headers; } function assertCacheKey(key) { if (typeof key !== "object") { @@ -31344,6 +31348,7 @@ var require_cache2 = __commonJS({ } module.exports = { makeCacheKey, + normaliseHeaders, assertCacheKey, assertCacheValue, parseCacheControlHeader, @@ -32026,7 +32031,7 @@ var require_cache3 = __commonJS({ var CacheHandler = require_cache_handler(); var MemoryCacheStore = require_memory_cache_store(); var CacheRevalidationHandler = require_cache_revalidation_handler(); - var { assertCacheStore, assertCacheMethods, makeCacheKey, parseCacheControlHeader } = require_cache2(); + var { assertCacheStore, assertCacheMethods, makeCacheKey, normaliseHeaders, parseCacheControlHeader } = require_cache2(); var { AbortError } = require_errors2(); function needsRevalidation(result, cacheControlDirectives) { if (cacheControlDirectives == null ? void 0 : cacheControlDirectives["no-cache"]) { @@ -32157,7 +32162,7 @@ var require_cache3 = __commonJS({ withinStaleIfErrorThreshold = now < result.staleAt + staleIfErrorExpiry * 1e3; } let headers = { - ...opts.headers, + ...normaliseHeaders(opts), "if-modified-since": new Date(result.cachedAt).toUTCString() }; if (result.etag) { @@ -34251,7 +34256,9 @@ var require_fetch2 = __commonJS({ originalURL.href, initiatorType, globalThis, - cacheState + cacheState, + "", + response.status ); } var markResourceTiming = performance.markResourceTiming; @@ -34540,7 +34547,7 @@ var require_fetch2 = __commonJS({ fetchParams.controller.fullTimingInfo = timingInfo; } fetchParams.controller.reportTimingSteps = () => { - if (fetchParams.request.url.protocol !== "https:") { + if (!urlIsHttpHttpsScheme(fetchParams.request.url)) { return; } timingInfo.endTime = unsafeEndTime; @@ -36566,7 +36573,7 @@ var require_util12 = __commonJS({ const extensionList = /* @__PURE__ */ new Map(); while (position.position < extensions.length) { const pair = collectASequenceOfCodePointsFast(";", extensions, position); - const [name, value = ""] = pair.split("="); + const [name, value = ""] = pair.split("=", 2); extensionList.set( removeHTTPWhitespace(name, true, false), removeHTTPWhitespace(value, false, true) diff --git a/github-actions/branch-manager/main.js b/github-actions/branch-manager/main.js index 5b8895849..1348f19f2 100644 --- a/github-actions/branch-manager/main.js +++ b/github-actions/branch-manager/main.js @@ -20026,7 +20026,7 @@ var require_util8 = __commonJS({ var { InvalidArgumentError } = require_errors2(); var { headerNameLowerCasedRecord } = require_constants6(); var { tree } = require_tree(); - var [nodeMajor, nodeMinor] = process.versions.node.split(".").map((v) => Number(v)); + var [nodeMajor, nodeMinor] = process.versions.node.split(".", 2).map((v) => Number(v)); var BodyAsyncIterable = class { constructor(body) { this[kBody] = body; @@ -29429,7 +29429,7 @@ var require_mock_utils2 = __commonJS({ if (typeof path !== "string") { return path; } - const pathSegments = path.split("?"); + const pathSegments = path.split("?", 3); if (pathSegments.length !== 2) { return path; } @@ -31127,6 +31127,15 @@ var require_cache2 = __commonJS({ if (!opts.origin) { throw new Error("opts.origin is undefined"); } + const headers = normaliseHeaders(opts); + return { + origin: opts.origin.toString(), + method: opts.method, + path: opts.path, + headers + }; + } + function normaliseHeaders(opts) { let headers; if (opts.headers == null) { headers = {}; @@ -31150,12 +31159,7 @@ var require_cache2 = __commonJS({ } else { throw new Error("opts.headers is not an object"); } - return { - origin: opts.origin.toString(), - method: opts.method, - path: opts.path, - headers - }; + return headers; } function assertCacheKey(key) { if (typeof key !== "object") { @@ -31344,6 +31348,7 @@ var require_cache2 = __commonJS({ } module.exports = { makeCacheKey, + normaliseHeaders, assertCacheKey, assertCacheValue, parseCacheControlHeader, @@ -32026,7 +32031,7 @@ var require_cache3 = __commonJS({ var CacheHandler = require_cache_handler(); var MemoryCacheStore = require_memory_cache_store(); var CacheRevalidationHandler = require_cache_revalidation_handler(); - var { assertCacheStore, assertCacheMethods, makeCacheKey, parseCacheControlHeader } = require_cache2(); + var { assertCacheStore, assertCacheMethods, makeCacheKey, normaliseHeaders, parseCacheControlHeader } = require_cache2(); var { AbortError } = require_errors2(); function needsRevalidation(result, cacheControlDirectives) { if (cacheControlDirectives == null ? void 0 : cacheControlDirectives["no-cache"]) { @@ -32157,7 +32162,7 @@ var require_cache3 = __commonJS({ withinStaleIfErrorThreshold = now < result.staleAt + staleIfErrorExpiry * 1e3; } let headers = { - ...opts.headers, + ...normaliseHeaders(opts), "if-modified-since": new Date(result.cachedAt).toUTCString() }; if (result.etag) { @@ -34251,7 +34256,9 @@ var require_fetch2 = __commonJS({ originalURL.href, initiatorType, globalThis, - cacheState + cacheState, + "", + response.status ); } var markResourceTiming = performance.markResourceTiming; @@ -34540,7 +34547,7 @@ var require_fetch2 = __commonJS({ fetchParams.controller.fullTimingInfo = timingInfo; } fetchParams.controller.reportTimingSteps = () => { - if (fetchParams.request.url.protocol !== "https:") { + if (!urlIsHttpHttpsScheme(fetchParams.request.url)) { return; } timingInfo.endTime = unsafeEndTime; @@ -36566,7 +36573,7 @@ var require_util12 = __commonJS({ const extensionList = /* @__PURE__ */ new Map(); while (position.position < extensions.length) { const pair = collectASequenceOfCodePointsFast(";", extensions, position); - const [name, value = ""] = pair.split("="); + const [name, value = ""] = pair.split("=", 2); extensionList.set( removeHTTPWhitespace(name, true, false), removeHTTPWhitespace(value, false, true) diff --git a/github-actions/commit-message-based-labels/main.js b/github-actions/commit-message-based-labels/main.js index 8795e3ce1..ac7125c60 100644 --- a/github-actions/commit-message-based-labels/main.js +++ b/github-actions/commit-message-based-labels/main.js @@ -20026,7 +20026,7 @@ var require_util8 = __commonJS({ var { InvalidArgumentError } = require_errors2(); var { headerNameLowerCasedRecord } = require_constants6(); var { tree } = require_tree(); - var [nodeMajor, nodeMinor] = process.versions.node.split(".").map((v) => Number(v)); + var [nodeMajor, nodeMinor] = process.versions.node.split(".", 2).map((v) => Number(v)); var BodyAsyncIterable = class { constructor(body) { this[kBody] = body; @@ -29429,7 +29429,7 @@ var require_mock_utils2 = __commonJS({ if (typeof path !== "string") { return path; } - const pathSegments = path.split("?"); + const pathSegments = path.split("?", 3); if (pathSegments.length !== 2) { return path; } @@ -31127,6 +31127,15 @@ var require_cache2 = __commonJS({ if (!opts.origin) { throw new Error("opts.origin is undefined"); } + const headers = normaliseHeaders(opts); + return { + origin: opts.origin.toString(), + method: opts.method, + path: opts.path, + headers + }; + } + function normaliseHeaders(opts) { let headers; if (opts.headers == null) { headers = {}; @@ -31150,12 +31159,7 @@ var require_cache2 = __commonJS({ } else { throw new Error("opts.headers is not an object"); } - return { - origin: opts.origin.toString(), - method: opts.method, - path: opts.path, - headers - }; + return headers; } function assertCacheKey(key) { if (typeof key !== "object") { @@ -31344,6 +31348,7 @@ var require_cache2 = __commonJS({ } module.exports = { makeCacheKey, + normaliseHeaders, assertCacheKey, assertCacheValue, parseCacheControlHeader, @@ -32026,7 +32031,7 @@ var require_cache3 = __commonJS({ var CacheHandler = require_cache_handler(); var MemoryCacheStore = require_memory_cache_store(); var CacheRevalidationHandler = require_cache_revalidation_handler(); - var { assertCacheStore, assertCacheMethods, makeCacheKey, parseCacheControlHeader } = require_cache2(); + var { assertCacheStore, assertCacheMethods, makeCacheKey, normaliseHeaders, parseCacheControlHeader } = require_cache2(); var { AbortError } = require_errors2(); function needsRevalidation(result, cacheControlDirectives) { if (cacheControlDirectives == null ? void 0 : cacheControlDirectives["no-cache"]) { @@ -32157,7 +32162,7 @@ var require_cache3 = __commonJS({ withinStaleIfErrorThreshold = now < result.staleAt + staleIfErrorExpiry * 1e3; } let headers = { - ...opts.headers, + ...normaliseHeaders(opts), "if-modified-since": new Date(result.cachedAt).toUTCString() }; if (result.etag) { @@ -34251,7 +34256,9 @@ var require_fetch2 = __commonJS({ originalURL.href, initiatorType, globalThis, - cacheState + cacheState, + "", + response.status ); } var markResourceTiming = performance.markResourceTiming; @@ -34540,7 +34547,7 @@ var require_fetch2 = __commonJS({ fetchParams.controller.fullTimingInfo = timingInfo; } fetchParams.controller.reportTimingSteps = () => { - if (fetchParams.request.url.protocol !== "https:") { + if (!urlIsHttpHttpsScheme(fetchParams.request.url)) { return; } timingInfo.endTime = unsafeEndTime; @@ -36566,7 +36573,7 @@ var require_util12 = __commonJS({ const extensionList = /* @__PURE__ */ new Map(); while (position.position < extensions.length) { const pair = collectASequenceOfCodePointsFast(";", extensions, position); - const [name, value = ""] = pair.split("="); + const [name, value = ""] = pair.split("=", 2); extensionList.set( removeHTTPWhitespace(name, true, false), removeHTTPWhitespace(value, false, true) diff --git a/github-actions/create-pr-for-changes/main.js b/github-actions/create-pr-for-changes/main.js index e54f28a5f..88c991018 100644 --- a/github-actions/create-pr-for-changes/main.js +++ b/github-actions/create-pr-for-changes/main.js @@ -20026,7 +20026,7 @@ var require_util8 = __commonJS({ var { InvalidArgumentError } = require_errors2(); var { headerNameLowerCasedRecord } = require_constants6(); var { tree } = require_tree(); - var [nodeMajor, nodeMinor] = process.versions.node.split(".").map((v) => Number(v)); + var [nodeMajor, nodeMinor] = process.versions.node.split(".", 2).map((v) => Number(v)); var BodyAsyncIterable = class { constructor(body) { this[kBody] = body; @@ -29429,7 +29429,7 @@ var require_mock_utils2 = __commonJS({ if (typeof path !== "string") { return path; } - const pathSegments = path.split("?"); + const pathSegments = path.split("?", 3); if (pathSegments.length !== 2) { return path; } @@ -31127,6 +31127,15 @@ var require_cache2 = __commonJS({ if (!opts.origin) { throw new Error("opts.origin is undefined"); } + const headers = normaliseHeaders(opts); + return { + origin: opts.origin.toString(), + method: opts.method, + path: opts.path, + headers + }; + } + function normaliseHeaders(opts) { let headers; if (opts.headers == null) { headers = {}; @@ -31150,12 +31159,7 @@ var require_cache2 = __commonJS({ } else { throw new Error("opts.headers is not an object"); } - return { - origin: opts.origin.toString(), - method: opts.method, - path: opts.path, - headers - }; + return headers; } function assertCacheKey(key) { if (typeof key !== "object") { @@ -31344,6 +31348,7 @@ var require_cache2 = __commonJS({ } module.exports = { makeCacheKey, + normaliseHeaders, assertCacheKey, assertCacheValue, parseCacheControlHeader, @@ -32026,7 +32031,7 @@ var require_cache3 = __commonJS({ var CacheHandler = require_cache_handler(); var MemoryCacheStore = require_memory_cache_store(); var CacheRevalidationHandler = require_cache_revalidation_handler(); - var { assertCacheStore, assertCacheMethods, makeCacheKey, parseCacheControlHeader } = require_cache2(); + var { assertCacheStore, assertCacheMethods, makeCacheKey, normaliseHeaders, parseCacheControlHeader } = require_cache2(); var { AbortError } = require_errors2(); function needsRevalidation(result, cacheControlDirectives) { if (cacheControlDirectives == null ? void 0 : cacheControlDirectives["no-cache"]) { @@ -32157,7 +32162,7 @@ var require_cache3 = __commonJS({ withinStaleIfErrorThreshold = now < result.staleAt + staleIfErrorExpiry * 1e3; } let headers = { - ...opts.headers, + ...normaliseHeaders(opts), "if-modified-since": new Date(result.cachedAt).toUTCString() }; if (result.etag) { @@ -34251,7 +34256,9 @@ var require_fetch2 = __commonJS({ originalURL.href, initiatorType, globalThis, - cacheState + cacheState, + "", + response.status ); } var markResourceTiming = performance.markResourceTiming; @@ -34540,7 +34547,7 @@ var require_fetch2 = __commonJS({ fetchParams.controller.fullTimingInfo = timingInfo; } fetchParams.controller.reportTimingSteps = () => { - if (fetchParams.request.url.protocol !== "https:") { + if (!urlIsHttpHttpsScheme(fetchParams.request.url)) { return; } timingInfo.endTime = unsafeEndTime; @@ -36566,7 +36573,7 @@ var require_util12 = __commonJS({ const extensionList = /* @__PURE__ */ new Map(); while (position.position < extensions.length) { const pair = collectASequenceOfCodePointsFast(";", extensions, position); - const [name, value = ""] = pair.split("="); + const [name, value = ""] = pair.split("=", 2); extensionList.set( removeHTTPWhitespace(name, true, false), removeHTTPWhitespace(value, false, true) diff --git a/github-actions/feature-request/main.js b/github-actions/feature-request/main.js index 18ea7d6ee..44422fa08 100644 --- a/github-actions/feature-request/main.js +++ b/github-actions/feature-request/main.js @@ -20026,7 +20026,7 @@ var require_util8 = __commonJS({ var { InvalidArgumentError } = require_errors2(); var { headerNameLowerCasedRecord } = require_constants6(); var { tree } = require_tree(); - var [nodeMajor, nodeMinor] = process.versions.node.split(".").map((v) => Number(v)); + var [nodeMajor, nodeMinor] = process.versions.node.split(".", 2).map((v) => Number(v)); var BodyAsyncIterable = class { constructor(body) { this[kBody] = body; @@ -29429,7 +29429,7 @@ var require_mock_utils2 = __commonJS({ if (typeof path !== "string") { return path; } - const pathSegments = path.split("?"); + const pathSegments = path.split("?", 3); if (pathSegments.length !== 2) { return path; } @@ -31127,6 +31127,15 @@ var require_cache2 = __commonJS({ if (!opts.origin) { throw new Error("opts.origin is undefined"); } + const headers = normaliseHeaders(opts); + return { + origin: opts.origin.toString(), + method: opts.method, + path: opts.path, + headers + }; + } + function normaliseHeaders(opts) { let headers; if (opts.headers == null) { headers = {}; @@ -31150,12 +31159,7 @@ var require_cache2 = __commonJS({ } else { throw new Error("opts.headers is not an object"); } - return { - origin: opts.origin.toString(), - method: opts.method, - path: opts.path, - headers - }; + return headers; } function assertCacheKey(key) { if (typeof key !== "object") { @@ -31344,6 +31348,7 @@ var require_cache2 = __commonJS({ } module.exports = { makeCacheKey, + normaliseHeaders, assertCacheKey, assertCacheValue, parseCacheControlHeader, @@ -32026,7 +32031,7 @@ var require_cache3 = __commonJS({ var CacheHandler = require_cache_handler(); var MemoryCacheStore = require_memory_cache_store(); var CacheRevalidationHandler = require_cache_revalidation_handler(); - var { assertCacheStore, assertCacheMethods, makeCacheKey, parseCacheControlHeader } = require_cache2(); + var { assertCacheStore, assertCacheMethods, makeCacheKey, normaliseHeaders, parseCacheControlHeader } = require_cache2(); var { AbortError } = require_errors2(); function needsRevalidation(result, cacheControlDirectives) { if (cacheControlDirectives == null ? void 0 : cacheControlDirectives["no-cache"]) { @@ -32157,7 +32162,7 @@ var require_cache3 = __commonJS({ withinStaleIfErrorThreshold = now < result.staleAt + staleIfErrorExpiry * 1e3; } let headers = { - ...opts.headers, + ...normaliseHeaders(opts), "if-modified-since": new Date(result.cachedAt).toUTCString() }; if (result.etag) { @@ -34251,7 +34256,9 @@ var require_fetch2 = __commonJS({ originalURL.href, initiatorType, globalThis, - cacheState + cacheState, + "", + response.status ); } var markResourceTiming = performance.markResourceTiming; @@ -34540,7 +34547,7 @@ var require_fetch2 = __commonJS({ fetchParams.controller.fullTimingInfo = timingInfo; } fetchParams.controller.reportTimingSteps = () => { - if (fetchParams.request.url.protocol !== "https:") { + if (!urlIsHttpHttpsScheme(fetchParams.request.url)) { return; } timingInfo.endTime = unsafeEndTime; @@ -36566,7 +36573,7 @@ var require_util12 = __commonJS({ const extensionList = /* @__PURE__ */ new Map(); while (position.position < extensions.length) { const pair = collectASequenceOfCodePointsFast(";", extensions, position); - const [name, value = ""] = pair.split("="); + const [name, value = ""] = pair.split("=", 2); extensionList.set( removeHTTPWhitespace(name, true, false), removeHTTPWhitespace(value, false, true) diff --git a/github-actions/google-internal-tests/main.js b/github-actions/google-internal-tests/main.js index f93c22b9f..4ca8fdf0c 100644 --- a/github-actions/google-internal-tests/main.js +++ b/github-actions/google-internal-tests/main.js @@ -20030,7 +20030,7 @@ var require_util8 = __commonJS({ var { InvalidArgumentError } = require_errors2(); var { headerNameLowerCasedRecord } = require_constants6(); var { tree } = require_tree(); - var [nodeMajor, nodeMinor] = process.versions.node.split(".").map((v) => Number(v)); + var [nodeMajor, nodeMinor] = process.versions.node.split(".", 2).map((v) => Number(v)); var BodyAsyncIterable = class { constructor(body) { this[kBody] = body; @@ -29433,7 +29433,7 @@ var require_mock_utils2 = __commonJS({ if (typeof path3 !== "string") { return path3; } - const pathSegments = path3.split("?"); + const pathSegments = path3.split("?", 3); if (pathSegments.length !== 2) { return path3; } @@ -31131,6 +31131,15 @@ var require_cache2 = __commonJS({ if (!opts.origin) { throw new Error("opts.origin is undefined"); } + const headers = normaliseHeaders(opts); + return { + origin: opts.origin.toString(), + method: opts.method, + path: opts.path, + headers + }; + } + function normaliseHeaders(opts) { let headers; if (opts.headers == null) { headers = {}; @@ -31154,12 +31163,7 @@ var require_cache2 = __commonJS({ } else { throw new Error("opts.headers is not an object"); } - return { - origin: opts.origin.toString(), - method: opts.method, - path: opts.path, - headers - }; + return headers; } function assertCacheKey(key) { if (typeof key !== "object") { @@ -31348,6 +31352,7 @@ var require_cache2 = __commonJS({ } module.exports = { makeCacheKey, + normaliseHeaders, assertCacheKey, assertCacheValue, parseCacheControlHeader, @@ -32030,7 +32035,7 @@ var require_cache3 = __commonJS({ var CacheHandler = require_cache_handler(); var MemoryCacheStore = require_memory_cache_store(); var CacheRevalidationHandler = require_cache_revalidation_handler(); - var { assertCacheStore, assertCacheMethods, makeCacheKey, parseCacheControlHeader } = require_cache2(); + var { assertCacheStore, assertCacheMethods, makeCacheKey, normaliseHeaders, parseCacheControlHeader } = require_cache2(); var { AbortError } = require_errors2(); function needsRevalidation(result, cacheControlDirectives) { if (cacheControlDirectives == null ? void 0 : cacheControlDirectives["no-cache"]) { @@ -32161,7 +32166,7 @@ var require_cache3 = __commonJS({ withinStaleIfErrorThreshold = now < result.staleAt + staleIfErrorExpiry * 1e3; } let headers = { - ...opts.headers, + ...normaliseHeaders(opts), "if-modified-since": new Date(result.cachedAt).toUTCString() }; if (result.etag) { @@ -34255,7 +34260,9 @@ var require_fetch2 = __commonJS({ originalURL.href, initiatorType, globalThis, - cacheState + cacheState, + "", + response.status ); } var markResourceTiming = performance.markResourceTiming; @@ -34544,7 +34551,7 @@ var require_fetch2 = __commonJS({ fetchParams.controller.fullTimingInfo = timingInfo; } fetchParams.controller.reportTimingSteps = () => { - if (fetchParams.request.url.protocol !== "https:") { + if (!urlIsHttpHttpsScheme(fetchParams.request.url)) { return; } timingInfo.endTime = unsafeEndTime; @@ -36570,7 +36577,7 @@ var require_util12 = __commonJS({ const extensionList = /* @__PURE__ */ new Map(); while (position.position < extensions.length) { const pair = collectASequenceOfCodePointsFast(";", extensions, position); - const [name, value = ""] = pair.split("="); + const [name, value = ""] = pair.split("=", 2); extensionList.set( removeHTTPWhitespace(name, true, false), removeHTTPWhitespace(value, false, true) diff --git a/github-actions/org-file-sync/main.js b/github-actions/org-file-sync/main.js index f34a9d6f8..d4a2bcb3e 100644 --- a/github-actions/org-file-sync/main.js +++ b/github-actions/org-file-sync/main.js @@ -20026,7 +20026,7 @@ var require_util8 = __commonJS({ var { InvalidArgumentError } = require_errors2(); var { headerNameLowerCasedRecord } = require_constants6(); var { tree } = require_tree(); - var [nodeMajor, nodeMinor] = process.versions.node.split(".").map((v) => Number(v)); + var [nodeMajor, nodeMinor] = process.versions.node.split(".", 2).map((v) => Number(v)); var BodyAsyncIterable = class { constructor(body) { this[kBody] = body; @@ -29429,7 +29429,7 @@ var require_mock_utils2 = __commonJS({ if (typeof path !== "string") { return path; } - const pathSegments = path.split("?"); + const pathSegments = path.split("?", 3); if (pathSegments.length !== 2) { return path; } @@ -31127,6 +31127,15 @@ var require_cache2 = __commonJS({ if (!opts.origin) { throw new Error("opts.origin is undefined"); } + const headers = normaliseHeaders(opts); + return { + origin: opts.origin.toString(), + method: opts.method, + path: opts.path, + headers + }; + } + function normaliseHeaders(opts) { let headers; if (opts.headers == null) { headers = {}; @@ -31150,12 +31159,7 @@ var require_cache2 = __commonJS({ } else { throw new Error("opts.headers is not an object"); } - return { - origin: opts.origin.toString(), - method: opts.method, - path: opts.path, - headers - }; + return headers; } function assertCacheKey(key) { if (typeof key !== "object") { @@ -31344,6 +31348,7 @@ var require_cache2 = __commonJS({ } module.exports = { makeCacheKey, + normaliseHeaders, assertCacheKey, assertCacheValue, parseCacheControlHeader, @@ -32026,7 +32031,7 @@ var require_cache3 = __commonJS({ var CacheHandler = require_cache_handler(); var MemoryCacheStore = require_memory_cache_store(); var CacheRevalidationHandler = require_cache_revalidation_handler(); - var { assertCacheStore, assertCacheMethods, makeCacheKey, parseCacheControlHeader } = require_cache2(); + var { assertCacheStore, assertCacheMethods, makeCacheKey, normaliseHeaders, parseCacheControlHeader } = require_cache2(); var { AbortError } = require_errors2(); function needsRevalidation(result, cacheControlDirectives) { if (cacheControlDirectives == null ? void 0 : cacheControlDirectives["no-cache"]) { @@ -32157,7 +32162,7 @@ var require_cache3 = __commonJS({ withinStaleIfErrorThreshold = now < result.staleAt + staleIfErrorExpiry * 1e3; } let headers = { - ...opts.headers, + ...normaliseHeaders(opts), "if-modified-since": new Date(result.cachedAt).toUTCString() }; if (result.etag) { @@ -34251,7 +34256,9 @@ var require_fetch2 = __commonJS({ originalURL.href, initiatorType, globalThis, - cacheState + cacheState, + "", + response.status ); } var markResourceTiming = performance.markResourceTiming; @@ -34540,7 +34547,7 @@ var require_fetch2 = __commonJS({ fetchParams.controller.fullTimingInfo = timingInfo; } fetchParams.controller.reportTimingSteps = () => { - if (fetchParams.request.url.protocol !== "https:") { + if (!urlIsHttpHttpsScheme(fetchParams.request.url)) { return; } timingInfo.endTime = unsafeEndTime; @@ -36566,7 +36573,7 @@ var require_util12 = __commonJS({ const extensionList = /* @__PURE__ */ new Map(); while (position.position < extensions.length) { const pair = collectASequenceOfCodePointsFast(";", extensions, position); - const [name, value = ""] = pair.split("="); + const [name, value = ""] = pair.split("=", 2); extensionList.set( removeHTTPWhitespace(name, true, false), removeHTTPWhitespace(value, false, true) diff --git a/github-actions/post-approval-changes/main.js b/github-actions/post-approval-changes/main.js index 2b3da6bc5..e1b5d5672 100644 --- a/github-actions/post-approval-changes/main.js +++ b/github-actions/post-approval-changes/main.js @@ -20026,7 +20026,7 @@ var require_util8 = __commonJS({ var { InvalidArgumentError } = require_errors2(); var { headerNameLowerCasedRecord } = require_constants6(); var { tree } = require_tree(); - var [nodeMajor, nodeMinor] = process.versions.node.split(".").map((v) => Number(v)); + var [nodeMajor, nodeMinor] = process.versions.node.split(".", 2).map((v) => Number(v)); var BodyAsyncIterable = class { constructor(body) { this[kBody] = body; @@ -29429,7 +29429,7 @@ var require_mock_utils2 = __commonJS({ if (typeof path !== "string") { return path; } - const pathSegments = path.split("?"); + const pathSegments = path.split("?", 3); if (pathSegments.length !== 2) { return path; } @@ -31127,6 +31127,15 @@ var require_cache2 = __commonJS({ if (!opts.origin) { throw new Error("opts.origin is undefined"); } + const headers = normaliseHeaders(opts); + return { + origin: opts.origin.toString(), + method: opts.method, + path: opts.path, + headers + }; + } + function normaliseHeaders(opts) { let headers; if (opts.headers == null) { headers = {}; @@ -31150,12 +31159,7 @@ var require_cache2 = __commonJS({ } else { throw new Error("opts.headers is not an object"); } - return { - origin: opts.origin.toString(), - method: opts.method, - path: opts.path, - headers - }; + return headers; } function assertCacheKey(key) { if (typeof key !== "object") { @@ -31344,6 +31348,7 @@ var require_cache2 = __commonJS({ } module.exports = { makeCacheKey, + normaliseHeaders, assertCacheKey, assertCacheValue, parseCacheControlHeader, @@ -32026,7 +32031,7 @@ var require_cache3 = __commonJS({ var CacheHandler = require_cache_handler(); var MemoryCacheStore = require_memory_cache_store(); var CacheRevalidationHandler = require_cache_revalidation_handler(); - var { assertCacheStore, assertCacheMethods, makeCacheKey, parseCacheControlHeader } = require_cache2(); + var { assertCacheStore, assertCacheMethods, makeCacheKey, normaliseHeaders, parseCacheControlHeader } = require_cache2(); var { AbortError } = require_errors2(); function needsRevalidation(result, cacheControlDirectives) { if (cacheControlDirectives == null ? void 0 : cacheControlDirectives["no-cache"]) { @@ -32157,7 +32162,7 @@ var require_cache3 = __commonJS({ withinStaleIfErrorThreshold = now < result.staleAt + staleIfErrorExpiry * 1e3; } let headers = { - ...opts.headers, + ...normaliseHeaders(opts), "if-modified-since": new Date(result.cachedAt).toUTCString() }; if (result.etag) { @@ -34251,7 +34256,9 @@ var require_fetch2 = __commonJS({ originalURL.href, initiatorType, globalThis, - cacheState + cacheState, + "", + response.status ); } var markResourceTiming = performance.markResourceTiming; @@ -34540,7 +34547,7 @@ var require_fetch2 = __commonJS({ fetchParams.controller.fullTimingInfo = timingInfo; } fetchParams.controller.reportTimingSteps = () => { - if (fetchParams.request.url.protocol !== "https:") { + if (!urlIsHttpHttpsScheme(fetchParams.request.url)) { return; } timingInfo.endTime = unsafeEndTime; @@ -36566,7 +36573,7 @@ var require_util12 = __commonJS({ const extensionList = /* @__PURE__ */ new Map(); while (position.position < extensions.length) { const pair = collectASequenceOfCodePointsFast(";", extensions, position); - const [name, value = ""] = pair.split("="); + const [name, value = ""] = pair.split("=", 2); extensionList.set( removeHTTPWhitespace(name, true, false), removeHTTPWhitespace(value, false, true) diff --git a/github-actions/unified-status-check/main.js b/github-actions/unified-status-check/main.js index 217484701..985a0b569 100644 --- a/github-actions/unified-status-check/main.js +++ b/github-actions/unified-status-check/main.js @@ -20122,7 +20122,7 @@ var require_util8 = __commonJS({ var { InvalidArgumentError } = require_errors2(); var { headerNameLowerCasedRecord } = require_constants6(); var { tree } = require_tree(); - var [nodeMajor, nodeMinor] = process.versions.node.split(".").map((v) => Number(v)); + var [nodeMajor, nodeMinor] = process.versions.node.split(".", 2).map((v) => Number(v)); var BodyAsyncIterable = class { constructor(body) { this[kBody] = body; @@ -29525,7 +29525,7 @@ var require_mock_utils2 = __commonJS({ if (typeof path !== "string") { return path; } - const pathSegments = path.split("?"); + const pathSegments = path.split("?", 3); if (pathSegments.length !== 2) { return path; } @@ -31223,6 +31223,15 @@ var require_cache2 = __commonJS({ if (!opts.origin) { throw new Error("opts.origin is undefined"); } + const headers = normaliseHeaders(opts); + return { + origin: opts.origin.toString(), + method: opts.method, + path: opts.path, + headers + }; + } + function normaliseHeaders(opts) { let headers; if (opts.headers == null) { headers = {}; @@ -31246,12 +31255,7 @@ var require_cache2 = __commonJS({ } else { throw new Error("opts.headers is not an object"); } - return { - origin: opts.origin.toString(), - method: opts.method, - path: opts.path, - headers - }; + return headers; } function assertCacheKey(key) { if (typeof key !== "object") { @@ -31440,6 +31444,7 @@ var require_cache2 = __commonJS({ } module.exports = { makeCacheKey, + normaliseHeaders, assertCacheKey, assertCacheValue, parseCacheControlHeader, @@ -32122,7 +32127,7 @@ var require_cache3 = __commonJS({ var CacheHandler = require_cache_handler(); var MemoryCacheStore = require_memory_cache_store(); var CacheRevalidationHandler = require_cache_revalidation_handler(); - var { assertCacheStore, assertCacheMethods, makeCacheKey, parseCacheControlHeader } = require_cache2(); + var { assertCacheStore, assertCacheMethods, makeCacheKey, normaliseHeaders, parseCacheControlHeader } = require_cache2(); var { AbortError } = require_errors2(); function needsRevalidation(result, cacheControlDirectives) { if (cacheControlDirectives == null ? void 0 : cacheControlDirectives["no-cache"]) { @@ -32253,7 +32258,7 @@ var require_cache3 = __commonJS({ withinStaleIfErrorThreshold = now < result.staleAt + staleIfErrorExpiry * 1e3; } let headers = { - ...opts.headers, + ...normaliseHeaders(opts), "if-modified-since": new Date(result.cachedAt).toUTCString() }; if (result.etag) { @@ -34347,7 +34352,9 @@ var require_fetch2 = __commonJS({ originalURL.href, initiatorType, globalThis, - cacheState + cacheState, + "", + response.status ); } var markResourceTiming = performance.markResourceTiming; @@ -34636,7 +34643,7 @@ var require_fetch2 = __commonJS({ fetchParams.controller.fullTimingInfo = timingInfo; } fetchParams.controller.reportTimingSteps = () => { - if (fetchParams.request.url.protocol !== "https:") { + if (!urlIsHttpHttpsScheme(fetchParams.request.url)) { return; } timingInfo.endTime = unsafeEndTime; @@ -36662,7 +36669,7 @@ var require_util12 = __commonJS({ const extensionList = /* @__PURE__ */ new Map(); while (position.position < extensions.length) { const pair = collectASequenceOfCodePointsFast(";", extensions, position); - const [name, value = ""] = pair.split("="); + const [name, value = ""] = pair.split("=", 2); extensionList.set( removeHTTPWhitespace(name, true, false), removeHTTPWhitespace(value, false, true) diff --git a/yarn.lock b/yarn.lock index 72178126e..eeef82ad9 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3570,13 +3570,13 @@ __metadata: linkType: hard "@pnpm/dependency-path@npm:^1000.0.5": - version: 1000.0.5 - resolution: "@pnpm/dependency-path@npm:1000.0.5" + version: 1000.0.6 + resolution: "@pnpm/dependency-path@npm:1000.0.6" dependencies: "@pnpm/crypto.hash": "npm:1000.1.1" - "@pnpm/types": "npm:1000.2.1" + "@pnpm/types": "npm:1000.3.0" semver: "npm:^7.7.1" - checksum: 10c0/a2605fd321284e5f81b355843fe6eb48983cab3d94364a3f2547b0cb6f6ef19cb7efba6df0851420fbb78242cf42c1b8117ec5a527778f98da76cde65d27d0d2 + checksum: 10c0/89f95fe24e28f25d5e2b4d32210891a045ff430c1022c03f8996c0da1b6a1973821dd01e49a96548baa347230cd08094f1b4f1c424041b29154c93d5fd0b2bf7 languageName: node linkType: hard @@ -3609,10 +3609,10 @@ __metadata: languageName: node linkType: hard -"@pnpm/types@npm:1000.2.1": - version: 1000.2.1 - resolution: "@pnpm/types@npm:1000.2.1" - checksum: 10c0/e5df4dd9c63f242b478e26957d4603d6c0aaa460441afc7461d4ca4aa3ae05bdb572f65873dbe24e1f8257776d413be88cea63f3bf1377aa600f181231a2ee01 +"@pnpm/types@npm:1000.3.0": + version: 1000.3.0 + resolution: "@pnpm/types@npm:1000.3.0" + checksum: 10c0/9fe08b2363fdcef82342cde488283d56e7160e0908ce094c28d121f08be5044c82f64d378ce9d03519c173209c582f6d811acb92b3869818b402bb9b73b02249 languageName: node linkType: hard @@ -4546,9 +4546,9 @@ __metadata: linkType: hard "@types/semver@npm:^7.3.6": - version: 7.5.8 - resolution: "@types/semver@npm:7.5.8" - checksum: 10c0/8663ff927234d1c5fcc04b33062cb2b9fcfbe0f5f351ed26c4d1e1581657deebd506b41ff7fdf89e787e3d33ce05854bc01686379b89e9c49b564c4cfa988efa + version: 7.7.0 + resolution: "@types/semver@npm:7.7.0" + checksum: 10c0/6b5f65f647474338abbd6ee91a6bbab434662ddb8fe39464edcbcfc96484d388baad9eb506dff217b6fc1727a88894930eb1f308617161ac0f376fe06be4e1ee languageName: node linkType: hard @@ -6630,7 +6630,7 @@ __metadata: languageName: node linkType: hard -"destroy@npm:1.2.0, destroy@npm:^1.0.4, destroy@npm:^1.2.0": +"destroy@npm:1.2.0, destroy@npm:^1.0.4": version: 1.2.0 resolution: "destroy@npm:1.2.0" checksum: 10c0/bd7633942f57418f5a3b80d5cb53898127bcf53e24cdf5d5f4396be471417671f0fee48a4ebe9a1e9defbde2a31280011af58a57e090ff822f589b443ed4e643 @@ -7901,6 +7901,13 @@ __metadata: languageName: node linkType: hard +"fresh@npm:^2.0.0": + version: 2.0.0 + resolution: "fresh@npm:2.0.0" + checksum: 10c0/0557548194cb9a809a435bf92bcfbc20c89e8b5eb38861b73ced36750437251e39a111fc3a18b98531be9dd91fe1411e4969f229dc579ec0251ce6c5d4900bbc + languageName: node + linkType: hard + "fs-extra@npm:3.0.1": version: 3.0.1 resolution: "fs-extra@npm:3.0.1" @@ -10503,7 +10510,7 @@ __metadata: languageName: node linkType: hard -"mime-db@npm:>= 1.43.0 < 2": +"mime-db@npm:>= 1.43.0 < 2, mime-db@npm:^1.54.0": version: 1.54.0 resolution: "mime-db@npm:1.54.0" checksum: 10c0/8d907917bc2a90fa2df842cdf5dfeaf509adc15fe0531e07bb2f6ab15992416479015828d6a74200041c492e42cce3ebf78e5ce714388a0a538ea9c53eece284 @@ -10519,6 +10526,15 @@ __metadata: languageName: node linkType: hard +"mime-types@npm:^3.0.1": + version: 3.0.1 + resolution: "mime-types@npm:3.0.1" + dependencies: + mime-db: "npm:^1.54.0" + checksum: 10c0/bd8c20d3694548089cf229016124f8f40e6a60bbb600161ae13e45f793a2d5bb40f96bbc61f275836696179c77c1d6bf4967b2a75e0a8ad40fe31f4ed5be4da5 + languageName: node + linkType: hard + "mime@npm:1.6.0": version: 1.6.0 resolution: "mime@npm:1.6.0" @@ -12971,22 +12987,21 @@ __metadata: linkType: hard "send@npm:^1.0.0": - version: 1.1.0 - resolution: "send@npm:1.1.0" + version: 1.2.0 + resolution: "send@npm:1.2.0" dependencies: debug: "npm:^4.3.5" - destroy: "npm:^1.2.0" encodeurl: "npm:^2.0.0" escape-html: "npm:^1.0.3" etag: "npm:^1.8.1" - fresh: "npm:^0.5.2" + fresh: "npm:^2.0.0" http-errors: "npm:^2.0.0" - mime-types: "npm:^2.1.35" + mime-types: "npm:^3.0.1" ms: "npm:^2.1.3" on-finished: "npm:^2.4.1" range-parser: "npm:^1.2.1" statuses: "npm:^2.0.1" - checksum: 10c0/0d73408bccfd008bb50cb97225434cf565f653b66cb7961befa962a321a936eaefa6c481a1a9c30606f341afb1f08d990bcbf44949f48a68e06d63344eb91105 + checksum: 10c0/531bcfb5616948d3468d95a1fd0adaeb0c20818ba4a500f439b800ca2117971489e02074ce32796fd64a6772ea3e7235fe0583d8241dbd37a053dc3378eff9a5 languageName: node linkType: hard @@ -13706,8 +13721,8 @@ __metadata: linkType: hard "stylelint@npm:^16.0.0": - version: 16.16.0 - resolution: "stylelint@npm:16.16.0" + version: 16.17.0 + resolution: "stylelint@npm:16.17.0" dependencies: "@csstools/css-parser-algorithms": "npm:^3.0.4" "@csstools/css-tokenizer": "npm:^3.0.3" @@ -13749,7 +13764,7 @@ __metadata: write-file-atomic: "npm:^5.0.1" bin: stylelint: bin/stylelint.mjs - checksum: 10c0/7884a347fbaf04215f205bb9630bce91c72a3d08ddd5aec1d1ad7ccfdff50854bb6ad995945d5d6a6a4052a1c5fadb3fd4929e8e7db4cde5a6ce0f7dbe537800 + checksum: 10c0/0b1bb4e362babe799afc42086fdc3a5621c230a0d4ad4a947a44d14311b758bf5a0fab0dea4fef31223dde97617f43510a37480d25f9eed23e2ff71e97c33e07 languageName: node linkType: hard @@ -14431,9 +14446,9 @@ __metadata: linkType: hard "undici@npm:^7.0.0": - version: 7.5.0 - resolution: "undici@npm:7.5.0" - checksum: 10c0/07e1c984ff1d83516c02a716bb81abfa05087201e511c78147822073440365d2b8e875876804fb4e45857c11c412b46599c961f52aa5bdd2df481fa823e8b629 + version: 7.6.0 + resolution: "undici@npm:7.6.0" + checksum: 10c0/53824a217c47dfc00961b8f504ebfa30f469357f2e5444320cbe446774dd4a836c37317a5d4ddf1ac61ab936ef05e081cc6a32ec60ac9e65dea841468397430d languageName: node linkType: hard