Skip to content

Commit 68f5f20

Browse files
authored
2 parents 9df2962 + 4a75b2d commit 68f5f20

File tree

822 files changed

+2068
-222673
lines changed

Some content is hidden

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

822 files changed

+2068
-222673
lines changed

.github/workflows/issue-label-assign.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
env:
5959
OSDS_DEVS: >
6060
{
61-
"assignees":["NGL321","peterwoodworth","ryparker"]
61+
"assignees":["NGL321","peterwoodworth"]
6262
}
6363
6464
AREA_AFFIXES: >

.github/workflows/yarn-upgrade.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
lerna exec --parallel ncu -- --upgrade --reject='@types/node,@types/fs-extra,constructs,typescript,aws-sdk,aws-sdk-mock,${{ steps.list-packages.outputs.list }}' --target=minor
6868
# Upgrade package.jsons in init templates
6969
for pj in $(find packages/aws-cdk/lib/init-templates -name package.json); do
70-
(cd $(dirname $pj) && ncu --upgrade --reject='@types/node,@types/fs-extra,constructs,typescript,aws-sdk,aws-sdk-mock,${{ steps.list-packages.outputs.list }}')
70+
(cd $(dirname $pj) && ncu --upgrade --reject='@types/node,@types/fs-extra,constructs,typescript,aws-sdk,aws-sdk-mock,ts-jest,jest,${{ steps.list-packages.outputs.list }}')
7171
done
7272
7373
# This will ensure the current lockfile is up-to-date with the dependency specifications (necessary for "yarn update" to run)
@@ -120,6 +120,7 @@ jobs:
120120
with:
121121
# Git commit details
122122
branch: automation/yarn-upgrade
123+
author: aws-cdk-automation <[email protected]>
123124
commit-message: |-
124125
chore: npm-check-updates && yarn upgrade
125126
Ran npm-check-updates and yarn upgrade to keep the `yarn.lock` file up-to-date.

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,20 @@
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.156.0](https://github.com/aws/aws-cdk/compare/v1.155.0...v1.156.0) (2022-05-11)
6+
7+
8+
### Features
9+
10+
* **lambda:** nodejs16.x runtime ([#20261](https://github.com/aws/aws-cdk/issues/20261)) ([edf7c86](https://github.com/aws/aws-cdk/commit/edf7c864f90acc4f29ff78ff0de74e324f8b85ee))
11+
12+
13+
### Bug Fixes
14+
15+
* **appsync:** incorrect region used for imported Cognito user pool ([#20193](https://github.com/aws/aws-cdk/issues/20193)) ([3e0393e](https://github.com/aws/aws-cdk/commit/3e0393e63e84d631545734425482deae687520f1)), closes [#20195](https://github.com/aws/aws-cdk/issues/20195)
16+
* **cognito:** UserPoolDomain.baseUrl() does not return FIPS-compliant url for gov cloud regions ([#20200](https://github.com/aws/aws-cdk/issues/20200)) ([dd10df1](https://github.com/aws/aws-cdk/commit/dd10df1c84eaa752e3587a6b1f0c7e28b9d508e3)), closes [#20182](https://github.com/aws/aws-cdk/issues/20182) [#12500](https://github.com/aws/aws-cdk/issues/12500)
17+
* **stepfunctions:** map property maxConcurrency is not token-aware ([#20279](https://github.com/aws/aws-cdk/issues/20279)) ([14be764](https://github.com/aws/aws-cdk/commit/14be76497b85f6cd9083620ebe5d890359540aa5)), closes [#20152](https://github.com/aws/aws-cdk/issues/20152)
18+
519
## [1.155.0](https://github.com/aws/aws-cdk/compare/v1.154.0...v1.155.0) (2022-05-04)
620

721

CONTRIBUTING.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ To package a specific module, say the `@aws-cdk/aws-ec2` module:
136136

137137
```console
138138
$ cd <root-of-cdk-repo>
139-
$ docker run --rm --net=host -it -v $PWD:$PWD -w $PWD jsii/superchain
139+
$ docker run --rm --net=host -it -v $PWD:$PWD -w $PWD jsii/superchain:1-buster-slim
140140
docker$ cd packages/@aws-cdk/aws-ec2
141141
docker$ ../../../scripts/foreach.sh --up yarn run package
142142
docker$ exit
@@ -352,7 +352,7 @@ $ yarn watch & # runs in the background
352352
* Once the pull request is submitted, a reviewer will be assigned by the maintainers.
353353

354354
* If the PR build is failing, update the PR with fixes until the build succeeds. You may have trouble getting attention
355-
from maintainers if your build is failing, and after 4 weeks of staleness, your PR will be automatically closed.
355+
from maintainers if your build is failing, and after 4 weeks of staleness, your PR will be automatically closed.
356356

357357
* Discuss review comments and iterate until you get at least one "Approve". When iterating, push new commits to the
358358
same branch. Usually all these are going to be squashed when you merge to master. The commit messages should be hints
@@ -367,13 +367,13 @@ $ yarn watch & # runs in the background
367367
`package.json` file.**
368368

369369
Sometimes constructs introduce new unconventional dependencies. Any new unconventional dependency that is introduced needs to have
370-
an auto upgrade process in place. The recommended way to update dependencies is through [dependabot](https://docs.github.com/en/code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/configuration-options-for-dependency-updates).
370+
an auto upgrade process in place. The recommended way to update dependencies is through [dependabot](https://docs.github.com/en/code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/configuration-options-for-dependency-updates).
371371
You can find the dependabot config file [here](./.github/dependabot.yml).
372372

373373
An example of this is the [@aws-cdk/lambda-layer-awscli](packages/@aws-cdk/lambda-layer-awscli) module.
374374
This module creates a lambda layer that bundles the AWS CLI. This is considered an unconventional
375375
dependency because the AWS CLI is bundled into the CDK as part of the build, and the version
376-
of the AWS CLI that is bundled is not managed by the `package.json` file.
376+
of the AWS CLI that is bundled is not managed by the `package.json` file.
377377

378378
In order to automatically update the version of the AWS CLI, a custom build process was
379379
created that takes upgrades into consideration. You can take a look at the files in
@@ -666,7 +666,7 @@ cases where some of those do not apply - good judgement is to be applied):
666666
// An example about adding a stage to a pipeline in the @aws-cdk/pipelines library
667667
declare const pipeline: pipelines.CodePipeline;
668668
declare const myStage: Stage;
669-
pipeline.addStage(myStage);
669+
pipeline.addStage(myStage);
670670
```
671671

672672
- Utilize the `default.ts-fixture` that already exists rather than writing new

package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@
1616
},
1717
"devDependencies": {
1818
"@yarnpkg/lockfile": "^1.1.0",
19-
"cdk-generate-synthetic-examples": "^0.1.8",
19+
"cdk-generate-synthetic-examples": "^0.1.10",
2020
"conventional-changelog-cli": "^2.2.2",
2121
"fs-extra": "^9.1.0",
2222
"graceful-fs": "^4.2.10",
23-
"jest-junit": "^13.1.0",
24-
"jsii-diff": "^1.57.0",
25-
"jsii-pacmak": "^1.57.0",
26-
"jsii-reflect": "^1.57.0",
27-
"jsii-rosetta": "^1.57.0",
23+
"jest-junit": "^13.2.0",
24+
"jsii-diff": "^1.58.0",
25+
"jsii-pacmak": "^1.58.0",
26+
"jsii-reflect": "^1.58.0",
27+
"jsii-rosetta": "^1.58.0",
2828
"lerna": "^4.0.0",
2929
"patch-package": "^6.4.7",
3030
"semver": "^6.3.0",

packages/@aws-cdk-containers/ecs-service-extensions/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
},
3838
"license": "Apache-2.0",
3939
"devDependencies": {
40-
"@types/jest": "^27.4.1",
40+
"@types/jest": "^27.5.0",
4141
"@aws-cdk/cdk-build-tools": "0.0.0",
4242
"@aws-cdk/integ-runner": "0.0.0",
4343
"@aws-cdk/aws-autoscaling": "0.0.0",

packages/@aws-cdk/alexa-ask/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
"@aws-cdk/cdk-build-tools": "0.0.0",
8585
"@aws-cdk/cfn2ts": "0.0.0",
8686
"@aws-cdk/pkglint": "0.0.0",
87-
"@types/jest": "^27.4.1"
87+
"@types/jest": "^27.5.0"
8888
},
8989
"dependencies": {
9090
"@aws-cdk/core": "0.0.0",

packages/@aws-cdk/app-delivery/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@
7272
"@aws-cdk/cdk-build-tools": "0.0.0",
7373
"@aws-cdk/integ-runner": "0.0.0",
7474
"@aws-cdk/pkglint": "0.0.0",
75-
"@types/jest": "^27.4.1",
76-
"fast-check": "^2.24.0",
75+
"@types/jest": "^27.5.0",
76+
"fast-check": "^2.25.0",
7777
"jest": "^27.5.1"
7878
},
7979
"repository": {

0 commit comments

Comments
 (0)