Skip to content

Commit d035432

Browse files
authored
chore(release): 2.28.1 (#20757)
Patch release to resolve #20751 ---- ### All Submissions: * [ ] Have you followed the guidelines in our [Contributing guide?](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) ### Adding new Unconventional Dependencies: * [ ] This PR adds new unconventional dependencies following the process described [here](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md/#adding-new-unconventional-dependencies) ### New Features * [ ] Have you added the new feature to an [integration test](https://github.com/aws/aws-cdk/blob/main/INTEGRATION_TESTS.md)? * [ ] Did you use `yarn integ` to deploy the infrastructure and generate the snapshot (i.e. `yarn integ` without `--dry-run`)? *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
2 parents ba233f0 + d80d044 commit d035432

File tree

9 files changed

+20
-11
lines changed

9 files changed

+20
-11
lines changed

CHANGELOG.v2.alpha.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
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+
## [2.28.1-alpha.0](https://github.com/aws/aws-cdk/compare/v2.28.0-alpha.0...v2.28.1-alpha.0) (2022-06-15)
6+
57
## [2.28.0-alpha.0](https://github.com/aws/aws-cdk/compare/v2.27.0-alpha.0...v2.28.0-alpha.0) (2022-06-14)
68

79

@@ -279,7 +281,7 @@ All notable changes to this project will be documented in this file. See [standa
279281

280282
* **lambda-python:** `assetHashType` and `assetHash` properties moved to new `bundling` property.
281283
* **lambda-python:** Runtime is now required for `LambdaPython`
282-
* **appsync:** The `CachingConfig#ttl` property is now required.
284+
* **appsync:** The `CachingConfig#ttl` property is now required.
283285

284286
[1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-resolver-cachingconfig.html#cfn-appsync-resolver-cachingconfig-ttl
285287

@@ -311,7 +313,7 @@ All notable changes to this project will be documented in this file. See [standa
311313
* **glue:** the grantRead API previously included 'glue:BatchDeletePartition', and now it does not.
312314

313315

314-
316+
315317

316318
### Features
317319

CHANGELOG.v2.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
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+
## [2.28.1](https://github.com/aws/aws-cdk/compare/v2.28.0...v2.28.1) (2022-06-15)
6+
7+
8+
### Bug Fixes
9+
10+
* **init-templates:** unable to initialize typescript templates ([#20752](https://github.com/aws/aws-cdk/issues/20752)) ([7c06164](https://github.com/aws/aws-cdk/commit/7c061640bc829157ecdcf3fc8c470c5d5aebc3a4)), closes [#20751](https://github.com/aws/aws-cdk/issues/20751)
11+
512
## [2.28.0](https://github.com/aws/aws-cdk/compare/v2.27.0...v2.28.0) (2022-06-14)
613

714

@@ -1959,7 +1966,7 @@ section is changed from `HttpMethod` to `CorsHttpMethod`.
19591966

19601967
### ⚠ BREAKING CHANGES TO EXPERIMENTAL FEATURES
19611968

1962-
* **ecs-patterns:** ** the desiredCount property stored on the above constructs will be optional, allowing them to be undefined. This is enabled through the `@aws-cdk/aws-ecs-patterns:removeDefaultDesiredCount` feature flag. We would recommend all aws-cdk users to set the `REMOVE_DEFAULT_DESIRED_COUNT` flag to true for all of their existing applications.
1969+
* **ecs-patterns:** ** the desiredCount property stored on the above constructs will be optional, allowing them to be undefined. This is enabled through the `@aws-cdk/aws-ecs-patterns:removeDefaultDesiredCount` feature flag. We would recommend all aws-cdk users to set the `REMOVE_DEFAULT_DESIRED_COUNT` flag to true for all of their existing applications.
19631970

19641971
Fixes: https://github.com/aws/aws-cdk/issues/12990
19651972
* **aws-appsync:** RdsDataSource now takes a ServerlessCluster instead of a DatabaseCluster

packages/aws-cdk/lib/init-templates/v1/app/typescript/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"devDependencies": {
1414
"@aws-cdk/assertions": "%cdk-version%",
1515
"@types/prettier": "2.6.0",
16-
"@types/jest": "^28.1.1",
16+
"@types/jest": "^27.5.2",
1717
"@types/node": "10.17.27",
1818
"jest": "^27.5.1",
1919
"ts-jest": "^27.1.4",

packages/aws-cdk/lib/init-templates/v1/lib/typescript/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
},
1111
"devDependencies": {
1212
"@aws-cdk/assertions": "%cdk-version%",
13-
"@types/jest": "^28.1.1",
13+
"@types/jest": "^27.5.2",
1414
"@types/prettier": "2.6.0",
1515
"@types/node": "10.17.27",
1616
"jest": "^27.5.1",

packages/aws-cdk/lib/init-templates/v1/sample-app/typescript/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"devDependencies": {
1414
"aws-cdk": "%cdk-version%",
1515
"@aws-cdk/assertions": "%cdk-version%",
16-
"@types/jest": "^28.1.1",
16+
"@types/jest": "^27.5.2",
1717
"@types/node": "10.17.27",
1818
"@types/prettier": "2.6.0",
1919
"jest": "^27.5.1",

packages/aws-cdk/lib/init-templates/v2/app/typescript/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"cdk": "cdk"
1212
},
1313
"devDependencies": {
14-
"@types/jest": "^28.1.1",
14+
"@types/jest": "^27.5.2",
1515
"@types/node": "10.17.27",
1616
"@types/prettier": "2.6.0",
1717
"jest": "^27.5.1",

packages/aws-cdk/lib/init-templates/v2/lib/typescript/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"test": "jest"
1010
},
1111
"devDependencies": {
12-
"@types/jest": "^28.1.1",
12+
"@types/jest": "^27.5.2",
1313
"@types/node": "10.17.27",
1414
"@types/prettier": "2.6.0",
1515
"aws-cdk-lib": "%cdk-version%",

packages/aws-cdk/lib/init-templates/v2/sample-app/typescript/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
},
1313
"devDependencies": {
1414
"aws-cdk": "%cdk-version%",
15-
"@types/jest": "^28.1.1",
15+
"@types/jest": "^27.5.2",
1616
"@types/node": "10.17.27",
1717
"@types/prettier": "2.6.0",
1818
"jest": "^27.5.1",

version.v2.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"version": "2.28.0",
3-
"alphaVersion": "2.28.0-alpha.0"
2+
"version": "2.28.1",
3+
"alphaVersion": "2.28.1-alpha.0"
44
}

0 commit comments

Comments
 (0)