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 dependencies (non-major) #143

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 31, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
aws-cdk-lib (source) 2.117.0 -> 2.166.0 age adoption passing confidence
constructs 10.3.0 -> 10.4.2 age adoption passing confidence

Release Notes

aws/aws-cdk (aws-cdk-lib)

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
Bug Fixes

Alpha modules (2.159.0-alpha.0)

⚠ BREAKING CHANGES TO EXPERIMENTAL FEATURES
  • kinesisfirehose-alpha: encryptionKey property is removed and encryption property type has changed from the StreamEncryption enum to the StreamEncryption class.

To pass in a KMS key for the customer managed key case, use StreamEncryption.customerManagedKey(key)

Details

Replaced encryption and encryptionKey properties with a single property encryption of type StreamEncryption and is used by calling one of the 3 methods:

SreamEncryption.unencrypted()
StreamEncryption.awsOwnedKey()
StreamEncryption.customerManagedKey(key?: IKey)

This makes it so it's not longer possible to pass in a key when the encryption type is AWS owned or unencrypted. The key is an optional parameter in StreamEncryption.customerManagedKey(key?: IKey) so following the previous behaviour, if a key is provided it will be used, otherwise a key will be created for the user.

Description of how you validated changes

Generated templates do not change so behaviour remains the same.

Updated integ/unit tests.

