Skip to content

Commit ffa2a6d

Browse files
committed
Merge branch 'master' into v2/forward-merge-20220329
2 parents c7e309d + f1c465d commit ffa2a6d

File tree

104 files changed

+5968
-444
lines changed

Some content is hidden

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

104 files changed

+5968
-444
lines changed

packages/@aws-cdk/assert-internal/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"@aws-cdk/pkglint": "0.0.0",
2929
"@types/jest": "^27.4.1",
3030
"jest": "^27.5.1",
31-
"ts-jest": "^27.1.3"
31+
"ts-jest": "^27.1.4"
3232
},
3333
"dependencies": {
3434
"@aws-cdk/cloud-assembly-schema": "0.0.0",

packages/@aws-cdk/assert/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
"aws-cdk-migration": "0.0.0",
4343
"constructs": "^10.0.0",
4444
"jest": "^27.3.1",
45-
"ts-jest": "^27.1.3"
45+
"ts-jest": "^27.1.4"
4646
},
4747
"dependencies": {
4848
"@aws-cdk/cloudformation-diff": "0.0.0"

packages/@aws-cdk/assertions/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
"@types/jest": "^27.4.1",
6969
"jest": "^27.5.1",
7070
"constructs": "^10.0.0",
71-
"ts-jest": "^27.1.3"
71+
"ts-jest": "^27.1.4"
7272
},
7373
"dependencies": {
7474
"@aws-cdk/cloud-assembly-schema": "0.0.0",

packages/@aws-cdk/aws-certificatemanager/lambda-packages/dns_validated_certificate_handler/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,6 @@
4444
"lambda-tester": "^3.6.0",
4545
"sinon": "^9.2.4",
4646
"nock": "^13.2.4",
47-
"ts-jest": "^27.1.3"
47+
"ts-jest": "^27.1.4"
4848
}
4949
}

packages/@aws-cdk/aws-codepipeline-actions/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585
"@aws-cdk/cx-api": "0.0.0",
8686
"@aws-cdk/pkglint": "0.0.0",
8787
"@types/jest": "^27.4.1",
88-
"@types/lodash": "^4.14.180",
88+
"@types/lodash": "^4.14.181",
8989
"jest": "^27.5.1",
9090
"lodash": "^4.17.21"
9191
},

packages/@aws-cdk/aws-dynamodb/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@
9292
"aws-sdk-mock": "5.6.0",
9393
"jest": "^27.5.1",
9494
"sinon": "^9.2.4",
95-
"ts-jest": "^27.1.3"
95+
"ts-jest": "^27.1.4"
9696
},
9797
"dependencies": {
9898
"@aws-cdk/aws-applicationautoscaling": "0.0.0",

packages/@aws-cdk/aws-ec2/README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -199,15 +199,16 @@ MachineImage.genericLinux({ ... })` and configure the right AMI ID for the
199199
regions you want to deploy to.
200200

201201
By default, the NAT instances will route all traffic. To control what traffic
202-
gets routed, pass `allowAllTraffic: false` and access the
203-
`NatInstanceProvider.connections` member after having passed it to the VPC:
202+
gets routed, pass a custom value for `defaultAllowedTraffic` and access the
203+
`NatInstanceProvider.connections` member after having passed the NAT provider to
204+
the VPC:
204205

205206
```ts
206207
declare const instanceType: ec2.InstanceType;
207208

208209
const provider = ec2.NatProvider.instance({
209210
instanceType,
210-
allowAllTraffic: false,
211+
defaultAllowedTraffic: ec2.NatTrafficDirection.OUTBOUND_ONLY,
211212
});
212213
new ec2.Vpc(this, 'TheVPC', {
213214
natGatewayProvider: provider,

packages/@aws-cdk/aws-eks/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,8 @@
9090
"@types/sinon": "^9.0.11",
9191
"@types/yaml": "1.9.6",
9292
"aws-sdk": "^2.848.0",
93-
"cdk8s": "^1.5.48",
94-
"cdk8s-plus-21": "^1.0.0-beta.117",
93+
"cdk8s": "^1.5.56",
94+
"cdk8s-plus-21": "^1.0.0-beta.124",
9595
"jest": "^27.5.1",
9696
"sinon": "^9.2.4"
9797
},

packages/@aws-cdk/aws-lambda-nodejs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
"@aws-cdk/pkglint": "0.0.0",
8080
"@types/jest": "^27.4.1",
8181
"delay": "5.0.0",
82-
"esbuild": "^0.14.27"
82+
"esbuild": "^0.14.29"
8383
},
8484
"dependencies": {
8585
"@aws-cdk/aws-lambda": "0.0.0",

packages/@aws-cdk/aws-lambda/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@
9292
"@aws-cdk/pkglint": "0.0.0",
9393
"@types/aws-lambda": "^8.10.93",
9494
"@types/jest": "^27.4.1",
95-
"@types/lodash": "^4.14.180",
95+
"@types/lodash": "^4.14.181",
9696
"jest": "^27.5.1",
9797
"lodash": "^4.17.21"
9898
},

0 commit comments

Comments
 (0)