@aws-sdk/middleware-signing 3.713.0 → 3.714.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist-cjs/index.js
CHANGED
|
@@ -151,7 +151,8 @@ var createConfigBoundCredentialProvider = /* @__PURE__ */ __name((input) => {
|
|
|
151
151
|
);
|
|
152
152
|
const normalizedCreds = /* @__PURE__ */ __name(async () => normalizedCredentialsProvider({
|
|
153
153
|
callerClientConfig: {
|
|
154
|
-
region: (0, import_util_middleware.normalizeProvider)(input.region)
|
|
154
|
+
region: (0, import_util_middleware.normalizeProvider)(input.region),
|
|
155
|
+
profile: input.profile
|
|
155
156
|
}
|
|
156
157
|
}), "normalizedCreds");
|
|
157
158
|
return normalizedCreds;
|
|
@@ -114,6 +114,7 @@ const createConfigBoundCredentialProvider = (input) => {
|
|
|
114
114
|
const normalizedCreds = async () => normalizedCredentialsProvider({
|
|
115
115
|
callerClientConfig: {
|
|
116
116
|
region: normalizeProvider(input.region),
|
|
117
|
+
profile: input.profile,
|
|
117
118
|
},
|
|
118
119
|
});
|
|
119
120
|
return normalizedCreds;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/middleware-signing",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.714.0",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
6
6
|
"build:cjs": "node ../../scripts/compilation/inline middleware-signing",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
},
|
|
25
25
|
"license": "Apache-2.0",
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@aws-sdk/types": "3.
|
|
27
|
+
"@aws-sdk/types": "3.714.0",
|
|
28
28
|
"@smithy/property-provider": "^3.1.11",
|
|
29
29
|
"@smithy/protocol-http": "^4.1.8",
|
|
30
30
|
"@smithy/signature-v4": "^4.2.4",
|