Skip to content

Commit 7ee04a6

Browse files
authored
Merge branch 'master' into robertd/batch
2 parents fef6e25 + d603680 commit 7ee04a6

File tree

540 files changed

+551
-221410
lines changed

Some content is hidden

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

540 files changed

+551
-221410
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: >

CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,24 @@
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.155.0](https://github.com/aws/aws-cdk/compare/v1.154.0...v1.155.0) (2022-05-04)
6+
7+
8+
### Features
9+
10+
* **cfnspec:** cloudformation spec v68.0.0 ([#20065](https://github.com/aws/aws-cdk/issues/20065)) ([f199fad](https://github.com/aws/aws-cdk/commit/f199faddc0b8e565aa413e480e51d25fed5321bf))
11+
* **cloudwatch:** Add CustomWidget ([#19327](https://github.com/aws/aws-cdk/issues/19327)) ([489340e](https://github.com/aws/aws-cdk/commit/489340ea383c9130c315853afae0137b1fa03eb0)), closes [#17579](https://github.com/aws/aws-cdk/issues/17579)
12+
* **ec2:** add i4i instance type ([#20134](https://github.com/aws/aws-cdk/issues/20134)) ([64c5064](https://github.com/aws/aws-cdk/commit/64c50640e7f5897f08af3f86cd28a1dab3cd2430))
13+
* **iam:** add convenience method `inOrganization` to ArnPrincipal ([#20109](https://github.com/aws/aws-cdk/issues/20109)) ([c545bfe](https://github.com/aws/aws-cdk/commit/c545bfe2a3ccb53fa5ae2eb725a1696677703c0a)), closes [/github.com/aws/aws-cdk/pull/19975#discussion_r857385168](https://github.com/aws//github.com/aws/aws-cdk/pull/19975/issues/discussion_r857385168) [#19975](https://github.com/aws/aws-cdk/issues/19975)
14+
* **lambda:** `function.addAlias()` simplifies Alias creation ([#20034](https://github.com/aws/aws-cdk/issues/20034)) ([a79bc47](https://github.com/aws/aws-cdk/commit/a79bc47aaa6737628562c251e2f1990b2c7b88ef))
15+
* **rds:** add secret rotation to `DatabaseClusterFromSnapshot` ([#20020](https://github.com/aws/aws-cdk/issues/20020)) ([abc3502](https://github.com/aws/aws-cdk/commit/abc3502eef9b1b950f4e9d2c3f5f44b7e2f6476d)), closes [#12877](https://github.com/aws/aws-cdk/issues/12877)
16+
17+
18+
### Bug Fixes
19+
20+
* **lambda:** grant invoke twice with different principals ([#20174](https://github.com/aws/aws-cdk/issues/20174)) ([bb4c950](https://github.com/aws/aws-cdk/commit/bb4c9506c7395fc3c84725fb8e6054ac23ca2bf7))
21+
* **ubergen:** expose exports in core module for v2 ([#20176](https://github.com/aws/aws-cdk/issues/20176)) ([fc2cd48](https://github.com/aws/aws-cdk/commit/fc2cd48a3aabaf0d5214b322794c6a49d9c700c9)), closes [#19773](https://github.com/aws/aws-cdk/issues/19773)
22+
523
## [1.154.0](https://github.com/aws/aws-cdk/compare/v1.153.1...v1.154.0) (2022-04-27)
624

725

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

0 commit comments

Comments
 (0)