-
Notifications
You must be signed in to change notification settings - Fork 4.3k
chore(release): 2.191.0 #34222
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
chore(release): 2.191.0 #34222
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Issue # (if applicable) `aws-location-alpha` for #32569 ### Description of changes ValidationErrors everywhere ### Describe any new or updated permissions being added n/a ### Description of how you validated changes Existing tests. Exemptions granted as this is basically a refactor of existing code. ### Checklist - [x] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md) ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
… github user (#34180) ### Issue # (if applicable) N/A ### Reason for this change Fix failling Enum Backfill Github action to set the CDK Automation user details before creating the Enums PRs. ### Checklist - [X] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md) ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
### Issue # (if applicable) N/A ### Checklist - [X] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md) ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
### Reason for this change There're some issues in the enum updater workflow. - When checking if there're specific file changed, the directory is not right - typo in Github PR creating command. ### Checklist - [ ] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md) ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
### Reason for this change New Aurora MySQL versions are available. - 2.12.4 - [Database engine updates for Amazon Aurora MySQL version 2](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraMySQLReleaseNotes/AuroraMySQL.Updates.20Updates.html) - 3.08.2 - [Database engine updates for Amazon Aurora MySQL version 3](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraMySQLReleaseNotes/AuroraMySQL.Updates.30Updates.html) ### Description of changes Added above Aurora MySQL versions. ### Describe any new or updated permissions being added N/A ### Description of how you validated changes ``` console $ aws --region us-east-1 rds describe-db-engine-versions --engine aurora-mysql --query DBEngineVersions[].EngineVersion [ "5.7.mysql_aurora.2.11.1", "5.7.mysql_aurora.2.11.2", "5.7.mysql_aurora.2.11.3", "5.7.mysql_aurora.2.11.4", "5.7.mysql_aurora.2.11.5", "5.7.mysql_aurora.2.11.6", "5.7.mysql_aurora.2.12.0", "5.7.mysql_aurora.2.12.1", "5.7.mysql_aurora.2.12.2", "5.7.mysql_aurora.2.12.3", "5.7.mysql_aurora.2.12.4", "8.0.mysql_aurora.3.04.0", "8.0.mysql_aurora.3.04.1", "8.0.mysql_aurora.3.04.2", "8.0.mysql_aurora.3.04.3", "8.0.mysql_aurora.3.05.2", "8.0.mysql_aurora.3.06.0", "8.0.mysql_aurora.3.06.1", "8.0.mysql_aurora.3.07.0", "8.0.mysql_aurora.3.07.1", "8.0.mysql_aurora.3.08.0", "8.0.mysql_aurora.3.08.1", "8.0.mysql_aurora.3.08.2" ] ``` ### Checklist - [x] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md) ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
This PR updates the CDK enum mapping file.
### Issue # (if applicable) N/A ### Checklist - [X] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md) ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
### Description of changes This pull request adds support for new AWS CodeBuild Lambda images for both ARM and x86_64 architectures. reference: https://docs.aws.amazon.com/codebuild/latest/userguide/lambda-compute-images.html ### Additions to `LinuxArmLambdaBuildImage`: * `aws/codebuild/amazonlinux-aarch64-lambda-standard:nodejs22` * `aws/codebuild/amazonlinux-aarch64-lambda-standard:python3.13` * `aws/codebuild/amazonlinux-aarch64-lambda-standard:ruby3.4` * `aws/codebuild/amazonlinux-aarch64-lambda-standard:go1.24` ### Additions to `LinuxLambdaBuildImage`: * `aws/codebuild/amazonlinux-x86_64-lambda-standard:nodejs22` * `aws/codebuild/amazonlinux-x86_64-lambda-standard:python3.13` * `aws/codebuild/amazonlinux-x86_64-lambda-standard:ruby3.4` * `aws/codebuild/amazonlinux-x86_64-lambda-standard:go1.24` ### Checklist - [x] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md) ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
Updates the L1 CloudFormation resource definitions with the latest changes from `@aws-cdk/aws-service-spec`
### Issue # (if applicable) N/A ### Reason for this change Adding new team member's GitHub account ### Description of changes Adding my own github username ### Describe any new or updated permissions being added N/A ### Description of how you validated changes N/A ### Checklist - [ ] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md) ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
### Issue # (if applicable) None ### Reason for this change https://aws.amazon.com/about-aws/whats-new/2025/04/amazon-aurora-postgresql-versions/ ### Description of how you validated changes ```console $ aws rds describe-db-engine-versions --engine postgres --output table --query 'DBEngineVersions[*].{Engine:Engine,EngineVersion:EngineVersion}' | postgres | 13.20 | | postgres | 14.12 | | postgres | 14.13 | | postgres | 14.15 | | postgres | 14.17 | | postgres | 15.7 | | postgres | 15.8 | | postgres | 15.10 | | postgres | 15.12 | | postgres | 16.3 | | postgres | 16.4 | | postgres | 16.6 | | postgres | 16.8 | ``` ### Checklist - [x] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md) ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
### Issue # (if applicable) `aws-msk-alpha` for #32569 ### Description of changes ValidationErrors everywhere <!-- What code changes did you make? Have you made any important design decisions? What AWS use cases does this change enable? To enable the use cases, which AWS service features are utilized? --> ### Describe any new or updated permissions being added n/a <!-- What new or updated IAM permissions are needed to support the changes being introduced ? --> ### Description of how you validated changes Existing tests. Exemptions granted as this is basically a refactor of existing code. <!--Have you added any unit tests and/or integration tests?--> ### Checklist - [x] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md) ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license* Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
Hey there! 👋 We've noticed that your Mergify configuration is using some deprecated fields. No worries—we've got your back! This automated PR updates your config to align with the newest standards, ensuring everything keeps running smoothly. Do not procrastinate! You **must upgrade** your configuration before **2025-06-30**, otherwise your configuration will stop working. ## What's Changed? - The implicit priority for the queue rules, that was based on their order, is going to be removed in favor of using `priority_rules`. This transformation aim to create priority rules, based on your existing queue rules, in order to keep the same priorities. If this priority change is not needed for you, you should not close this pull request until the deadline, otherwise it will be re-created again. (deadline: 2025-06-30) ## Why This Matters Keeping your configuration up-to-date means you'll benefit from the latest features and improvements Mergify has to offer. Plus, it helps prevent any unexpected hiccups down the road. ## Got Questions? We've Got Answers! 🙌 **Is this update safe to merge?** Absolutely! We've made sure the changes are compatible with your current setup. Your workflows should continue to work just as before—if not better! **Do I need to do anything special after merging?** Nope! Just merge this PR, and you're all set. If you have any custom configurations, it's a good idea to give them a quick look to ensure everything's in order. **What if I run into issues or have concerns?** We're here to help! Feel free to [reach out to our support team](mailto:[email protected]) anytime. Thanks for being awesome and keeping your configuration up-to-date! If you have any thoughts or need a hand, don't hesitate to let us know. Happy merging! 🎉
…34207) Updates the L1 CloudFormation resource definitions with the latest changes from `@aws-cdk/aws-service-spec` **L1 CloudFormation resource definition changes:** ``` ├[~] service aws-apigateway │ └ resources │ └[~] resource AWS::ApiGateway::DomainNameV2 │ └ types │ └[~] type EndpointConfiguration │ └ properties │ └[+] IpAddressType: string ├[~] service aws-aps │ └ resources │ └[~] resource AWS::APS::Workspace │ ├ properties │ │ └[+] WorkspaceConfiguration: WorkspaceConfiguration │ └ types │ ├[+] type Label │ │ ├ documentation: Series label │ │ │ name: Label │ │ └ properties │ │ ├ Name: string (required) │ │ └ Value: string (required) │ ├[+] type LimitsPerLabelSet │ │ ├ documentation: Label set and its associated limits │ │ │ name: LimitsPerLabelSet │ │ └ properties │ │ ├ Limits: LimitsPerLabelSetEntry (required) │ │ └ LabelSet: Array<Label> (required) │ ├[+] type LimitsPerLabelSetEntry │ │ ├ documentation: Limits that can be applied to a label set │ │ │ name: LimitsPerLabelSetEntry │ │ └ properties │ │ └ MaxSeries: integer │ └[+] type WorkspaceConfiguration │ ├ documentation: Workspace configuration │ │ name: WorkspaceConfiguration │ └ properties │ ├ RetentionPeriodInDays: integer │ └ LimitsPerLabelSets: Array<LimitsPerLabelSet> ├[~] service aws-batch │ └ resources │ ├[~] resource AWS::Batch::ComputeEnvironment │ │ └ types │ │ └[~] type ComputeResources │ │ └ properties │ │ └ Tags: (documentation changed) │ ├[~] resource AWS::Batch::JobDefinition │ │ └ types │ │ ├[~] type ContainerProperties │ │ │ └ properties │ │ │ └ EnableExecuteCommand: (documentation changed) │ │ ├[~] type EcsTaskProperties │ │ │ └ properties │ │ │ └ EnableExecuteCommand: (documentation changed) │ │ ├[~] type FirelensConfiguration │ │ │ ├ - documentation: undefined │ │ │ │ + documentation: The FireLens configuration for the container. This is used to specify and configure a log router for container logs. For more information, see [Custom log](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/using_firelens.html) routing in the *Amazon Elastic Container Service Developer Guide* . │ │ │ └ properties │ │ │ ├ Options: (documentation changed) │ │ │ └ Type: (documentation changed) │ │ ├[~] type LogConfiguration │ │ │ └ properties │ │ │ └ LogDriver: (documentation changed) │ │ ├[~] type MultiNodeContainerProperties │ │ │ └ properties │ │ │ └ EnableExecuteCommand: (documentation changed) │ │ ├[~] type MultiNodeEcsTaskProperties │ │ │ └ properties │ │ │ └ EnableExecuteCommand: (documentation changed) │ │ └[~] type TaskContainerProperties │ │ └ properties │ │ └ FirelensConfiguration: (documentation changed) │ └[~] resource AWS::Batch::SchedulingPolicy │ └ types │ └[~] type FairsharePolicy │ └ properties │ └ ShareDecaySeconds: (documentation changed) ├[~] service aws-bedrock │ └ resources │ ├[~] resource AWS::Bedrock::Guardrail │ │ └ types │ │ ├[~] type ContentFilterConfig │ │ │ └ properties │ │ │ ├[+] InputAction: string │ │ │ ├[+] InputEnabled: boolean │ │ │ ├[+] OutputAction: string │ │ │ └[+] OutputEnabled: boolean │ │ ├[~] type ContextualGroundingFilterConfig │ │ │ └ properties │ │ │ ├[+] Action: string │ │ │ └[+] Enabled: boolean │ │ ├[~] type ManagedWordsConfig │ │ │ └ properties │ │ │ ├[+] InputAction: string │ │ │ ├[+] InputEnabled: boolean │ │ │ ├[+] OutputAction: string │ │ │ └[+] OutputEnabled: boolean │ │ ├[~] type PiiEntityConfig │ │ │ └ properties │ │ │ ├[+] InputAction: string │ │ │ ├[+] InputEnabled: boolean │ │ │ ├[+] OutputAction: string │ │ │ └[+] OutputEnabled: boolean │ │ ├[~] type RegexConfig │ │ │ └ properties │ │ │ ├[+] InputAction: string │ │ │ ├[+] InputEnabled: boolean │ │ │ ├[+] OutputAction: string │ │ │ └[+] OutputEnabled: boolean │ │ ├[~] type TopicConfig │ │ │ └ properties │ │ │ ├[+] InputAction: string │ │ │ ├[+] InputEnabled: boolean │ │ │ ├[+] OutputAction: string │ │ │ └[+] OutputEnabled: boolean │ │ └[~] type WordConfig │ │ └ properties │ │ ├[+] InputAction: string │ │ ├[+] InputEnabled: boolean │ │ ├[+] OutputAction: string │ │ └[+] OutputEnabled: boolean │ └[~] resource AWS::Bedrock::KnowledgeBase │ └ types │ ├[~] type MongoDbAtlasConfiguration │ │ └ properties │ │ └[+] TextIndexName: string │ └[~] type RdsFieldMapping │ └ properties │ └[+] CustomMetadataField: string ├[~] service aws-datazone │ └ resources │ └[~] resource AWS::DataZone::Domain │ └ types │ └[~] type SingleSignOn │ └ properties │ └[+] IdcInstanceArn: string ├[~] service aws-events │ └ resources │ └[~] resource AWS::Events::Connection │ └ properties │ └[+] KmsKeyIdentifier: string ├[~] service aws-launchwizard │ └ resources │ └[~] resource AWS::LaunchWizard::Deployment │ └ properties │ └ Specifications: - Map<string, string> (required) │ + Map<string, string> ├[~] service aws-neptune │ └ resources │ ├[~] resource AWS::Neptune::DBClusterParameterGroup │ │ └ attributes │ │ └[-] Id: string │ └[~] resource AWS::Neptune::DBParameterGroup │ └ attributes │ └[-] Id: string ├[~] service aws-s3tables │ └ resources │ └[~] resource AWS::S3Tables::TableBucket │ ├ - documentation: Creates a table bucket. For more information, see [Creating a table bucket](https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-buckets-create.html) in the *Amazon Simple Storage Service User Guide* . │ │ - **Permissions** - You must have the `s3tables:CreateTableBucket` permission to use this operation. │ │ + documentation: Creates a table bucket. For more information, see [Creating a table bucket](https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-buckets-create.html) in the *Amazon Simple Storage Service User Guide* . │ │ - **Permissions** - - You must have the `s3tables:CreateTableBucket` permission to use this operation. │ │ - If you use this operation with the optional `encryptionConfiguration` parameter you must have the `s3tables:PutTableBucketEncryption` permission. │ ├ properties │ │ └[+] EncryptionConfiguration: EncryptionConfiguration │ └ types │ └[+] type EncryptionConfiguration │ ├ documentation: Configuration specifying how data should be encrypted. This structure defines the encryption algorithm and optional KMS key to be used for server-side encryption. │ │ name: EncryptionConfiguration │ └ properties │ ├ SSEAlgorithm: string │ └ KMSKeyArn: string └[~] service aws-ses └ resources ├[~] resource AWS::SES::MailManagerIngressPoint │ ├ properties │ │ └[+] NetworkConfiguration: NetworkConfiguration (immutable) │ └ types │ ├[+] type NetworkConfiguration │ │ ├ documentation: The network type (IPv4-only, Dual-Stack, PrivateLink) of the ingress endpoint resource. │ │ │ name: NetworkConfiguration │ │ └ properties │ │ ├ PublicNetworkConfiguration: PublicNetworkConfiguration │ │ └ PrivateNetworkConfiguration: PrivateNetworkConfiguration │ ├[+] type PrivateNetworkConfiguration │ │ ├ documentation: Specifies the network configuration for the private ingress point. │ │ │ name: PrivateNetworkConfiguration │ │ └ properties │ │ └ VpcEndpointId: string (required) │ └[+] type PublicNetworkConfiguration │ ├ documentation: Specifies the network configuration for the public ingress point. │ │ name: PublicNetworkConfiguration │ └ properties │ └ IpType: string (required) ├[~] resource AWS::SES::MailManagerRuleSet │ └ types │ ├[~] type RuleBooleanToEvaluate │ │ └ properties │ │ ├[+] Analysis: Analysis │ │ └ Attribute: - string (required) │ │ + string │ └[~] type RuleStringToEvaluate │ └ properties │ └[+] Analysis: Analysis └[~] resource AWS::SES::MailManagerTrafficPolicy └ types ├[+] type IngressIpv6Expression │ ├ name: IngressIpv6Expression │ └ properties │ ├ Evaluate: IngressIpv6ToEvaluate (required) │ ├ Operator: string (required) │ └ Values: Array<string> (required) ├[+] type IngressIpv6ToEvaluate │ ├ name: IngressIpv6ToEvaluate │ └ properties │ └ Attribute: string (required) ├[~] type IngressStringToEvaluate │ └ properties │ ├[+] Analysis: IngressAnalysis │ └ Attribute: - string (required) │ + string └[~] type PolicyCondition └ properties └[+] Ipv6Expression: IngressIpv6Expression ``` BREAKING CHANGE: Some L1 resources experienced breaking changes due to updated CloudFormation resources. Please check the notes for each specific module for more information. * **neptune-alpha**: `Id` attribute is being removed from the AWS::Neptune::DBClusterParameterGroup and AWS::Neptune::DBParameterGroup resources * **aws-launchwizard**: `specifications` prop moved from required to optional in CfnDeployment * **aws-ses**: `attribute` attribute moved from required to optional in RuleBooleanToEvaluateProperty
QuantumNeuralCoder
approved these changes
Apr 22, 2025
AWS CodeBuild CI Report
Powered by github-codebuild-logs, available on the AWS Serverless Application Repository |
Thank you for contributing! Your pull request will be automatically updated and merged without squashing (do not update manually, and be sure to allow changes to be pushed to your fork). |
Comments on closed issues and PRs are hard for our team to see. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Labels
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
See CHANGELOG