@cdk8s/awscdk-resolver 0.0.467 → 0.0.469
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/.jsii +3 -3
- package/lib/resolve.js +1 -1
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/index.js +239 -201
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/CloudFormation.js +73 -1
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/CloudFormation.d.ts +230 -1
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/CloudFormation.d.ts +265 -1
- package/node_modules/@aws-sdk/client-cloudformation/package.json +17 -17
- package/node_modules/@aws-sdk/core/package.json +3 -3
- package/node_modules/@aws-sdk/credential-provider-http/package.json +3 -3
- package/node_modules/@aws-sdk/credential-provider-node/dist-cjs/index.js +8 -2
- package/node_modules/@aws-sdk/credential-provider-node/dist-es/runtime/memoize-chain.js +8 -2
- package/node_modules/@aws-sdk/credential-provider-node/package.json +2 -2
- package/node_modules/@aws-sdk/middleware-user-agent/package.json +3 -3
- package/package.json +5 -5
|
@@ -18,15 +18,21 @@ export function memoizeChain(providers, treatAsExpired) {
|
|
|
18
18
|
else if (!credentials || treatAsExpired?.(credentials)) {
|
|
19
19
|
if (credentials) {
|
|
20
20
|
if (!passiveLock) {
|
|
21
|
-
passiveLock = chain(options)
|
|
21
|
+
passiveLock = chain(options)
|
|
22
|
+
.then((c) => {
|
|
22
23
|
credentials = c;
|
|
24
|
+
})
|
|
25
|
+
.finally(() => {
|
|
23
26
|
passiveLock = undefined;
|
|
24
27
|
});
|
|
25
28
|
}
|
|
26
29
|
}
|
|
27
30
|
else {
|
|
28
|
-
activeLock = chain(options)
|
|
31
|
+
activeLock = chain(options)
|
|
32
|
+
.then((c) => {
|
|
29
33
|
credentials = c;
|
|
34
|
+
})
|
|
35
|
+
.finally(() => {
|
|
30
36
|
activeLock = undefined;
|
|
31
37
|
});
|
|
32
38
|
return provider(options);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/credential-provider-node",
|
|
3
|
-
"version": "3.972.
|
|
3
|
+
"version": "3.972.3",
|
|
4
4
|
"description": "AWS credential provider that sources credentials from a Node.JS environment. ",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=20.0.0"
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"license": "Apache-2.0",
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@aws-sdk/credential-provider-env": "^3.972.2",
|
|
35
|
-
"@aws-sdk/credential-provider-http": "^3.972.
|
|
35
|
+
"@aws-sdk/credential-provider-http": "^3.972.4",
|
|
36
36
|
"@aws-sdk/credential-provider-ini": "^3.972.2",
|
|
37
37
|
"@aws-sdk/credential-provider-process": "^3.972.2",
|
|
38
38
|
"@aws-sdk/credential-provider-sso": "^3.972.2",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/middleware-user-agent",
|
|
3
|
-
"version": "3.972.
|
|
3
|
+
"version": "3.972.4",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
6
6
|
"build:cjs": "node ../../scripts/compilation/inline middleware-user-agent",
|
|
@@ -25,10 +25,10 @@
|
|
|
25
25
|
},
|
|
26
26
|
"license": "Apache-2.0",
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@aws-sdk/core": "^3.973.
|
|
28
|
+
"@aws-sdk/core": "^3.973.4",
|
|
29
29
|
"@aws-sdk/types": "^3.973.1",
|
|
30
30
|
"@aws-sdk/util-endpoints": "3.972.0",
|
|
31
|
-
"@smithy/core": "^3.
|
|
31
|
+
"@smithy/core": "^3.22.0",
|
|
32
32
|
"@smithy/protocol-http": "^5.3.8",
|
|
33
33
|
"@smithy/types": "^4.12.0",
|
|
34
34
|
"tslib": "^2.6.2"
|
package/package.json
CHANGED
|
@@ -49,10 +49,10 @@
|
|
|
49
49
|
"@types/node": "16.18.78",
|
|
50
50
|
"@typescript-eslint/eslint-plugin": "^8",
|
|
51
51
|
"@typescript-eslint/parser": "^8",
|
|
52
|
-
"aws-cdk": "^2.
|
|
52
|
+
"aws-cdk": "^2.1104.0",
|
|
53
53
|
"aws-cdk-lib": "2.195.0",
|
|
54
54
|
"cdk8s": "2.68.91",
|
|
55
|
-
"cdk8s-cli": "^2.204.
|
|
55
|
+
"cdk8s-cli": "^2.204.3",
|
|
56
56
|
"commit-and-tag-version": "^12",
|
|
57
57
|
"constructs": "10.3.0",
|
|
58
58
|
"eslint": "^9",
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
"jsii-docgen": "^10.5.0",
|
|
67
67
|
"jsii-pacmak": "^1.126.0",
|
|
68
68
|
"jsii-rosetta": "^5",
|
|
69
|
-
"projen": "^0.99.
|
|
69
|
+
"projen": "^0.99.9",
|
|
70
70
|
"ts-jest": "^27",
|
|
71
71
|
"ts-node": "^10.9.2",
|
|
72
72
|
"typescript": "^5.9.3"
|
|
@@ -77,7 +77,7 @@
|
|
|
77
77
|
"constructs": "^10.3.0"
|
|
78
78
|
},
|
|
79
79
|
"dependencies": {
|
|
80
|
-
"@aws-sdk/client-cloudformation": "^3.
|
|
80
|
+
"@aws-sdk/client-cloudformation": "^3.978.0"
|
|
81
81
|
},
|
|
82
82
|
"bundledDependencies": [
|
|
83
83
|
"@aws-sdk/client-cloudformation"
|
|
@@ -93,7 +93,7 @@
|
|
|
93
93
|
"publishConfig": {
|
|
94
94
|
"access": "public"
|
|
95
95
|
},
|
|
96
|
-
"version": "0.0.
|
|
96
|
+
"version": "0.0.469",
|
|
97
97
|
"jest": {
|
|
98
98
|
"coverageProvider": "v8",
|
|
99
99
|
"testMatch": [
|