Checklist
Features
Bug Fixes
Miscellaneous Chores
  • kinesisfirehose-alpha: refactor encryption property to combine encryptionKey (#​31430) (8e92185)

v2.158.0

Compare Source

Bug Fixes
  • cloudformation-include: can't use CFN intrinsics in Tags (#​30515) (af9e6ba), cl

Configuration

📅 Schedule: Branch creation - "before 3am on the first day of the month" in timezone Asia/Tokyo, Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • 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 added the renovate label Jan 31, 2024
@renovate renovate bot force-pushed the renovate/dependencies-(non-major) branch from 328835f to e3539e9 Compare February 1, 2024 03:34
@renovate renovate bot changed the title Update dependency aws-cdk-lib to v2.124.0 Update dependency aws-cdk-lib to v2.125.0 Feb 1, 2024
@renovate renovate bot changed the title Update dependency aws-cdk-lib to v2.125.0 Update dependency aws-cdk-lib to v2.126.0 Feb 2, 2024
@renovate renovate bot force-pushed the renovate/dependencies-(non-major) branch from e3539e9 to d5f1733 Compare February 2, 2024 12:59
@renovate renovate bot force-pushed the renovate/dependencies-(non-major) branch from d5f1733 to 2d2db00 Compare February 10, 2024 04:32
@renovate renovate bot changed the title Update dependency aws-cdk-lib to v2.126.0 Update dependency aws-cdk-lib to v2.127.0 Feb 10, 2024
@renovate renovate bot force-pushed the renovate/dependencies-(non-major) branch from 2d2db00 to 083967e Compare February 15, 2024 01:42
@renovate renovate bot changed the title Update dependency aws-cdk-lib to v2.127.0 Update dependency aws-cdk-lib to v2.128.0 Feb 15, 2024
@renovate renovate bot force-pushed the renovate/dependencies-(non-major) branch from 083967e to b956937 Compare February 21, 2024 19:22
@renovate renovate bot changed the title Update dependency aws-cdk-lib to v2.128.0 Update dependency aws-cdk-lib to v2.129.0 Feb 21, 2024
@renovate renovate bot force-pushed the renovate/dependencies-(non-major) branch from b956937 to 9b95a46 Compare February 23, 2024 06:12
@renovate renovate bot changed the title Update dependency aws-cdk-lib to v2.129.0 Update dependency aws-cdk-lib to v2.130.0 Feb 23, 2024
@renovate renovate bot force-pushed the renovate/dependencies-(non-major) branch from 9b95a46 to 2893e57 Compare March 2, 2024 01:22
@renovate renovate bot changed the title Update dependency aws-cdk-lib to v2.130.0 Update dependency aws-cdk-lib to v2.131.0 Mar 2, 2024
@renovate renovate bot changed the title Update dependency aws-cdk-lib to v2.131.0 Update dependency aws-cdk-lib to v2.132.0 Mar 9, 2024
@renovate renovate bot force-pushed the renovate/dependencies-(non-major) branch 2 times, most recently from 6107ba5 to 501dc86 Compare March 12, 2024 08:00
@renovate renovate bot changed the title Update dependency aws-cdk-lib to v2.132.0 Update dependency aws-cdk-lib to v2.132.1 Mar 12, 2024
@renovate renovate bot changed the title Update dependency aws-cdk-lib to v2.132.1 Update dependency aws-cdk-lib to v2.133.0 Mar 15, 2024
@renovate renovate bot force-pushed the renovate/dependencies-(non-major) branch from 501dc86 to f60ca21 Compare March 15, 2024 01:35
@renovate renovate bot force-pushed the renovate/dependencies-(non-major) branch from f60ca21 to b999dd0 Compare March 26, 2024 22:43
@renovate renovate bot changed the title Update dependency aws-cdk-lib to v2.133.0 Update dependency aws-cdk-lib to v2.134.0 Mar 26, 2024
@renovate renovate bot force-pushed the renovate/dependencies-(non-major) branch from b999dd0 to 0302c58 Compare April 2, 2024 04:19
@renovate renovate bot changed the title Update dependency aws-cdk-lib to v2.134.0 Update dependency aws-cdk-lib to v2.135.0 Apr 2, 2024
@renovate renovate bot force-pushed the renovate/dependencies-(non-major) branch from 0302c58 to 8cb6987 Compare April 6, 2024 07:54
@renovate renovate bot changed the title Update dependency aws-cdk-lib to v2.135.0 Update dependency aws-cdk-lib to v2.136.0 Apr 6, 2024
@renovate renovate bot force-pushed the renovate/dependencies-(non-major) branch from 8cb6987 to a3c3d77 Compare April 10, 2024 03:31
@renovate renovate bot changed the title Update dependency aws-cdk-lib to v2.136.0 Update dependency aws-cdk-lib to v2.136.1 Apr 10, 2024
@renovate renovate bot force-pushed the renovate/dependencies-(non-major) branch from a3c3d77 to 6f8db4f Compare April 11, 2024 02:35
@renovate renovate bot changed the title Update dependency aws-cdk-lib to v2.154.1 Update dependency aws-cdk-lib to v2.155.0 Aug 30, 2024
@renovate renovate bot force-pushed the renovate/dependencies-(non-major) branch from 3ce2d47 to 81b33e3 Compare September 6, 2024 07:03
@renovate renovate bot changed the title Update dependency aws-cdk-lib to v2.155.0 Update dependency aws-cdk-lib to v2.156.0 Sep 6, 2024
@renovate renovate bot force-pushed the renovate/dependencies-(non-major) branch from 81b33e3 to 2eda93e Compare September 10, 2024 07:50
@renovate renovate bot changed the title Update dependency aws-cdk-lib to v2.156.0 Update dependency aws-cdk-lib to v2.157.0 Sep 10, 2024
@renovate renovate bot force-pushed the renovate/dependencies-(non-major) branch from 2eda93e to 5702e31 Compare September 11, 2024 21:45
@renovate renovate bot changed the title Update dependency aws-cdk-lib to v2.157.0 Update dependency aws-cdk-lib to v2.158.0 Sep 11, 2024
@renovate renovate bot force-pushed the renovate/dependencies-(non-major) branch from 5702e31 to 77e9b20 Compare September 19, 2024 03:41
@renovate renovate bot changed the title Update dependency aws-cdk-lib to v2.158.0 Update dependency aws-cdk-lib to v2.159.0 Sep 19, 2024
@renovate renovate bot force-pushed the renovate/dependencies-(non-major) branch from 77e9b20 to 87870d9 Compare September 19, 2024 23:15
@renovate renovate bot changed the title Update dependency aws-cdk-lib to v2.159.0 Update dependency aws-cdk-lib to v2.159.1 Sep 19, 2024
@renovate renovate bot force-pushed the renovate/dependencies-(non-major) branch from 87870d9 to f975d52 Compare September 24, 2024 17:34
@renovate renovate bot changed the title Update dependency aws-cdk-lib to v2.159.1 Update dependency aws-cdk-lib to v2.160.0 Sep 24, 2024
@renovate renovate bot force-pushed the renovate/dependencies-(non-major) branch from f975d52 to ee525c8 Compare October 4, 2024 03:03
@renovate renovate bot changed the title Update dependency aws-cdk-lib to v2.160.0 Update dependency aws-cdk-lib to v2.161.0 Oct 4, 2024
@renovate renovate bot force-pushed the renovate/dependencies-(non-major) branch from ee525c8 to 2e521a1 Compare October 5, 2024 06:14
@renovate renovate bot changed the title Update dependency aws-cdk-lib to v2.161.0 Update dependency aws-cdk-lib to v2.161.1 Oct 5, 2024
@renovate renovate bot force-pushed the renovate/dependencies-(non-major) branch from 2e521a1 to ed3b72f Compare October 10, 2024 19:55
@renovate renovate bot changed the title Update dependency aws-cdk-lib to v2.161.1 Update dependencies (non-major) Oct 10, 2024
@renovate renovate bot force-pushed the renovate/dependencies-(non-major) branch 4 times, most recently from cc7cb91 to 48d918c Compare October 14, 2024 20:27
@renovate renovate bot force-pushed the renovate/dependencies-(non-major) branch 4 times, most recently from 8bdb5cd to 46ae4d7 Compare October 25, 2024 20:12
@renovate renovate bot force-pushed the renovate/dependencies-(non-major) branch from 46ae4d7 to d539286 Compare October 31, 2024 22:31
@renovate renovate bot force-pushed the renovate/dependencies-(non-major) branch from d539286 to dc9de25 Compare November 7, 2024 03:35
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants