Skip to content

Commit e08a000

Browse files
authored
Merge pull request #48 from aws-actions/dependabot/npm_and_yarn/smithy/node-http-handler-4.2.0
chore: bump @smithy/node-http-handler from 4.1.1 to 4.2.0
2 parents 46136a0 + f48f69f commit e08a000

File tree

3 files changed

+52
-52
lines changed

3 files changed

+52
-52
lines changed

dist/index.js

Lines changed: 23 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -63320,14 +63320,14 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
6332063320
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
6332163321

6332263322
// src/index.ts
63323-
var src_exports = {};
63324-
__export(src_exports, {
63323+
var index_exports = {};
63324+
__export(index_exports, {
6332563325
DEFAULT_REQUEST_TIMEOUT: () => DEFAULT_REQUEST_TIMEOUT,
6332663326
NodeHttp2Handler: () => NodeHttp2Handler,
6332763327
NodeHttpHandler: () => NodeHttpHandler,
6332863328
streamCollector: () => streamCollector
6332963329
});
63330-
module.exports = __toCommonJS(src_exports);
63330+
module.exports = __toCommonJS(index_exports);
6333163331

6333263332
// src/node-http-handler.ts
6333363333
var import_protocol_http = __nccwpck_require__(4418);
@@ -63350,8 +63350,8 @@ var getTransformedHeaders = /* @__PURE__ */ __name((headers) => {
6335063350

6335163351
// src/timing.ts
6335263352
var timing = {
63353-
setTimeout: (cb, ms) => setTimeout(cb, ms),
63354-
clearTimeout: (timeoutId) => clearTimeout(timeoutId)
63353+
setTimeout: /* @__PURE__ */ __name((cb, ms) => setTimeout(cb, ms), "setTimeout"),
63354+
clearTimeout: /* @__PURE__ */ __name((timeoutId) => clearTimeout(timeoutId), "clearTimeout")
6335563355
};
6335663356

6335763357
// src/set-connection-timeout.ts
@@ -64290,8 +64290,8 @@ var __copyProps = (to, from, except, desc) => {
6429064290
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
6429164291

6429264292
// src/index.ts
64293-
var src_exports = {};
64294-
__export(src_exports, {
64293+
var index_exports = {};
64294+
__export(index_exports, {
6429564295
Field: () => Field,
6429664296
Fields: () => Fields,
6429764297
HttpRequest: () => HttpRequest,
@@ -64301,7 +64301,7 @@ __export(src_exports, {
6430164301
isValidHostname: () => isValidHostname,
6430264302
resolveHttpHandlerRuntimeConfig: () => resolveHttpHandlerRuntimeConfig
6430364303
});
64304-
module.exports = __toCommonJS(src_exports);
64304+
module.exports = __toCommonJS(index_exports);
6430564305

6430664306
// src/extensions/httpExtensionConfiguration.ts
6430764307
var getHttpHandlerExtensionConfiguration = /* @__PURE__ */ __name((runtimeConfig) => {
@@ -64507,8 +64507,7 @@ var HttpResponse = class {
6450764507
this.body = options.body;
6450864508
}
6450964509
static isInstance(response) {
64510-
if (!response)
64511-
return false;
64510+
if (!response) return false;
6451264511
const resp = response;
6451364512
return typeof resp.statusCode === "number" && typeof resp.headers === "object";
6451464513
}
@@ -64551,11 +64550,11 @@ var __copyProps = (to, from, except, desc) => {
6455164550
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
6455264551

6455364552
// src/index.ts
64554-
var src_exports = {};
64555-
__export(src_exports, {
64553+
var index_exports = {};
64554+
__export(index_exports, {
6455664555
buildQueryString: () => buildQueryString
6455764556
});
64558-
module.exports = __toCommonJS(src_exports);
64557+
module.exports = __toCommonJS(index_exports);
6455964558
var import_util_uri_escape = __nccwpck_require__(4197);
6456064559
function buildQueryString(query) {
6456164560
const parts = [];
@@ -66409,8 +66408,8 @@ var __copyProps = (to, from, except, desc) => {
6640966408
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
6641066409

6641166410
// src/index.ts
66412-
var src_exports = {};
66413-
__export(src_exports, {
66411+
var index_exports = {};
66412+
__export(index_exports, {
6641466413
AlgorithmId: () => AlgorithmId,
6641566414
EndpointURLScheme: () => EndpointURLScheme,
6641666415
FieldPosition: () => FieldPosition,
@@ -66422,7 +66421,7 @@ __export(src_exports, {
6642266421
getDefaultClientConfiguration: () => getDefaultClientConfiguration,
6642366422
resolveDefaultRuntimeConfig: () => resolveDefaultRuntimeConfig
6642466423
});
66425-
module.exports = __toCommonJS(src_exports);
66424+
module.exports = __toCommonJS(index_exports);
6642666425

6642766426
// src/auth/auth.ts
6642866427
var HttpAuthLocation = /* @__PURE__ */ ((HttpAuthLocation2) => {
@@ -66458,14 +66457,14 @@ var getChecksumConfiguration = /* @__PURE__ */ __name((runtimeConfig) => {
6645866457
const checksumAlgorithms = [];
6645966458
if (runtimeConfig.sha256 !== void 0) {
6646066459
checksumAlgorithms.push({
66461-
algorithmId: () => "sha256" /* SHA256 */,
66462-
checksumConstructor: () => runtimeConfig.sha256
66460+
algorithmId: /* @__PURE__ */ __name(() => "sha256" /* SHA256 */, "algorithmId"),
66461+
checksumConstructor: /* @__PURE__ */ __name(() => runtimeConfig.sha256, "checksumConstructor")
6646366462
});
6646466463
}
6646566464
if (runtimeConfig.md5 != void 0) {
6646666465
checksumAlgorithms.push({
66467-
algorithmId: () => "md5" /* MD5 */,
66468-
checksumConstructor: () => runtimeConfig.md5
66466+
algorithmId: /* @__PURE__ */ __name(() => "md5" /* MD5 */, "algorithmId"),
66467+
checksumConstructor: /* @__PURE__ */ __name(() => runtimeConfig.md5, "checksumConstructor")
6646966468
});
6647066469
}
6647166470
return {
@@ -68860,12 +68859,12 @@ var __copyProps = (to, from, except, desc) => {
6886068859
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
6886168860

6886268861
// src/index.ts
68863-
var src_exports = {};
68864-
__export(src_exports, {
68862+
var index_exports = {};
68863+
__export(index_exports, {
6886568864
escapeUri: () => escapeUri,
6886668865
escapeUriPath: () => escapeUriPath
6886768866
});
68868-
module.exports = __toCommonJS(src_exports);
68867+
module.exports = __toCommonJS(index_exports);
6886968868

6887068869
// src/escape-uri.ts
6887168870
var escapeUri = /* @__PURE__ */ __name((uri) => (
@@ -100547,7 +100546,7 @@ module.exports = JSON.parse('{"name":"@aws-sdk/nested-clients","version":"3.826.
100547100546
/***/ ((module) => {
100548100547

100549100548
"use strict";
100550-
module.exports = JSON.parse('{"name":"@amzn/github-action-lambda-deploy","version":"1.0.0","description":"GitHub Action for AWS Lambda Function Deployment","main":"index.js","scripts":{"build":"ncc build index.js -o dist","test":"jest","lint":"eslint . --ignore-pattern \'dist/*\'","lint:fix":"eslint . --fix --ignore-pattern \'dist/*\'"},"keywords":["aws","lambda","deployment"],"author":"","license":"MIT","dependencies":{"@actions/core":"^1.10.0","@actions/github":"^6.0.1","@aws-sdk/client-lambda":"^3.826.0","@aws-sdk/client-s3":"^3.864.0","@aws-sdk/util-retry":"^3.370.0","@smithy/node-http-handler":"^4.0.6","@aws-sdk/client-sts":"3.876.0","adm-zip":"^0.5.16","glob":"^11.0.2"},"devDependencies":{"@vercel/ncc":"^0.36.1","eslint":"^8.45.0","eslint-plugin-jest":"^27.2.2","jest":"^29.5.0"}}');
100549+
module.exports = JSON.parse('{"name":"@amzn/github-action-lambda-deploy","version":"1.0.0","description":"GitHub Action for AWS Lambda Function Deployment","main":"index.js","scripts":{"build":"ncc build index.js -o dist","test":"jest","lint":"eslint . --ignore-pattern \'dist/*\'","lint:fix":"eslint . --fix --ignore-pattern \'dist/*\'"},"keywords":["aws","lambda","deployment"],"author":"","license":"MIT","dependencies":{"@actions/core":"^1.10.0","@actions/github":"^6.0.1","@aws-sdk/client-lambda":"^3.826.0","@aws-sdk/client-s3":"^3.864.0","@aws-sdk/util-retry":"^3.370.0","@smithy/node-http-handler":"^4.2.0","@aws-sdk/client-sts":"3.876.0","adm-zip":"^0.5.16","glob":"^11.0.2"},"devDependencies":{"@vercel/ncc":"^0.36.1","eslint":"^8.45.0","eslint-plugin-jest":"^27.2.2","jest":"^29.5.0"}}');
100551100550

100552100551
/***/ })
100553100552

package-lock.json

Lines changed: 28 additions & 27 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"@aws-sdk/client-lambda": "^3.826.0",
2323
"@aws-sdk/client-s3": "^3.864.0",
2424
"@aws-sdk/util-retry": "^3.370.0",
25-
"@smithy/node-http-handler": "^4.0.6",
25+
"@smithy/node-http-handler": "^4.2.0",
2626
"@aws-sdk/client-sts": "3.876.0",
2727
"adm-zip": "^0.5.16",
2828
"glob": "^11.0.2"

0 commit comments

Comments
 (0)