Skip to content

Commit 13156a4

Browse files
committed
test: wip
1 parent 9a8ac81 commit 13156a4

File tree

46 files changed

+899
-1569
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+899
-1569
lines changed

lib/lib-storage/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
},
2929
"license": "Apache-2.0",
3030
"dependencies": {
31-
"@smithy/abort-controller": "^4.0.5",
31+
"@smithy/abort-controller": "^4.1.1",
3232
"@smithy/middleware-endpoint": "^4.2.1",
3333
"@smithy/smithy-client": "^4.6.1",
3434
"buffer": "5.6.0",

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,6 @@
104104
"kill-port": "^2.0.1",
105105
"lerna": "5.5.2",
106106
"lint-staged": "^10.0.1",
107-
"memfs": "^4.39.0",
108107
"prettier": "2.8.5",
109108
"rimraf": "3.0.2",
110109
"ts-jest": "29.1.1",

packages/body-checksum-browser/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@
2323
"dependencies": {
2424
"@aws-sdk/sha256-tree-hash": "*",
2525
"@aws-sdk/types": "*",
26-
"@smithy/chunked-blob-reader": "^5.0.0",
26+
"@smithy/chunked-blob-reader": "^5.1.0",
2727
"@smithy/protocol-http": "^5.2.1",
2828
"@smithy/types": "^4.5.0",
29-
"@smithy/util-hex-encoding": "^4.0.0",
29+
"@smithy/util-hex-encoding": "^4.1.0",
3030
"@smithy/util-utf8": "^4.1.0",
3131
"tslib": "^2.6.2"
3232
},

packages/body-checksum-node/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@
2424
"@aws-sdk/chunked-stream-reader-node": "*",
2525
"@aws-sdk/sha256-tree-hash": "*",
2626
"@aws-sdk/types": "*",
27-
"@smithy/is-array-buffer": "^4.0.0",
27+
"@smithy/is-array-buffer": "^4.1.0",
2828
"@smithy/protocol-http": "^5.2.1",
2929
"@smithy/types": "^4.5.0",
30-
"@smithy/util-hex-encoding": "^4.0.0",
30+
"@smithy/util-hex-encoding": "^4.1.0",
3131
"@smithy/util-utf8": "^4.1.0",
3232
"tslib": "^2.6.2"
3333
},

packages/core/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,9 @@
8585
"@aws-sdk/xml-builder": "*",
8686
"@smithy/core": "^3.11.0",
8787
"@smithy/node-config-provider": "^4.2.1",
88-
"@smithy/property-provider": "^4.0.5",
88+
"@smithy/property-provider": "^4.1.1",
8989
"@smithy/protocol-http": "^5.2.1",
90-
"@smithy/signature-v4": "^5.1.3",
90+
"@smithy/signature-v4": "^5.2.1",
9191
"@smithy/smithy-client": "^4.6.1",
9292
"@smithy/types": "^4.5.0",
9393
"@smithy/util-base64": "^4.1.0",

packages/credential-provider-cognito-identity/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"dependencies": {
2727
"@aws-sdk/client-cognito-identity": "*",
2828
"@aws-sdk/types": "*",
29-
"@smithy/property-provider": "^4.0.5",
29+
"@smithy/property-provider": "^4.1.1",
3030
"@smithy/types": "^4.5.0",
3131
"tslib": "^2.6.2"
3232
},

packages/credential-provider-env/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"dependencies": {
2828
"@aws-sdk/core": "*",
2929
"@aws-sdk/types": "*",
30-
"@smithy/property-provider": "^4.0.5",
30+
"@smithy/property-provider": "^4.1.1",
3131
"@smithy/types": "^4.5.0",
3232
"tslib": "^2.6.2"
3333
},

packages/credential-provider-http/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"@aws-sdk/types": "*",
3232
"@smithy/fetch-http-handler": "^5.2.1",
3333
"@smithy/node-http-handler": "^4.2.1",
34-
"@smithy/property-provider": "^4.0.5",
34+
"@smithy/property-provider": "^4.1.1",
3535
"@smithy/protocol-http": "^5.2.1",
3636
"@smithy/smithy-client": "^4.6.1",
3737
"@smithy/types": "^4.5.0",

packages/credential-provider-http/src/fromHttp/fromHttp.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ Set AWS_CONTAINER_CREDENTIALS_FULL_URI or AWS_CONTAINER_CREDENTIALS_RELATIVE_URI
6666
// throws if not to spec for provider.
6767
checkUrl(url, options.logger);
6868

69-
const requestHandler = new NodeHttpHandler({
69+
const requestHandler = NodeHttpHandler.create({
7070
requestTimeout: options.timeout ?? 1000,
7171
connectionTimeout: options.timeout ?? 1000,
7272
});

packages/credential-provider-ini/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@
3535
"@aws-sdk/credential-provider-web-identity": "*",
3636
"@aws-sdk/nested-clients": "*",
3737
"@aws-sdk/types": "*",
38-
"@smithy/credential-provider-imds": "^4.0.7",
39-
"@smithy/property-provider": "^4.0.5",
40-
"@smithy/shared-ini-file-loader": "^4.0.5",
38+
"@smithy/credential-provider-imds": "^4.1.1",
39+
"@smithy/property-provider": "^4.1.1",
40+
"@smithy/shared-ini-file-loader": "^4.1.1",
4141
"@smithy/types": "^4.5.0",
4242
"tslib": "^2.6.2"
4343
},

0 commit comments

Comments
 (0)