From fd3f78a69a5308e09b2bd3342d1399b4540ff1e0 Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Tue, 18 Aug 2026 03:47:26 +0000 Subject: [PATCH] chore: Update dist --- THIRD-PARTY | 4 ++-- dist/index.js | 24 +++++++++++++++++------- 2 files changed, 19 insertions(+), 9 deletions(-) diff --git a/THIRD-PARTY b/THIRD-PARTY index 8a28604..a172486 100644 --- a/THIRD-PARTY +++ b/THIRD-PARTY @@ -433,7 +433,7 @@ Apache License The following npm packages may be included in this product: - @aws-sdk/signature-v4-multi-region@3.996.44 - - @smithy/core@3.32.0 + - @smithy/core@3.33.0 - @smithy/types@4.17.0 These packages each contain the following license: @@ -1050,7 +1050,7 @@ The following npm packages may be included in this product: - @aws-sdk/xml-builder@3.972.38 - @smithy/credential-provider-imds@4.5.0 - @smithy/fetch-http-handler@5.7.0 - - @smithy/node-http-handler@4.9.13 + - @smithy/node-http-handler@4.11.0 - @smithy/signature-v4@5.6.12 These packages each contain the following license: diff --git a/dist/index.js b/dist/index.js index 35b0753..bf9ae77 100644 --- a/dist/index.js +++ b/dist/index.js @@ -28525,24 +28525,27 @@ var getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig; var init_httpExtensionConfiguration = __esm({ "node_modules/@smithy/core/dist-es/submodules/protocols/protocol-http/extensions/httpExtensionConfiguration.js"() { getHttpHandlerExtensionConfiguration = (runtimeConfig) => { + if (runtimeConfig.logger && runtimeConfig.logger.constructor?.name !== "NoOpLogger") { + runtimeConfig.requestHandler?.updateHttpClientConfig?.(/* @__PURE__ */ Symbol.for("logger"), runtimeConfig.logger); + } return { setHttpHandler(handler) { - runtimeConfig.httpHandler = handler; + runtimeConfig.requestHandler = handler; }, httpHandler() { - return runtimeConfig.httpHandler; + return runtimeConfig.requestHandler; }, updateHttpClientConfig(key, value) { - runtimeConfig.httpHandler?.updateHttpClientConfig(key, value); + runtimeConfig.requestHandler?.updateHttpClientConfig(key, value); }, httpHandlerConfigs() { - return runtimeConfig.httpHandler.httpHandlerConfigs(); + return runtimeConfig.requestHandler.httpHandlerConfigs(); } }; }; resolveHttpHandlerRuntimeConfig = (httpHandlerExtensionConfiguration) => { return { - httpHandler: httpHandlerExtensionConfiguration.httpHandler() + requestHandler: httpHandlerExtensionConfiguration.httpHandler() }; }; } @@ -34029,6 +34032,7 @@ or increase socketAcquisitionWarningTimeout=(millis) in the NodeHttpHandler conf this.config = await this.configProvider; } const config = this.config; + const logger2 = config.logger; const isSSL = request.protocol === "https:"; if (!isSSL && !this.config.httpAgent) { this.config.httpAgent = await this.config.httpAgentProvider(); @@ -34072,7 +34076,7 @@ or increase socketAcquisitionWarningTimeout=(millis) in the NodeHttpHandler conf }); } socketWarningTimeoutId = timing.setTimeout(() => { - this.socketWarningTimestamp = _NodeHttpHandler.checkSocketUsage(agent, this.socketWarningTimestamp, config.logger); + this.socketWarningTimestamp = _NodeHttpHandler.checkSocketUsage(agent, this.socketWarningTimestamp, logger2); }, config.socketAcquisitionWarningTimeout ?? (config.requestTimeout ?? 2e3) + (config.connectionTimeout ?? 1e3)); const queryString = request.query ? buildQueryString2(request.query) : ""; let auth = void 0; @@ -34136,7 +34140,7 @@ or increase socketAcquisitionWarningTimeout=(millis) in the NodeHttpHandler conf } const effectiveRequestTimeout = requestTimeout ?? config.requestTimeout; connectionTimeoutId = setConnectionTimeout(req, reject, config.connectionTimeout); - requestTimeoutId = setRequestTimeout(req, reject, effectiveRequestTimeout, config.throwOnRequestTimeout, config.logger ?? console); + requestTimeoutId = setRequestTimeout(req, reject, effectiveRequestTimeout, config.throwOnRequestTimeout, logger2 ?? console); socketTimeoutId = setSocketTimeout(req, reject, config.socketTimeout); const httpAgent = nodeHttpsOptions.agent; if (typeof httpAgent === "object" && "keepAlive" in httpAgent) { @@ -34154,6 +34158,12 @@ or increase socketAcquisitionWarningTimeout=(millis) in the NodeHttpHandler conf updateHttpClientConfig(key, value) { this.config = void 0; this.configProvider = this.configProvider.then((config) => { + if (key === /* @__PURE__ */ Symbol.for("logger")) { + return { + ...config, + logger: config.logger ?? value + }; + } return { ...config, [key]: value