mirror of
https://github.com/aws-actions/configure-aws-credentials.git
synced 2026-08-31 05:35:04 +09:00
chore: Update dist
This commit is contained in:
+2
-2
@@ -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:
|
||||
|
||||
+17
-7
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user