Skip to content

Commit a2f547f

Browse files
authored
Merge branch 'main' into mrgrain/fix/cli-print-failed-command-in-debug
2 parents bb26373 + 68d9c8b commit a2f547f

File tree

4 files changed

+20
-7
lines changed

4 files changed

+20
-7
lines changed

.github/workflows/sync-from-upstream.yml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,15 @@ jobs:
1111

1212
# Check for the presence of a PROJEN_GITHUB_TOKEN secret.
1313
#
14-
# This is expected to contain a personal access token of someone
15-
# who pas permissions to bypass branch protection rules.
14+
# This is expected to contain a personal access token of someone who has
15+
# permissions to bypass branch protection rules.
1616
#
17-
# If not present, we will use GitHub Actions Token permissions,
18-
# but those are bound by branch protection rules.
17+
# If not present, we can only use GitHub Actions Token permissions,
18+
# but this has the following downsides:
19+
#
20+
# - Those are bound by branch protection rules (so automated pushing won't work).
21+
# - As soon as a workflow file needs to be changed, GitHub will reject the push.
22+
# Only Apps and Users can be allowed to modify workflows.
1923
check-secret:
2024
# Don't run on the target repo itself, only forks
2125
if: github.repository != 'aws/aws-cdk'
@@ -52,7 +56,7 @@ jobs:
5256
- name: Sync from aws/aws-cdk
5357
run: |-
5458
git remote add upstream https://github.com/aws/aws-cdk.git
55-
git fetch upstream
59+
git fetch upstream $BRANCHES
5660
5761
for branch in $BRANCHES; do
5862
git push origin --force refs/remotes/upstream/$branch:refs/heads/$branch

CHANGELOG.v2.alpha.md

Lines changed: 2 additions & 0 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.120.0-alpha.0](https://github.com/aws/aws-cdk/compare/v2.119.0-alpha.0...v2.120.0-alpha.0) (2024-01-12)
6+
57
## [2.119.0-alpha.0](https://github.com/aws/aws-cdk/compare/v2.118.0-alpha.0...v2.119.0-alpha.0) (2024-01-11)
68

79

CHANGELOG.v2.md

Lines changed: 7 additions & 0 deletions
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.120.0](https://github.com/aws/aws-cdk/compare/v2.119.0...v2.120.0) (2024-01-12)
6+
7+
8+
### Features
9+
10+
* **ecs:** support for capacity provider managed instance draining ([#28672](https://github.com/aws/aws-cdk/issues/28672)) ([cf97f47](https://github.com/aws/aws-cdk/commit/cf97f47d9f9a1a8716a1673eb9b906ab365ee11b))
11+
512
## [2.119.0](https://github.com/aws/aws-cdk/compare/v2.118.0...v2.119.0) (2024-01-11)
613

714

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.119.0",
3-
"alphaVersion": "2.119.0-alpha.0"
2+
"version": "2.120.0",
3+
"alphaVersion": "2.120.0-alpha.0"
44
}

0 commit comments

Comments
 (0)