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.162.1 #128

Merged
merged 1 commit into from
Oct 14, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 4, 2024

This PR contains the following updates:

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

Release Notes

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

v2.162.1

Compare Source

Bug Fixes

Alpha modules (2.162.1-alpha.0)

v2.162.0

Compare Source

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)

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 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 5, 2024
@renovate renovate bot force-pushed the renovate/aws-cdk-lib-2.x branch 2 times, most recently from 6a6be3a to 1a67e2d Compare October 10, 2024 22:48
@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 10, 2024
@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 11, 2024
@renovate renovate bot force-pushed the renovate/aws-cdk-lib-2.x branch from 1a67e2d to a0a3900 Compare October 11, 2024 19:28
Copy link

@s-quatres s-quatres merged commit f402e82 into main Oct 14, 2024
8 checks passed
@s-quatres s-quatres deleted the renovate/aws-cdk-lib-2.x branch October 14, 2024 11:32
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