Skip to content

Commit 3434840

Browse files
authored
2 parents 7ca8212 + 51bb924 commit 3434840

File tree

129 files changed

+6220
-496
lines changed

Some content is hidden

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

129 files changed

+6220
-496
lines changed

.github/workflows/yarn-upgrade.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ jobs:
108108
}}/upgrade.patch || echo "Empty patch. Skipping."'
109109

110110
- name: Make Pull Request
111-
uses: peter-evans/create-pull-request@v3
111+
uses: peter-evans/create-pull-request@v4
112112
with:
113113
# Git commit details
114114
branch: automation/yarn-upgrade

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,21 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
## [1.151.0](https://github.com/aws/aws-cdk/compare/v1.150.0...v1.151.0) (2022-03-30)
6+
7+
8+
### Features
9+
10+
* add new integration test runner ([#19529](https://github.com/aws/aws-cdk/issues/19529)) ([e7f43d1](https://github.com/aws/aws-cdk/commit/e7f43d1a3bb52bbf589d7472c9a9b89e3c1cc8c1))
11+
* **aws-ec2:** Enable/disable EC2 "Detailed Monitoring" ([#19437](https://github.com/aws/aws-cdk/issues/19437)) ([94f9d27](https://github.com/aws/aws-cdk/commit/94f9d27e626bced5fc68a6ebbd653fea21c6e21e))
12+
* **cognito:** configure SNS region for UserPool SMS messages ([#19519](https://github.com/aws/aws-cdk/issues/19519)) ([6eb775e](https://github.com/aws/aws-cdk/commit/6eb775e829d62913bff849d43ed7339f9910d8de)), closes [#19434](https://github.com/aws/aws-cdk/issues/19434)
13+
14+
15+
### Bug Fixes
16+
17+
* **aws-cdk:** include nested stacks when building changesets ([#19494](https://github.com/aws/aws-cdk/issues/19494)) ([97cc8e2](https://github.com/aws/aws-cdk/commit/97cc8e29e155b222d553b1fe955a0302036feed5)), closes [#5722](https://github.com/aws/aws-cdk/issues/5722) [#17396](https://github.com/aws/aws-cdk/issues/17396) [#19224](https://github.com/aws/aws-cdk/issues/19224)
18+
* **docdb:** DB Instance ARN uses 'docdb' as the service component instead of 'rds' ([#19555](https://github.com/aws/aws-cdk/issues/19555)) ([6a63924](https://github.com/aws/aws-cdk/commit/6a63924c0b184342befd92903b8867e45b158252)), closes [#19554](https://github.com/aws/aws-cdk/issues/19554)
19+
520
## [1.150.0](https://github.com/aws/aws-cdk/compare/v1.149.0...v1.150.0) (2022-03-26)
621

722

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
@@ -41,7 +41,7 @@
4141
"aws-cdk-migration": "0.0.0",
4242
"constructs": "^3.3.69",
4343
"jest": "^27.3.1",
44-
"ts-jest": "^27.1.3"
44+
"ts-jest": "^27.1.4"
4545
},
4646
"dependencies": {
4747
"@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
"constructs": "^3.3.69",
7070
"jest": "^27.5.1",
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-applicationautoscaling/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ const handler = new lambda.Function(this, 'MyFunction', {
222222
reservedConcurrentExecutions: 2,
223223
});
224224

225-
const fnVer = handler.addVersion('CDKLambdaVersion', undefined, 'demo alias', 10);
225+
const fnVer = handler.currentVersion;
226226

227227
const target = new appscaling.ScalableTarget(this, 'ScalableTarget', {
228228
serviceNamespace: appscaling.ServiceNamespace.LAMBDA,

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-codedeploy/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ To create a new CodeDeploy Deployment Group that deploys to a Lambda function:
207207
```ts
208208
declare const myApplication: codedeploy.LambdaApplication;
209209
declare const func: lambda.Function;
210-
const version = func.addVersion('1');
210+
const version = func.currentVersion;
211211
const version1Alias = new lambda.Alias(this, 'alias', {
212212
aliasName: 'prod',
213213
version,
@@ -222,7 +222,7 @@ const deploymentGroup = new codedeploy.LambdaDeploymentGroup(this, 'BlueGreenDep
222222

223223
In order to deploy a new version of this function:
224224

225-
1. Increment the version, e.g. `const version = func.addVersion('2')`.
225+
1. Reference the version with the latest changes `const version = func.currentVersion`.
226226
2. Re-deploy the stack (this will trigger a deployment).
227227
3. Monitor the CodeDeploy deployment as traffic shifts between the versions.
228228

packages/@aws-cdk/aws-codepipeline-actions/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -765,7 +765,7 @@ const func = new lambda.Function(this, 'Lambda', {
765765
runtime: lambda.Runtime.NODEJS_12_X,
766766
});
767767
// used to make sure each CDK synthesis produces a different Version
768-
const version = func.addVersion('NewVersion');
768+
const version = func.currentVersion;
769769
const alias = new lambda.Alias(this, 'LambdaAlias', {
770770
aliasName: 'Prod',
771771
version,

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

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

0 commit comments

Comments
 (0)