You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+14
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,20 @@
2
2
3
3
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.
* **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)
docker$ ../../../scripts/foreach.sh --up yarn run package
142
142
docker$ exit
@@ -352,7 +352,7 @@ $ yarn watch & # runs in the background
352
352
* Once the pull request is submitted, a reviewer will be assigned by the maintainers.
353
353
354
354
* 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.
356
356
357
357
* Discuss review comments and iterate until you get at least one "Approve". When iterating, push new commits to the
358
358
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
367
367
`package.json` file.**
368
368
369
369
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).
371
371
You can find the dependabot config file [here](./.github/dependabot.yml).
372
372
373
373
An example of this is the [@aws-cdk/lambda-layer-awscli](packages/@aws-cdk/lambda-layer-awscli) module.
374
374
This module creates a lambda layer that bundles the AWS CLI. This is considered an unconventional
375
375
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.
377
377
378
378
In order to automatically update the version of the AWS CLI, a custom build process was
379
379
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):
666
666
// An example about adding a stage to a pipeline in the @aws-cdk/pipelines library
667
667
declareconst pipeline:pipelines.CodePipeline;
668
668
declareconst myStage:Stage;
669
-
pipeline.addStage(myStage);
669
+
pipeline.addStage(myStage);
670
670
```
671
671
672
672
- Utilize the `default.ts-fixture` that already exists rather than writing new
0 commit comments