Skip to content

Commit

Permalink
Merge branch 'main' into cognito-idp-allow-token
Browse files Browse the repository at this point in the history
  • Loading branch information
mergify[bot] authored Aug 14, 2024
2 parents c7cc42c + 8d76778 commit 0bc55e7
Show file tree
Hide file tree
Showing 393 changed files with 27,500 additions and 37,010 deletions.
15 changes: 15 additions & 0 deletions .github/ISSUE_TEMPLATE/bug-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,21 @@ body:
description: What is the problem? A clear and concise description of the bug.
validations:
required: true
- type: checkboxes
id: regression
attributes:
label: Regression Issue
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.
options:
- label: Select this option if this issue appears to be a regression.
required: false
- type: input
id: working-version
attributes:
label: Last Known Working CDK Version
description: Specify the last known CDK version where this code was functioning as expected (if applicable).
validations:
required: false
- type: textarea
id: expected
attributes:
Expand Down
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/notice.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
name: "❗ Notice"
description: Post a notice for a high impact issue
description: Post a notice for a high impact issue. Internal CDK team use only.
title: "❗ NOTICE (module name): (short notice description)"
labels: [p0, management/tracking]
labels: [needs-triage, management/tracking]
body:
- type: dropdown
attributes:
Expand Down
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/region.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: New Region
description: Register a new region.
description: Register a new region. Internal CDK team use only.
title: "Register new region: [region]"
labels: ["@aws-cdk/region-info", "feature-request", "p1", "effort/medium"]
labels: ["@aws-cdk/region-info", "feature-request", needs-triage, "effort/medium"]
body:
- type: input
id: ROUTE_53_BUCKET_WEBSITE_ZONE_IDS
Expand Down
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/tracking.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Tracking Issue
description: Add a module tracking issue (internal use only)
description: Add a module tracking issue. Internal CDK team use only.
title: "Tracking: [service]"
labels: [management/tracking]
labels: [needs-triage, management/tracking]
body:
- type: markdown
attributes:
Expand Down
32 changes: 32 additions & 0 deletions .github/workflows/issue-regression-labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# Apply potential regression label on issues
name: issue-regression-label
on:
issues:
types: [opened, edited]
jobs:
add-regression-label:
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- name: Fetch template body
id: check_regression
uses: actions/github-script@v7
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
TEMPLATE_BODY: ${{ github.event.issue.body }}
with:
script: |
const regressionPattern = /\[x\] Select this option if this issue appears to be a regression\./i;
const template = `${process.env.TEMPLATE_BODY}`
const match = regressionPattern.test(template);
core.setOutput('is_regression', match);
- name: Manage regression label
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
if [ "${{ steps.check_regression.outputs.is_regression }}" == "true" ]; then
gh issue edit ${{ github.event.issue.number }} --add-label "potential-regression" -R ${{ github.repository }}
else
gh issue edit ${{ github.event.issue.number }} --remove-label "potential-regression" -R ${{ github.repository }}
fi
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:/conventional-changelog/standard-version) for commit guidelines.

## [2.151.0-alpha.0](https:/aws/aws-cdk/compare/v2.150.0-alpha.0...v2.151.0-alpha.0) (2024-08-01)


### Features

