Skip to content

Commit d9f84e5

Browse files
authored
Merge branch 'main' into comcalvi/bootstarp
2 parents e959a42 + f2babd9 commit d9f84e5

File tree

388 files changed

+14040
-39974
lines changed

Some content is hidden

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

388 files changed

+14040
-39974
lines changed

.github/ISSUE_TEMPLATE/bug-report.yml

+15
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,21 @@ body:
2020
description: What is the problem? A clear and concise description of the bug.
2121
validations:
2222
required: true
23+
- type: checkboxes
24+
id: regression
25+
attributes:
26+
label: Regression Issue
27+
description: What is a regression? If it worked in a previous version but doesn’t in the latest version, it’s considered a regression. In this case, please provide specific version number in the report.
28+
options:
29+
- label: Select this option if this issue appears to be a regression.
30+
required: false
31+
- type: input
32+
id: working-version
33+
attributes:
34+
label: Last Known Working CDK Version
35+
description: Specify the last known CDK version where this code was functioning as expected (if applicable).
36+
validations:
37+
required: false
2338
- type: textarea
2439
id: expected
2540
attributes:
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# Apply potential regression label on issues
2+
name: issue-regression-label
3+
on:
4+
issues:
5+
types: [opened, edited]
6+
jobs:
7+
add-regression-label:
8+
runs-on: ubuntu-latest
9+
permissions:
10+
issues: write
11+
steps:
12+
- name: Fetch template body
13+
id: check_regression
14+
uses: actions/github-script@v7
15+
env:
16+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
17+
TEMPLATE_BODY: ${{ github.event.issue.body }}
18+
with:
19+
script: |
20+
const regressionPattern = /\[x\] Select this option if this issue appears to be a regression\./i;
21+
const template = `${process.env.TEMPLATE_BODY}`
22+
const match = regressionPattern.test(template);
23+
core.setOutput('is_regression', match);
24+
- name: Manage regression label
25+
env:
26+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
27+
run: |
28+
if [ "${{ steps.check_regression.outputs.is_regression }}" == "true" ]; then
29+
gh issue edit ${{ github.event.issue.number }} --add-label "potential-regression" -R ${{ github.repository }}
30+
else
31+
gh issue edit ${{ github.event.issue.number }} --remove-label "potential-regression" -R ${{ github.repository }}
32+
fi

.github/workflows/request-cli-integ-test.yml

