@cdklabs/cdk-ecs-codedeploy 0.0.350 → 0.0.351
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 +2 -2
- package/.jsii.tabl.json +1 -1
- package/lib/api-canary/index.js +1 -1
- package/lib/ecs-appspec/index.js +1 -1
- package/lib/ecs-deployment/index.js +1 -1
- package/lib/ecs-patterns/application-load-balanced-codedeployed-fargate-service.js +1 -1
- package/node_modules/@smithy/abort-controller/package.json +2 -2
- package/node_modules/@smithy/config-resolver/package.json +4 -4
- package/node_modules/@smithy/core/package.json +6 -6
- package/node_modules/@smithy/credential-provider-imds/package.json +5 -5
- package/node_modules/@smithy/fetch-http-handler/package.json +5 -5
- package/node_modules/@smithy/hash-node/package.json +2 -2
- package/node_modules/@smithy/invalid-dependency/package.json +2 -2
- package/node_modules/@smithy/middleware-content-length/package.json +3 -3
- package/node_modules/@smithy/middleware-endpoint/package.json +8 -8
- package/node_modules/@smithy/middleware-retry/package.json +8 -8
- package/node_modules/@smithy/middleware-serde/package.json +2 -2
- package/node_modules/@smithy/middleware-stack/package.json +2 -2
- package/node_modules/@smithy/node-config-provider/package.json +4 -4
- package/node_modules/@smithy/node-http-handler/dist-cjs/index.js +11 -8
- package/node_modules/@smithy/node-http-handler/dist-es/timing.js +2 -2
- package/node_modules/@smithy/node-http-handler/dist-es/write-request-body.js +9 -6
- package/node_modules/@smithy/node-http-handler/dist-types/timing.d.ts +2 -2
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/timing.d.ts +2 -2
- package/node_modules/@smithy/node-http-handler/package.json +5 -5
- package/node_modules/@smithy/property-provider/package.json +2 -2
- package/node_modules/@smithy/protocol-http/package.json +2 -2
- package/node_modules/@smithy/querystring-builder/package.json +2 -2
- package/node_modules/@smithy/querystring-parser/package.json +2 -2
- package/node_modules/@smithy/service-error-classification/dist-cjs/index.js +2 -2
- package/node_modules/@smithy/service-error-classification/dist-es/index.js +3 -2
- package/node_modules/@smithy/service-error-classification/dist-types/index.d.ts +1 -1
- package/node_modules/@smithy/service-error-classification/dist-types/ts3.4/index.d.ts +1 -1
- package/node_modules/@smithy/service-error-classification/package.json +2 -2
- package/node_modules/@smithy/shared-ini-file-loader/package.json +2 -2
- package/node_modules/@smithy/signature-v4/package.json +4 -4
- package/node_modules/@smithy/smithy-client/package.json +7 -7
- package/node_modules/@smithy/types/dist-types/shapes.d.ts +1 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/shapes.d.ts +1 -0
- package/node_modules/@smithy/types/package.json +1 -1
- package/node_modules/@smithy/url-parser/package.json +3 -3
- package/node_modules/@smithy/util-defaults-mode-browser/package.json +4 -4
- package/node_modules/@smithy/util-defaults-mode-node/package.json +7 -7
- package/node_modules/@smithy/util-endpoints/package.json +3 -3
- package/node_modules/@smithy/util-middleware/package.json +2 -2
- package/node_modules/@smithy/util-retry/package.json +3 -3
- package/node_modules/@smithy/util-stream/package.json +4 -4
- package/node_modules/@smithy/util-waiter/dist-cjs/index.js +31 -4
- package/node_modules/@smithy/util-waiter/dist-es/poller.js +30 -4
- package/node_modules/@smithy/util-waiter/dist-types/ts3.4/waiter.d.ts +5 -0
- package/node_modules/@smithy/util-waiter/dist-types/waiter.d.ts +5 -0
- package/node_modules/@smithy/util-waiter/package.json +3 -3
- package/package.json +5 -5
|
@@ -34,6 +34,11 @@ export type WaiterResult = {
|
|
|
34
34
|
* (optional) Indicates a reason for why a waiter has reached its state.
|
|
35
35
|
*/
|
|
36
36
|
reason?: any;
|
|
37
|
+
/**
|
|
38
|
+
* Responses observed by the waiter during its polling, where the value
|
|
39
|
+
* is the count.
|
|
40
|
+
*/
|
|
41
|
+
observedResponses?: Record<string, number>;
|
|
37
42
|
};
|
|
38
43
|
/**
|
|
39
44
|
* @internal
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@smithy/util-waiter",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.2.0",
|
|
4
4
|
"description": "Shared utilities for client waiters for the AWS SDK",
|
|
5
5
|
"dependencies": {
|
|
6
|
-
"@smithy/abort-controller": "^3.1.
|
|
7
|
-
"@smithy/types": "^3.7.
|
|
6
|
+
"@smithy/abort-controller": "^3.1.9",
|
|
7
|
+
"@smithy/types": "^3.7.2",
|
|
8
8
|
"tslib": "^2.6.2"
|
|
9
9
|
},
|
|
10
10
|
"scripts": {
|
package/package.json
CHANGED
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
"devDependencies": {
|
|
74
74
|
"@aws-cdk/integ-runner": "latest",
|
|
75
75
|
"@aws-cdk/integ-tests-alpha": "latest",
|
|
76
|
-
"@types/aws-lambda": "^8.10.
|
|
76
|
+
"@types/aws-lambda": "^8.10.146",
|
|
77
77
|
"@types/jest": "^27",
|
|
78
78
|
"@types/lambda-tester": "^3.6.2",
|
|
79
79
|
"@types/node": "^18",
|
|
@@ -83,13 +83,13 @@
|
|
|
83
83
|
"aws-cdk-lib": "2.139.0",
|
|
84
84
|
"aws-sdk-client-mock": "^4.1.0",
|
|
85
85
|
"aws-sdk-client-mock-jest": "^4.1.0",
|
|
86
|
-
"cdk-nag": "^2.34.
|
|
86
|
+
"cdk-nag": "^2.34.19",
|
|
87
87
|
"cdklabs-projen-project-types": "^0.1.204",
|
|
88
88
|
"commit-and-tag-version": "^12",
|
|
89
89
|
"constructs": "10.0.5",
|
|
90
90
|
"esbuild": "^0.24.0",
|
|
91
91
|
"eslint": "^8",
|
|
92
|
-
"eslint-import-resolver-typescript": "^3.
|
|
92
|
+
"eslint-import-resolver-typescript": "^3.7.0",
|
|
93
93
|
"eslint-plugin-import": "^2.31.0",
|
|
94
94
|
"jest": "^27",
|
|
95
95
|
"jest-junit": "^15",
|
|
@@ -97,7 +97,7 @@
|
|
|
97
97
|
"jsii-diff": "^1.105.0",
|
|
98
98
|
"jsii-docgen": "^10.5.0",
|
|
99
99
|
"jsii-pacmak": "^1.105.0",
|
|
100
|
-
"jsii-rosetta": "^5.6.
|
|
100
|
+
"jsii-rosetta": "^5.6.2",
|
|
101
101
|
"lambda-tester": "^4.0.1",
|
|
102
102
|
"projen": "0.87.4",
|
|
103
103
|
"ts-jest": "^27",
|
|
@@ -127,7 +127,7 @@
|
|
|
127
127
|
"publishConfig": {
|
|
128
128
|
"access": "public"
|
|
129
129
|
},
|
|
130
|
-
"version": "0.0.
|
|
130
|
+
"version": "0.0.351",
|
|
131
131
|
"jest": {
|
|
132
132
|
"coverageProvider": "v8",
|
|
133
133
|
"testMatch": [
|