* **kinesisanalytics-flink:** add support for Flink 1.19 ([#30723](https:/aws/aws-cdk/issues/30723)) ([c185194](https:/aws/aws-cdk/commit/c185194e2bc5bb538672df51482e1bfb134698b5)), closes [/docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html#aws-resource-kinesisanalyticsv2](https:/aws//docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalyticsv2-application.html/issues/aws-resource-kinesisanalyticsv2)

## [2.150.0-alpha.0](https:/aws/aws-cdk/compare/v2.149.0-alpha.0...v2.150.0-alpha.0) (2024-07-22)

## [2.149.0-alpha.0](https:/aws/aws-cdk/compare/v2.148.1-alpha.0...v2.149.0-alpha.0) (2024-07-12)
Expand Down
26 changes: 26 additions & 0 deletions CHANGELOG.v2.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,32 @@

All notable changes to this project will be documented in this file. See [standard-version](https:/conventional-changelog/standard-version) for commit guidelines.

## [2.151.0](https:/aws/aws-cdk/compare/v2.150.0...v2.151.0) (2024-08-01)


### Features

* **apigatewayv2:** add `description` property for stage ([#30820](https:/aws/aws-cdk/issues/30820)) ([8651bbe](https:/aws/aws-cdk/commit/8651bbe57d77e2e4a4ae70f7abb1c8af42687058))
* **ec2:** add `versionDescription` property for `LaunchTemplate` ([#30837](https:/aws/aws-cdk/issues/30837)) ([597228c](https:/aws/aws-cdk/commit/597228c1552a21f8dc7250a0be62160f838bb776))
* **ecs:** add validation checks to memory cpu combinations of FARGATE compatible task definitions ([#30166](https:/aws/aws-cdk/issues/30166)) ([8b4685e](https:/aws/aws-cdk/commit/8b4685e2000210219c5ca3102eb2e0b5276d61dd)), closes [#22216](https:/aws/aws-cdk/issues/22216)
* **elasticloadbalancingv2:** support Weighted Random algorithm and Automatic Target Weights for alb ([#30542](https:/aws/aws-cdk/issues/30542)) ([d0a609d](https:/aws/aws-cdk/commit/d0a609d5dcbe55b6ac231c7c7ec58f4ae1a36c5e)), closes [#29969](https:/aws/aws-cdk/issues/29969)
* **events:** add `description` property for `eventBus` ([#30935](https:/aws/aws-cdk/issues/30935)) ([28fbc82](https:/aws/aws-cdk/commit/28fbc82246d07d3d3bc4735b80cb8cd1921b2161))
* **events:** support customer managed key for event bus ([#30493](https:/aws/aws-cdk/issues/30493)) ([8c44aa7](https:/aws/aws-cdk/commit/8c44aa703ce1540b0e631ccad7989239bb2924e6))
* **synthetics:** add activeTracing, memory and timeout property to Canary class ([#30556](https:/aws/aws-cdk/issues/30556)) ([9295a85](https:/aws/aws-cdk/commit/9295a85a8fb893d7f5eae06108b68df864096c4c)), closes [#9300](https:/aws/aws-cdk/issues/9300) [#14086](https:/aws/aws-cdk/issues/14086) [#28152](https:/aws/aws-cdk/issues/28152) [#9300](https:/aws/aws-cdk/issues/9300)
* update L1 CloudFormation resource definitions ([#30973](https:/aws/aws-cdk/issues/30973)) ([63c45e4](https:/aws/aws-cdk/commit/63c45e4e66e413c370b894ac41de6ec780d15d54))
* **sns:** add validation of `displayName` for topic ([#30770](https:/aws/aws-cdk/issues/30770)) ([da2ec75](https:/aws/aws-cdk/commit/da2ec75f6bc8f2e28b07cdf1307b22c83bb652d5))
* **stepfunctions-tasks:** allow BedrockInvokeModel to use JsonPath ([#30298](https:/aws/aws-cdk/issues/30298)) ([f5dd73b](https:/aws/aws-cdk/commit/f5dd73bd19f546335531f587f6d7fbde8aff96ce)), closes [#29229](https:/aws/aws-cdk/issues/29229)


### Bug Fixes

* **appconfig:** sourcedConfiguration doesn't use retrievalRole ([#30733](https:/aws/aws-cdk/issues/30733)) ([9d79c51](https:/aws/aws-cdk/commit/9d79c518b47384a339b28146e2bc651a84b507f7)), closes [#30609](https:/aws/aws-cdk/issues/30609)
* **ec2:** export NatGatewayProvider for consistency with NatInstanceProvider ([#28810](https:/aws/aws-cdk/issues/28810)) ([fbc28bc](https:/aws/aws-cdk/commit/fbc28bcd5892768bb436b93c09c6d925b57daf0f)), closes [#28372](https:/aws/aws-cdk/issues/28372)
* **ecs:** fromServiceArnWithCluster not accepting value from SSM Parameter string ([#30902](https:/aws/aws-cdk/issues/30902)) ([0baa573](https:/aws/aws-cdk/commit/0baa573917da3c5bf7e1ed80012e334758d0ab81)), closes [#30798](https:/aws/aws-cdk/issues/30798)
* **stepfunctions:** allow disable x-ray ([#30808](https:/aws/aws-cdk/issues/30808)) ([d56d05c](https:/aws/aws-cdk/commit/d56d05c78a9f7355f318cfd08e5927ef7fee8c77)), closes [#30796](https:/aws/aws-cdk/issues/30796)
* **stepfunctions-tasks:** fix the generated IAM policy for EFS operations ([#30896](https:/aws/aws-cdk/issues/30896)) ([31808b4](https:/aws/aws-cdk/commit/31808b433fa7130632efc94c22ccdb181ae27857)), closes [#30862](https:/aws/aws-cdk/issues/30862)
* **stepfunctions-tasks:** run task perm no longer valid ([#30788](https:/aws/aws-cdk/issues/30788)) ([82b163d](https:/aws/aws-cdk/commit/82b163d00c0b6726cdd8c7fc092fd377bda0a4e2)), closes [#30751](https:/aws/aws-cdk/issues/30751)

## [2.150.0](https:/aws/aws-cdk/compare/v2.149.0...v2.150.0) (2024-07-22)


Expand Down
8 changes: 4 additions & 4 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,21 +12,21 @@ Shout out to our top contributors!
- [shivlaks](https:/shivlaks)
- [otaviomacedo](https:/otaviomacedo)
- [mrgrain](https:/mrgrain)
- [madeline-k](https:/madeline-k)
- [pahud](https:/pahud)
- [madeline-k](https:/madeline-k)
- [comcalvi](https:/comcalvi)
- [NetaNir](https:/NetaNir)
- [TheRealAmazonKendra](https:/TheRealAmazonKendra)
- [NetaNir](https:/NetaNir)
- [robertd](https:/robertd)
- [MrArnoldPalmer](https:/MrArnoldPalmer)
- [go-to-k](https:/go-to-k)
- [lpizzinidev](https:/lpizzinidev)
- [peterwoodworth](https:/peterwoodworth)
- [colifran](https:/colifran)
- [msambol](https:/msambol)
- [nija-at](https:/nija-at)
- [watany-dev](https:/watany-dev)
- [nija-at](https:/nija-at)
- [hoegertn](https:/hoegertn)


_Last updated: Mon, 01 Jul 24 00:11:02 +0000_
_Last updated: Thu, 01 Aug 24 00:10:57 +0000_
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@
"fs-extra": "^9.1.0",
"graceful-fs": "^4.2.11",
"jest-junit": "^13.2.0",
"jsii-diff": "1.101.0",
"jsii-pacmak": "1.101.0",
"jsii-reflect": "1.101.0",
"jsii-diff": "1.102.0",
"jsii-pacmak": "1.102.0",
"jsii-reflect": "1.102.0",
"lerna": "^8.1.5",
"nx": "^19.4.0",
"patch-package": "^6.5.1",
Expand Down Expand Up @@ -177,4 +177,4 @@
"dependencies": {
"string-width": "^4.2.3"
}
}
}

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -1118,6 +1118,108 @@
"Type": "managed",
"UpdatePolicy": {}
}
},
"ECSAL2023SecurityGroup7AE4A1D4": {
"Type": "AWS::EC2::SecurityGroup",
"Properties": {
"GroupDescription": "batch-stack/ECS_AL2023/SecurityGroup",
"SecurityGroupEgress": [
{
"CidrIp": "0.0.0.0/0",
"Description": "Allow all outbound traffic by default",
"IpProtocol": "-1"
}
],
"VpcId": {
"Ref": "vpcA2121C38"
}
}
},
"ECSAL2023InstanceProfileRoleEBA7FF23": {
"Type": "AWS::IAM::Role",
"Properties": {
"AssumeRolePolicyDocument": {
"Statement": [
{
"Action": "sts:AssumeRole",
"Effect": "Allow",
"Principal": {
"Service": "ec2.amazonaws.com"
}
}
],
"Version": "2012-10-17"
},
"ManagedPolicyArns": [
{
"Fn::Join": [
"",
[
"arn:",
{
"Ref": "AWS::Partition"
},
":iam::aws:policy/service-role/AmazonEC2ContainerServiceforEC2Role"
]
]
}
]
}
},
"ECSAL2023InstanceProfile14B35A51": {
"Type": "AWS::IAM::InstanceProfile",
"Properties": {
"Roles": [
{
"Ref": "ECSAL2023InstanceProfileRoleEBA7FF23"
}
]
}
},
"ECSAL20239DA0188B": {
"Type": "AWS::Batch::ComputeEnvironment",
"Properties": {
"ComputeResources": {
"AllocationStrategy": "BEST_FIT_PROGRESSIVE",
"Ec2Configuration": [
{
"ImageType": "ECS_AL2023"
}
],
"InstanceRole": {
"Fn::GetAtt": [
"ECSAL2023InstanceProfile14B35A51",
"Arn"
]
},
"InstanceTypes": [
"optimal"
],
"MaxvCpus": 256,
"MinvCpus": 0,
"SecurityGroupIds": [
{
"Fn::GetAtt": [
"ECSAL2023SecurityGroup7AE4A1D4",
"GroupId"
]
}
],
"Subnets": [
{
"Ref": "vpcPrivateSubnet1Subnet934893E8"
},
{
"Ref": "vpcPrivateSubnet2Subnet7031C2BA"
}
],
"Type": "EC2"
},
"ReplaceComputeEnvironment": false,
"State": "ENABLED",
"Type": "managed",
"UpdatePolicy": {}
}
}
},
"Parameters": {
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 0bc55e7

Please sign in to comment.