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

chore(deps): update dependency aws-cdk-lib to v2.166.0 #47

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 24, 2023

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
aws-cdk-lib (source) 2.84.0 -> 2.166.0 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

Alpha modules (2.158.0-alpha.0)

Features

v2.157.0

Compare Source

Features
  • update L1 CloudFormation

Configuration

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

🚦 Automerge: Enabled.

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

🔕 Ignore: Close this PR and you won't be reminded about this update 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
Copy link
Contributor Author

renovate bot commented Jun 24, 2023

Branch automerge failure

This PR was configured for branch automerge. However, this is not possible, so it has been raised as a PR instead.


  • Branch has one or more failed status checks

@renovate renovate bot force-pushed the renovate/aws-cdk-monorepo branch 11 times, most recently from d3dd561 to a77121a Compare July 1, 2023 16:04
@renovate renovate bot force-pushed the renovate/aws-cdk-monorepo branch 2 times, most recently from fa4af74 to d708b80 Compare July 2, 2023 04:05
@renovate renovate bot changed the title chore(deps): update dependency aws-cdk-lib to v2.85.0 chore(deps): update dependency aws-cdk-lib to v2.86.0 Jul 2, 2023
@renovate renovate bot force-pushed the renovate/aws-cdk-monorepo branch 13 times, most recently from e820c50 to c91ebc3 Compare July 8, 2023 04:27
@renovate renovate bot force-pushed the renovate/aws-cdk-monorepo branch from c91ebc3 to 8c38f08 Compare July 9, 2023 18:55
@renovate renovate bot changed the title chore(deps): update dependency aws-cdk-lib to v2.86.0 chore(deps): update dependency aws-cdk-lib to v2.87.0 Jul 9, 2023
@renovate renovate bot changed the title chore(deps): update dependency aws-cdk-lib to v2.156.0 chore(deps): update dependency aws-cdk-lib to v2.157.0 Sep 13, 2024
@renovate renovate bot changed the title chore(deps): update dependency aws-cdk-lib to v2.157.0 chore(deps): update dependency aws-cdk-lib to v2.158.0 Sep 14, 2024
@renovate renovate bot changed the title chore(deps): update dependency aws-cdk-lib to v2.158.0 chore(deps): update dependency aws-cdk-lib to v2.159.0 Sep 22, 2024
@renovate renovate bot changed the title chore(deps): update dependency aws-cdk-lib to v2.159.0 chore(deps): update dependency aws-cdk-lib to v2.159.1 Sep 22, 2024
@renovate renovate bot changed the title chore(deps): update dependency aws-cdk-lib to v2.159.1 chore(deps): update dependency aws-cdk-lib to v2.160.0 Sep 27, 2024
@renovate renovate bot force-pushed the renovate/aws-cdk-monorepo branch from 0d60e3d to f02ad0a Compare October 7, 2024 03:16
@renovate renovate bot changed the title chore(deps): update dependency aws-cdk-lib to v2.160.0 chore(deps): update dependency aws-cdk-lib to v2.161.0 Oct 7, 2024
@renovate renovate bot force-pushed the renovate/aws-cdk-monorepo branch from f02ad0a to de532c8 Compare October 8, 2024 06:19
@renovate renovate bot changed the title chore(deps): update dependency aws-cdk-lib to v2.161.0 chore(deps): update dependency aws-cdk-lib to v2.161.1 Oct 8, 2024
@renovate renovate bot force-pushed the renovate/aws-cdk-monorepo branch from de532c8 to 1da7755 Compare October 13, 2024 22:32
@renovate renovate bot changed the title chore(deps): update dependency aws-cdk-lib to v2.161.1 chore(deps): update dependency aws-cdk-lib to v2.162.0 Oct 13, 2024
@renovate renovate bot force-pushed the renovate/aws-cdk-monorepo branch from 1da7755 to 9a1916a Compare October 14, 2024 20:45
@renovate renovate bot changed the title chore(deps): update dependency aws-cdk-lib to v2.162.0 chore(deps): update dependency aws-cdk-lib to v2.162.1 Oct 14, 2024
@renovate renovate bot force-pushed the renovate/aws-cdk-monorepo branch from 9a1916a to 856d053 Compare October 25, 2024 04:22
@renovate renovate bot changed the title chore(deps): update dependency aws-cdk-lib to v2.162.1 chore(deps): update dependency aws-cdk-lib to v2.163.0 Oct 25, 2024
@renovate renovate bot force-pushed the renovate/aws-cdk-monorepo branch from 856d053 to 7231a56 Compare October 25, 2024 19:58
@renovate renovate bot changed the title chore(deps): update dependency aws-cdk-lib to v2.163.0 chore(deps): update dependency aws-cdk-lib to v2.163.1 Oct 25, 2024
@renovate renovate bot force-pushed the renovate/aws-cdk-monorepo branch from 7231a56 to 4a2f555 Compare October 27, 2024 20:02
@renovate renovate bot changed the title chore(deps): update dependency aws-cdk-lib to v2.163.1 chore(deps): update dependency aws-cdk-lib to v2.164.0 Oct 27, 2024
@renovate renovate bot force-pushed the renovate/aws-cdk-monorepo branch from 4a2f555 to 1cc73d1 Compare October 28, 2024 19:06
@renovate renovate bot changed the title chore(deps): update dependency aws-cdk-lib to v2.164.0 chore(deps): update dependency aws-cdk-lib to v2.164.1 Oct 28, 2024
@renovate renovate bot force-pushed the renovate/aws-cdk-monorepo branch from 1cc73d1 to 02787d2 Compare November 3, 2024 21:52
@renovate renovate bot changed the title chore(deps): update dependency aws-cdk-lib to v2.164.1 chore(deps): update dependency aws-cdk-lib to v2.165.0 Nov 3, 2024
@renovate renovate bot force-pushed the renovate/aws-cdk-monorepo branch from 02787d2 to 730ff4a Compare November 10, 2024 04:49
@renovate renovate bot changed the title chore(deps): update dependency aws-cdk-lib to v2.165.0 chore(deps): update dependency aws-cdk-lib to v2.166.0 Nov 10, 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.

0 participants