From 2630a7c30d25a0c5b64fff363497dd6cdfd34d8e Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Tue, 25 Aug 2026 03:49:44 +0000 Subject: [PATCH] chore: Update dist --- THIRD-PARTY | 2 +- dist/index.js | 9 +++++++-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/THIRD-PARTY b/THIRD-PARTY index 54fafea..c3cbed7 100644 --- a/THIRD-PARTY +++ b/THIRD-PARTY @@ -1050,7 +1050,7 @@ The following npm packages may be included in this product: - @aws-sdk/xml-builder@3.972.39 - @smithy/credential-provider-imds@4.5.0 - @smithy/fetch-http-handler@5.7.0 - - @smithy/node-http-handler@4.11.0 + - @smithy/node-http-handler@4.11.3 - @smithy/signature-v4@5.6.12 These packages each contain the following license: diff --git a/dist/index.js b/dist/index.js index 3be0f1f..2e29b22 100644 --- a/dist/index.js +++ b/dist/index.js @@ -33857,12 +33857,13 @@ For more information, please visit: ` + STATIC_STABILITY_DOC_URL); // node_modules/@smithy/node-http-handler/dist-cjs/index.js var require_dist_cjs6 = __commonJS({ "node_modules/@smithy/node-http-handler/dist-cjs/index.js"(exports2) { + var { hasOwn: hasOwn2 } = (init_serde(), __toCommonJS(serde_exports)); + var { streamCollector: streamCollector7 } = (init_serde(), __toCommonJS(serde_exports)); + exports2.streamCollector = streamCollector7; var { buildQueryString: buildQueryString2, HttpResponse: HttpResponse2 } = (init_protocols(), __toCommonJS(protocols_exports)); var node_https = require("node:https"); var { Readable: Readable8 } = require("node:stream"); var http22 = require("node:http2"); - var { streamCollector: streamCollector7 } = (init_serde(), __toCommonJS(serde_exports)); - exports2.streamCollector = streamCollector7; function buildAbortError(abortSignal) { const reason = abortSignal && typeof abortSignal === "object" && "reason" in abortSignal ? abortSignal.reason : void 0; if (reason) { @@ -33884,6 +33885,8 @@ var require_dist_cjs6 = __commonJS({ var getTransformedHeaders = (headers) => { const transformedHeaders = {}; for (const name in headers) { + if (!hasOwn2(headers, name)) + continue; const headerValues = headers[name]; transformedHeaders[name] = Array.isArray(headerValues) ? headerValues.join(",") : headerValues; } @@ -34069,6 +34072,8 @@ var require_dist_cjs6 = __commonJS({ } if (sockets && requests) { for (const origin in sockets) { + if (!hasOwn2(sockets, origin)) + continue; const socketsInUse = sockets[origin]?.length ?? 0; const requestsEnqueued = requests[origin]?.length ?? 0; if (socketsInUse >= maxSockets && requestsEnqueued >= 2 * maxSockets) {