Skip to content

chore(release): 2.180.0 #33538

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 32 commits into from
Feb 21, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
6098816
feat(cloudwatch): throw `ValidationErrors` instead of untyped Errors …
kaizencc Feb 17, 2025
70263b2
docs: update CDK Roadmap - 2/2025 (#33379)
saiyush Feb 17, 2025
bb4fc11
Merge branch 'main' into merge-back/2.179.0
mergify[bot] Feb 18, 2025
c7a9a3c
chore(merge-back): 2.179.0 (#33484)
mergify[bot] Feb 18, 2025
411dc5a
chore: remove service spec yarn resolutions (#33485)
iliapolo Feb 18, 2025
8b87a63
chore: remove code (#33474)
rix0rrr Feb 18, 2025
7be4456
chore: remove packageManager from package.json (#33488)
badmintoncryer Feb 18, 2025
a2cd7ae
fix(stepfunctions): disabling logging still requires LogGroup (#30816)
Tietew Feb 18, 2025
8f3e793
feat(cloudfront): vpc origins (#33318)
Tietew Feb 18, 2025
8eeb8e4
chore(s3): update annotation phrase of addReplicationPolicy() (#33459)
badmintoncryer Feb 18, 2025
f4453c7
feat(kinesis): support stream consumers (#32087)
humanzz Feb 18, 2025
b16fac2
fix(stepfunctions): various JSONata query language fix (#33404)
GavinZZ Feb 19, 2025
3b7cf94
chore(ec2): add Windows Server 2025 to WindowsVersion enum (#33499)
invalidexplorer Feb 19, 2025
7901f07
feat(codepipeline-actions): support `timeout` for `ManualApprovalActi…
go-to-k Feb 19, 2025
0379878
fix(logs): `DataProtectionPolicy` template key must be PascalCase (#3…
phuhung273 Feb 19, 2025
d8b0da7
feat(ses): configurationset support default event bus and firehose as…
phuhung273 Feb 19, 2025
ff9fc77
chore: fix sync workflow (#33486)
gracelu0 Feb 19, 2025
d946eb7
fix(lambda): updating addToRolePolicy to avoid circular dependency po…
IkeNefcy Feb 19, 2025
fb587b8
chore(rds): add support for 8.0.mysql_aurora.3.08.1 (#33502)
schabe77 Feb 19, 2025
ae544a1
chore(rds): added Postgres 16.7 version (#33509)
ashishdhingra Feb 19, 2025
6f1aa80
chore: add enum-like updater (#33500)
Leo10Gama Feb 19, 2025
be3bce3
feat(glue-alpha): include extra jars parameter in pyspark jobs (#33238)
gontzalm Feb 19, 2025
8728d5b
docs(apigateway): fix doc of `Vary` header for `allowOrigins` (#33519)
go-to-k Feb 20, 2025
b06daf8
fix(core): adding warnings to alert when properties will be overwritt…
IkeNefcy Feb 20, 2025
1b116b9
feat(cloudfront): support gRPC for distribution (#32535)
go-to-k Feb 20, 2025
241bda3
chore: add remote branch check to workflows (#33525)
gracelu0 Feb 20, 2025
738686d
chore: fix stepfunctions import (#33529)
GavinZZ Feb 20, 2025
93a3348
feat: update L1 CloudFormation resource definitions (#33531)
aws-cdk-automation Feb 20, 2025
afa3d1f
chore: fix yarn upgrade workflow (#33533)
GavinZZ Feb 20, 2025
315be88
feat(cloudfront-origins): read versioned access level (#33038)
matthiasgubler Feb 20, 2025
47cae25
chore: tweak enum-like parser to exclude certain classes (#33536)
Leo10Gama Feb 21, 2025
27ec448
chore(release): 2.180.0
Feb 21, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
9 changes: 8 additions & 1 deletion .github/workflows/analytics-metadata-updater.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,14 @@ jobs:
run: |
git config --global user.name 'aws-cdk-automation'
git config --global user.email '[email protected]'
git checkout -B ${{ github.event.pull_request.head.ref }}

git fetch origin ${{ github.event.pull_request.head.ref }}

if [ "$(git rev-parse HEAD)" != "$(git rev-parse origin/${{ github.event.pull_request.head.ref }})" ]; then
echo "Remote branch updated since approved commit; aborting."
exit 1
fi

git add .
git commit -m "chore: update analytics metadata blueprints"
git push origin ${{ github.event.pull_request.head.ref }}
Expand Down
10 changes: 2 additions & 8 deletions .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
collect:
name: collect
Expand All @@ -26,19 +26,13 @@ jobs:
- name: Build Library
run: npx lerna run build --scope=aws-cdk-lib

- name: Build CLI
run: npx lerna run build --scope=aws-cdk

- name: Run Core tests
run: cd packages/aws-cdk-lib && yarn test core

- name: Run CLI tests
run: cd packages/aws-cdk && yarn test

- name: Upload results to Codecov
uses: codecov/codecov-action@v5
with:
files: packages/aws-cdk/coverage/cobertura-coverage.xml,packages/aws-cdk-lib/coverage/cobertura-coverage.xml
files: packages/aws-cdk-lib/coverage/cobertura-coverage.xml
fail_ci_if_error: true
flags: suite.unit
use_oidc: true
9 changes: 8 additions & 1 deletion .github/workflows/lambda-runtime-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,14 @@ jobs:
run: |
git config --global user.name 'aws-cdk-automation'
git config --global user.email '[email protected]'
git checkout -B ${{ github.event.pull_request.head.ref }}

git fetch origin ${{ github.event.pull_request.head.ref }}

if [ "$(git rev-parse HEAD)" != "$(git rev-parse origin/${{ github.event.pull_request.head.ref }})" ]; then
echo "Remote branch updated since approved commit; aborting."
exit 1
fi

git add .
git commit -m "chore: update lambda runtime integration tests"
git push origin ${{ github.event.pull_request.head.ref }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sync-from-upstream.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
run: |-
git remote add upstream https://github.com/aws/aws-cdk.git
git fetch upstream $BRANCHES
git lfs fetch upstream
git lfs fetch --all upstream

for branch in $BRANCHES; do
git push origin --force refs/remotes/upstream/$branch:refs/heads/$branch
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/yarn-upgrade.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,6 @@ jobs:
- name: Run "yarn upgrade"
run: yarn upgrade

- name: Regenerate CLI attributions
run: cd packages/aws-cdk && yarn pkglint
- name: Regenerate Integ Runner attributions
run: cd packages/@aws-cdk/integ-runner && yarn pkglint

Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.v2.alpha.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

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.

## [2.180.0-alpha.0](https://github.com/aws/aws-cdk/compare/v2.179.0-alpha.0...v2.180.0-alpha.0) (2025-02-21)


### Features

* **glue-alpha:** include extra jars parameter in pyspark jobs ([#33238](https://github.com/aws/aws-cdk/issues/33238)) ([be3bce3](https://github.com/aws/aws-cdk/commit/be3bce385c18af99b1fb3d0940a2cbec4f51e8d3)), closes [#33225](https://github.com/aws/aws-cdk/issues/33225)

## [2.179.0-alpha.0](https://github.com/aws/aws-cdk/compare/v2.178.2-alpha.0...v2.179.0-alpha.0) (2025-02-17)


Expand Down
23 changes: 23 additions & 0 deletions CHANGELOG.v2.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,29 @@

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.

## [2.180.0](https://github.com/aws/aws-cdk/compare/v2.179.0...v2.180.0) (2025-02-21)


### Features

* **cloudfront-origins:** read versioned access level ([#33038](https://github.com/aws/aws-cdk/issues/33038)) ([315be88](https://github.com/aws/aws-cdk/commit/315be8876cf246196376f2470d53ff2c16fbd392)), closes [#33034](https://github.com/aws/aws-cdk/issues/33034)
* update L1 CloudFormation resource definitions ([#33531](https://github.com/aws/aws-cdk/issues/33531)) ([93a3348](https://github.com/aws/aws-cdk/commit/93a3348ffc7ac9b833aa16e1d1aa766587fe7bca)), closes [/docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html#cfn-ec2](https://github.com/aws//docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html/issues/cfn-ec2)
* **cloudfront:** support gRPC for distribution ([#32535](https://github.com/aws/aws-cdk/issues/32535)) ([1b116b9](https://github.com/aws/aws-cdk/commit/1b116b9dd4f387d405160ba7ed6ef128eb3abbbe)), closes [#32534](https://github.com/aws/aws-cdk/issues/32534)
* **cloudfront:** vpc origins ([#33318](https://github.com/aws/aws-cdk/issues/33318)) ([8f3e793](https://github.com/aws/aws-cdk/commit/8f3e79387ec34fa3a9f84ad0a0cfa8b22b456ae7)), closes [#32396](https://github.com/aws/aws-cdk/issues/32396)
* **cloudwatch:** throw `ValidationErrors` instead of untyped Errors ([#33456](https://github.com/aws/aws-cdk/issues/33456)) ([6098816](https://github.com/aws/aws-cdk/commit/60988169cacd1e541058011f0c37993dd9b0f2e5)), closes [#32569](https://github.com/aws/aws-cdk/issues/32569)
* **codepipeline-actions:** support `timeout` for `ManualApprovalAction` ([#33472](https://github.com/aws/aws-cdk/issues/33472)) ([7901f07](https://github.com/aws/aws-cdk/commit/7901f07b1d3d4358bca1506904837538a6527ed0)), closes [#33473](https://github.com/aws/aws-cdk/issues/33473)
* **kinesis:** support stream consumers ([#32087](https://github.com/aws/aws-cdk/issues/32087)) ([f4453c7](https://github.com/aws/aws-cdk/commit/f4453c7bc9be0d84f44e67a1632e0f60e32805c8)), closes [#32050](https://github.com/aws/aws-cdk/issues/32050)
* **ses:** configurationset support default event bus and firehose as destination ([#33093](https://github.com/aws/aws-cdk/issues/33093)) ([d8b0da7](https://github.com/aws/aws-cdk/commit/d8b0da7705823147473caa863bd6231515f7585d)), closes [#32835](https://github.com/aws/aws-cdk/issues/32835) [#30671](https://github.com/aws/aws-cdk/issues/30671)


### Bug Fixes

* **core:** adding warnings to alert when properties will be overwritten ([#33507](https://github.com/aws/aws-cdk/issues/33507)) ([b06daf8](https://github.com/aws/aws-cdk/commit/b06daf836bcbb690d34d1a3439fd6db36cb1f203)), closes [#32468](https://github.com/aws/aws-cdk/issues/32468)
* **lambda:** updating addToRolePolicy to avoid circular dependency potential (under feature flag) ([#33291](https://github.com/aws/aws-cdk/issues/33291)) ([d946eb7](https://github.com/aws/aws-cdk/commit/d946eb729a731c1877a95f3db9b6aceab84a6a15))
* **logs:** `DataProtectionPolicy` template key must be PascalCase ([#33462](https://github.com/aws/aws-cdk/issues/33462)) ([0379878](https://github.com/aws/aws-cdk/commit/0379878c2f573450f1839a61580e1332dad999eb)), closes [#33408](https://github.com/aws/aws-cdk/issues/33408) [#26728](https://github.com/aws/aws-cdk/issues/26728)
* **stepfunctions:** disabling logging still requires LogGroup ([#30816](https://github.com/aws/aws-cdk/issues/30816)) ([a2cd7ae](https://github.com/aws/aws-cdk/commit/a2cd7ae80168610db2df515a11e2a68571c662fb)), closes [#30814](https://github.com/aws/aws-cdk/issues/30814)
* **stepfunctions:** various JSONata query language fix ([#33404](https://github.com/aws/aws-cdk/issues/33404)) ([b16fac2](https://github.com/aws/aws-cdk/commit/b16fac2cc3e86f7409c7ef990338e9c0e1d96c2f)), closes [#33403](https://github.com/aws/aws-cdk/issues/33403) [#33374](https://github.com/aws/aws-cdk/issues/33374) [#33396](https://github.com/aws/aws-cdk/issues/33396) [/github.com/aws/aws-cdk/blob/main/packages/aws-cdk-lib/aws-stepfunctions/lib/states/state.ts#L398](https://github.com/aws//github.com/aws/aws-cdk/blob/main/packages/aws-cdk-lib/aws-stepfunctions/lib/states/state.ts/issues/L398)

## [2.179.0](https://github.com/aws/aws-cdk/compare/v2.178.2...v2.179.0) (2025-02-17)


Expand Down
Loading
Loading