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 aws-cdk monorepo to v2.161.1 #278

Merged
merged 2 commits into from
Oct 9, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 9, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
aws-cdk (source) 2.155.0 -> 2.161.1 age adoption passing confidence
aws-cdk-lib (source) 2.155.0 -> 2.161.1 age adoption passing confidence

Release Notes

aws/aws-cdk (aws-cdk)

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

Alpha modules (2.157.0-alpha.0)

v2.156.0

Compare Source

Features
Bug Fixes

Alpha modules (2.156.0-alpha.0)

Features
Bug Fixes

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 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.

Copy link
Contributor Author

renovate bot commented Sep 9, 2024

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 requested a review from a team as a code owner September 9, 2024 09:51
@renovate renovate bot force-pushed the renovate/aws-cdk-monorepo branch 4 times, most recently from 17bca06 to 03162bb Compare September 13, 2024 03:58
@renovate renovate bot changed the title chore(deps): update aws-cdk monorepo to v2.156.0 chore(deps): update aws-cdk monorepo to v2.157.0 Sep 13, 2024
@renovate renovate bot force-pushed the renovate/aws-cdk-monorepo branch 4 times, most recently from 1355db2 to ad3fd8d Compare September 14, 2024 22:32
@renovate renovate bot changed the title chore(deps): update aws-cdk monorepo to v2.157.0 chore(deps): update aws-cdk monorepo to v2.158.0 Sep 14, 2024
@renovate renovate bot force-pushed the renovate/aws-cdk-monorepo branch 8 times, most recently from 284e8a5 to 36a6322 Compare September 20, 2024 22:15
@renovate renovate bot changed the title chore(deps): update aws-cdk monorepo to v2.158.0 chore(deps): update aws-cdk monorepo to v2.159.0 Sep 22, 2024
@renovate renovate bot force-pushed the renovate/aws-cdk-monorepo branch 3 times, most recently from 1fddf69 to da271eb Compare September 22, 2024 22:21
@renovate renovate bot changed the title chore(deps): update aws-cdk monorepo to v2.159.0 chore(deps): update aws-cdk monorepo to v2.159.1 Sep 22, 2024
@renovate renovate bot force-pushed the renovate/aws-cdk-monorepo branch 4 times, most recently from 2a9c945 to 737dac9 Compare September 27, 2024 04:39
@renovate renovate bot changed the title chore(deps): update aws-cdk monorepo to v2.159.1 chore(deps): update aws-cdk monorepo to v2.160.0 Sep 27, 2024
@renovate renovate bot force-pushed the renovate/aws-cdk-monorepo branch 14 times, most recently from 98b23a4 to 278ad4a Compare October 3, 2024 09:56
@renovate renovate bot force-pushed the renovate/aws-cdk-monorepo branch 4 times, most recently from b83150f to 8f27ad8 Compare October 7, 2024 03:24
@renovate renovate bot changed the title chore(deps): update aws-cdk monorepo to v2.160.0 chore(deps): update aws-cdk monorepo to v2.161.0 Oct 7, 2024
@renovate renovate bot force-pushed the renovate/aws-cdk-monorepo branch 2 times, most recently from 9eb68e9 to a86f14b Compare October 8, 2024 04:10
@renovate renovate bot force-pushed the renovate/aws-cdk-monorepo branch from a86f14b to baa02d7 Compare October 8, 2024 08:05
@renovate renovate bot changed the title chore(deps): update aws-cdk monorepo to v2.161.0 chore(deps): update aws-cdk monorepo to v2.161.1 Oct 8, 2024
@joakimen joakimen merged commit 11032d5 into master Oct 9, 2024
3 checks passed
@joakimen joakimen deleted the renovate/aws-cdk-monorepo branch October 9, 2024 10:57
Copy link

github-actions bot commented Oct 9, 2024

🎉 This PR is included in version 2.22.11 🎉

The release is available on:

Your semantic-release bot 📦🚀

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.

1 participant