+1-8
Original file line numberDiff line numberDiff line change
@@ -19,21 +19,14 @@ jobs:
1919
persist-credentials: false
2020
- name: Find changed cli files
2121
id: changed-cli-files
22-
uses: tj-actions/changed-files@6b2903bdce6310cfbddd87c418f253cf29b2dec9
22+
uses: tj-actions/changed-files@c65cd883420fd2eb864698a825fc4162dd94482c
2323
with:
2424
base_sha: ${{ github.event.pull_request.base.sha }}
2525
files_yaml: |
2626
cli:
2727
- packages/aws-cdk/bin/**
2828
- packages/aws-cdk/lib/**
2929
- packages/aws-cdk/test/**
30-
- packages/cdk-assets/bin/**
31-
- packages/cdk-assets/lib/**
32-
- packages/cdk-assets/test/**
33-
- packages/aws-cdk-lib/cloud-assembly-schema/lib/**
34-
- packages/aws-cdk-lib/cloud-assembly-schema/schema/**
35-
- packages/aws-cdk-lib/cloud-assembly-schema/scripts/**
36-
- packages/aws-cdk-lib/cloud-assembly-schema/test/**
3730
- packages/@aws-cdk/cloudformation-diff/lib/**
3831
- packages/@aws-cdk/cloudformation-diff/test/**
3932
- packages/@aws-cdk-testing/cli-integ/bin/**

CHANGELOG.v2.alpha.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
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.152.0-alpha.0](https://github.com/aws/aws-cdk/compare/v2.151.1-alpha.0...v2.152.0-alpha.0) (2024-08-14)
6+
7+
## [2.151.1-alpha.0](https://github.com/aws/aws-cdk/compare/v2.151.0-alpha.0...v2.151.1-alpha.0) (2024-08-14)
8+
59
## [2.151.0-alpha.0](https://github.com/aws/aws-cdk/compare/v2.150.0-alpha.0...v2.151.0-alpha.0) (2024-08-01)
610

711

CHANGELOG.v2.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+
## [2.152.0](https://github.com/aws/aws-cdk/compare/v2.151.1...v2.152.0) (2024-08-14)
6+
7+
8+
### Features
9+
10+
* **lambda:** support filter criteria encryption ([6aa72a2](https://github.com/aws/aws-cdk/commit/6aa72a215859ab96e9fd8b4ccee0d40bda753200))
11+
12+
## [2.151.1](https://github.com/aws/aws-cdk/compare/v2.151.0...v2.151.1) (2024-08-14)
13+
14+
15+
### Reverts
16+
17+
* feat(ecs): add validation checks to memory cpu combinations of FARGATE compatible task definitions ([#31110](https://github.com/aws/aws-cdk/issues/31110)) ([8fdf015](https://github.com/aws/aws-cdk/commit/8fdf015fdc310d6d62cec31b6d89e1ff1decb8b6))
18+
519
## [2.151.0](https://github.com/aws/aws-cdk/compare/v2.150.0...v2.151.0) (2024-08-01)
620

721

CONTRIBUTORS.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,21 +12,21 @@ Shout out to our top contributors!
1212
- [shivlaks](https://github.com/shivlaks)
1313
- [otaviomacedo](https://github.com/otaviomacedo)
1414
- [mrgrain](https://github.com/mrgrain)
15-
- [madeline-k](https://github.com/madeline-k)
1615
- [pahud](https://github.com/pahud)
16+
- [madeline-k](https://github.com/madeline-k)
1717
- [comcalvi](https://github.com/comcalvi)
18-
- [NetaNir](https://github.com/NetaNir)
1918
- [TheRealAmazonKendra](https://github.com/TheRealAmazonKendra)
19+
- [NetaNir](https://github.com/NetaNir)
2020
- [robertd](https://github.com/robertd)
2121
- [MrArnoldPalmer](https://github.com/MrArnoldPalmer)
2222
- [go-to-k](https://github.com/go-to-k)
2323
- [lpizzinidev](https://github.com/lpizzinidev)
2424
- [peterwoodworth](https://github.com/peterwoodworth)
2525
- [colifran](https://github.com/colifran)
2626
- [msambol](https://github.com/msambol)
27-
- [nija-at](https://github.com/nija-at)
2827
- [watany-dev](https://github.com/watany-dev)
28+
- [nija-at](https://github.com/nija-at)
2929
- [hoegertn](https://github.com/hoegertn)
3030

3131

32-
_Last updated: Mon, 01 Jul 24 00:11:02 +0000_
32+
_Last updated: Thu, 01 Aug 24 00:10:57 +0000_

lerna.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
"npmClient": "yarn",
33
"packages": [
44
"packages/aws-cdk-lib",
5-
"packages/cdk-assets",
65
"packages/aws-cdk",
76
"packages/cdk",
87
"packages/@aws-cdk/*",
@@ -25,4 +24,4 @@
2524
"rejectCycles": true,
2625
"version": "0.0.0",
2726
"$schema": "node_modules/lerna/schemas/lerna-schema.json"
28-
}
27+
}

package.json

+3-4
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@
2525
"fs-extra": "^9.1.0",
2626
"graceful-fs": "^4.2.11",
2727
"jest-junit": "^13.2.0",
28-
"jsii-diff": "1.101.0",
29-
"jsii-pacmak": "1.101.0",
30-
"jsii-reflect": "1.101.0",
28+
"jsii-diff": "1.102.0",
29+
"jsii-pacmak": "1.102.0",
30+
"jsii-reflect": "1.102.0",
3131
"lerna": "^8.1.5",
3232
"nx": "^19.4.0",
3333
"patch-package": "^6.5.1",
@@ -72,7 +72,6 @@
7272
"packages/aws-cdk-lib",
7373
"packages/aws-cdk",
7474
"packages/cdk",
75-
"packages/cdk-assets",
7675
"packages/@aws-cdk/*",
7776
"packages/awslint",
7877
"packages/@aws-cdk-testing/*",

packages/@aws-cdk-testing/framework-integ/test/aws-ecs/test/integ.fargate-task-def.js.snapshot/aws-ecs-fargate-task-def.template.json

-87
This file was deleted.

packages/@aws-cdk-testing/framework-integ/test/aws-ecs/test/integ.fargate-task-def.js.snapshot/integ.json

-12
This file was deleted.

0 commit comments

Comments
 (0)