Skip to content
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

Update aws-cdk monorepo to v2.167.2 #1251

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 24, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
aws-cdk (source) 2.148.1 -> 2.167.2 age adoption passing confidence
aws-cdk-lib (source) 2.142.1 -> 2.167.2 age adoption passing confidence

Release Notes

aws/aws-cdk (aws-cdk)

v2.167.2

Compare Source

Bug Fixes
  • cli: cdk diff always falls back to template only diff (#​32165) (3fd9699)
  • cli: externally managed stack notification arns are deleted on deploy (#​32163) (465da31)
  • cli: the LoadBalancerProvider doesn't match LBs when querying by a subset of tags (#​32164) (a0b47c5)

Alpha modules (2.167.2-alpha.0)

v2.167.1

Compare Source

Bug Fixes

Alpha modules (2.167.1-alpha.0)

v2.167.0

Compare Source

Features
Bug Fixes

Alpha modules (2.167.0-alpha.0)

Features
Bug Fixes

v2.166.0

Compare Source

Features
Bug Fixes

Alpha modules (2.166.0-alpha.0)
⚠ BREAKING CHANGES TO EXPERIMENTAL FEATURES
  • scheduler-targets-alpha: Schedule Target will reuse role if target is re-used across schedules. This change triggered replacement of existing roles for Schedule as logical ID of the roles are changed.
Features
Bug Fixes
  • scheduler-targets-alpha: create a role per target instead of singleton schedule target role (#​31895) (aee1b30), closes #​31785

v2.165.0

Compare Source

Features
Bug Fixes

Alpha modules (2.165.0-alpha.0)

⚠ BREAKING CHANGES TO EXPERIMENTAL FEATURES
  • ec2-alpha: The new VpcCidrBlock L2 construct replaces CfnVPCCidrBlock. This change alters the logical ID of AWS::EC2::VPCCidrBlock resources in CloudFormation templates. Existing deployments will see errors like CIDR range conflicts with x.xx.xx.xx/xx with association ID vpc-cidr-assoc-ABCD. To resolve this, you must recreate your existing stacks to use the new module.
Features
Bug Fixes

v2.164.1

Compare Source

Bug Fixes

Alpha modules (2.164.1-alpha.0)

v2.164.0

Compare Source

Features
Bug Fixes
  • cli: cross-account asset publishing doesn't work without bootstrap stack (#​31876) (427bf63), closes #​31866
  • cli: deploy-role is not authorized to perform DescribeStackResources (#​31878) (8d06824)
  • core: fix policy synthesizer logic for precreated roles (#​31710) (aae03c9)
  • dynamodb: replication regions are incompatible with resource policies in TableV2 and feature flag (#​31513) (0b03eb0), closes #​30705
  • events-targets: kinesis Stream target with Customer-Managed KMS key causes EventBridge FailedInvocations (#​31836) (58dfda0), closes #​10996

Alpha modules (2.164.0-alpha.0)
Features
Bug Fixes

v2.163.1

Compare Source

Bug Fixes

Alpha modules (2.163.1-alpha.0)

v2.163.0

Compare Source

Features
Bug Fixes

Alpha modules (2.163.0-alpha.0)

Features
Bug Fixes

v2.162.1

Compare Source

Bug Fixes

Alpha modules (2.162.1-alpha.0)

v2.162.0

Compare Source

Features
Bug Fixes

Alpha modules (2.162.0-alpha.0)
⚠ BREAKING CHANGES TO EXPERIMENTAL FEATURES
  • kinesisfirehose-alpha: replaced destinations property with destination (singular) and changed the type from array of Destinations to a single Destination. Old behaviour would only allow an array with a single Destination to be passed in anyway.
Features
Bug Fixes
Miscellaneous Chores
  • kinesisfirehose-alpha: replacedestinations property with destination and change type from array to single IDestination (#​31630) (1e2cff1)

v2.161.1

Compare Source

Reverts

Alpha modules (2.161.1-alpha.0)

v2.161.0

Compare Source

Features
Bug Fixes

Alpha modules (2.161.0-alpha.0)
⚠ BREAKING CHANGES TO EXPERIMENTAL FEATURES
  • kinesisfirehose-destinations: the logging and logGroup properties in DestinationLoggingProps have been removed and replaced with a single optional property loggingConfig which accepts a class of type LoggingConfig.
Details

Combine the logging and logGroup properties into a single new optional property called loggingConfig which accepts a class of type LoggingConfig.

LoggingConfig is an abstract class which can be instantiated through either an instance of EnableLogging or DisableLogging which can be used in the following 3 ways:

import * as logs from 'aws-cdk-lib/aws-logs';

const logGroup = new logs.LogGroup(this, 'Log Group');
declare const bucket: s3.Bucket;

// 1. Enable logging with no parameters - a log group will be created for you
const destinationWithLogging = new destinations.S3Bucket(bucket, {
  loggingConfig: new destinations.EnableLogging(),
});

// 2. Enable a logging and pass in a logGroup to be used
const destinationWithLoggingAndMyLogGroup = new destinations.S3Bucket(bucket, {
  loggingConfig: new destinations.EnableLogging(logGroup),
});

// 3. Disable logging (does not accept any parameters so it is now impossible to provide a logGroup in this case)
const destinationWithoutLogging = new destinations.S3Bucket(bucket, {
  loggingConfig: new destinations.DisableLogging(),
});
Description of how you validated changes

unit + integ test

Checklist
Features
Bug Fixes
Miscellaneous Chores
  • kinesisfirehose-destinations: refactor logging to combine logGroup and logging properties into loggingConfig (#​31488) (c4bda64)

v2.160.0

Compare Source

Features

Alpha modules (2.160.0-alpha.0)
Features
Bug Fixes

v2.159.1

Compare Source

Reverts
  • fix(ec2): fixing vpc endpoint pattern for ecr and ecr docker (#​31496) (f7e8452)

Alpha modules (2.159.1-alpha.0)

v2.159.0

Compare Source

Features

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/aws-cdk-monorepo branch 3 times, most recently from 6358db2 to dade47d Compare May 30, 2024 05:23
@renovate renovate bot changed the title Update aws-cdk monorepo to v2.143.0 Update aws-cdk monorepo to v2.143.1 May 30, 2024
@renovate renovate bot force-pushed the renovate/aws-cdk-monorepo branch from dade47d to d889f67 Compare June 1, 2024 00:42
@renovate renovate bot changed the title Update aws-cdk monorepo to v2.143.1 Update aws-cdk monorepo to v2.144.0 Jun 1, 2024
@renovate renovate bot force-pushed the renovate/aws-cdk-monorepo branch from d889f67 to 8c0c74f Compare June 3, 2024 22:30
@renovate renovate bot changed the title Update aws-cdk monorepo to v2.144.0 Update aws-cdk monorepo to v2.145.0 Jun 7, 2024
@renovate renovate bot force-pushed the renovate/aws-cdk-monorepo branch 4 times, most recently from aa1fcba to 9acc697 Compare June 13, 2024 23:24
@renovate renovate bot changed the title Update aws-cdk monorepo to v2.145.0 Update aws-cdk monorepo to v2.146.0 Jun 13, 2024
@renovate renovate bot force-pushed the renovate/aws-cdk-monorepo branch 2 times, most recently from 79987c9 to 3b0b794 Compare June 20, 2024 23:21
@renovate renovate bot changed the title Update aws-cdk monorepo to v2.146.0 Update aws-cdk monorepo to v2.147.0 Jun 20, 2024
@renovate renovate bot force-pushed the renovate/aws-cdk-monorepo branch from 3b0b794 to 594c123 Compare June 24, 2024 20:19
@renovate renovate bot changed the title Update aws-cdk monorepo to v2.147.0 Update aws-cdk monorepo to v2.147.1 Jun 24, 2024
@renovate renovate bot force-pushed the renovate/aws-cdk-monorepo branch 2 times, most recently from 774caff to 9247e6d Compare June 28, 2024 04:52
@renovate renovate bot changed the title Update aws-cdk monorepo to v2.147.1 Update aws-cdk monorepo to v2.147.2 Jun 28, 2024
@renovate renovate bot force-pushed the renovate/aws-cdk-monorepo branch 2 times, most recently from 6fe3be0 to f37ddb7 Compare July 2, 2024 04:19
@renovate renovate bot changed the title Update aws-cdk monorepo to v2.147.2 Update aws-cdk monorepo to v2.147.3 Jul 2, 2024
@renovate renovate bot force-pushed the renovate/aws-cdk-monorepo branch 3 times, most recently from e7596a4 to f1e3f98 Compare July 6, 2024 00:05
@renovate renovate bot changed the title Update aws-cdk monorepo to v2.147.3 Update aws-cdk monorepo to v2.148.0 Jul 6, 2024
@renovate renovate bot force-pushed the renovate/aws-cdk-monorepo branch from f1e3f98 to ace236f Compare July 8, 2024 21:31
@renovate renovate bot force-pushed the renovate/aws-cdk-monorepo branch 4 times, most recently from 550b6eb to 5f502e5 Compare October 22, 2024 02:07
@renovate renovate bot changed the title Update aws-cdk monorepo to v2.162.1 Update aws-cdk monorepo to v2.163.0 Oct 22, 2024
@renovate renovate bot force-pushed the renovate/aws-cdk-monorepo branch from 5f502e5 to 3e7abbe Compare October 22, 2024 22:25
@renovate renovate bot changed the title Update aws-cdk monorepo to v2.163.0 Update aws-cdk monorepo to v2.163.1 Oct 22, 2024
@renovate renovate bot force-pushed the renovate/aws-cdk-monorepo branch from 3e7abbe to 83ce37a Compare October 24, 2024 23:13
@renovate renovate bot changed the title Update aws-cdk monorepo to v2.163.1 Update aws-cdk monorepo to v2.164.0 Oct 24, 2024
@renovate renovate bot force-pushed the renovate/aws-cdk-monorepo branch from 83ce37a to 6fe91b6 Compare October 25, 2024 19:30
@renovate renovate bot changed the title Update aws-cdk monorepo to v2.164.0 Update aws-cdk monorepo to v2.164.1 Oct 25, 2024
@renovate renovate bot force-pushed the renovate/aws-cdk-monorepo branch 4 times, most recently from 07d3072 to c0508e7 Compare October 31, 2024 22:20
@renovate renovate bot changed the title Update aws-cdk monorepo to v2.164.1 Update aws-cdk monorepo to v2.165.0 Oct 31, 2024
@renovate renovate bot force-pushed the renovate/aws-cdk-monorepo branch 2 times, most recently from 36d89b3 to 825438f Compare November 7, 2024 02:05
@renovate renovate bot changed the title Update aws-cdk monorepo to v2.165.0 Update aws-cdk monorepo to v2.166.0 Nov 7, 2024
@renovate renovate bot force-pushed the renovate/aws-cdk-monorepo branch 2 times, most recently from bd6eb82 to a6ffcf6 Compare November 14, 2024 02:11
@renovate renovate bot changed the title Update aws-cdk monorepo to v2.166.0 Update aws-cdk monorepo to v2.167.0 Nov 14, 2024
@renovate renovate bot force-pushed the renovate/aws-cdk-monorepo branch from a6ffcf6 to d4ad653 Compare November 14, 2024 13:42
@renovate renovate bot changed the title Update aws-cdk monorepo to v2.167.0 Update aws-cdk monorepo Nov 14, 2024
@renovate renovate bot force-pushed the renovate/aws-cdk-monorepo branch from d4ad653 to d99eace Compare November 15, 2024 15:51
@renovate renovate bot changed the title Update aws-cdk monorepo Update aws-cdk monorepo to v2.167.1 Nov 15, 2024
@renovate renovate bot force-pushed the renovate/aws-cdk-monorepo branch from d99eace to 6820b62 Compare November 18, 2024 21:33
@renovate renovate bot force-pushed the renovate/aws-cdk-monorepo branch from 6820b62 to 506419e Compare November 19, 2024 15:49
@renovate renovate bot changed the title Update aws-cdk monorepo to v2.167.1 Update aws-cdk monorepo to v2.167.2 Nov 19, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant