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 dependency aws-cdk to v2.166.0 #7

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 15, 2022

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
aws-cdk (source) 2.29.0 -> 2.166.0 age adoption passing confidence

Release Notes

aws/aws-cdk (aws-cdk)

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

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 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 Sep 15, 2022

⚠ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: package-lock.json
npm ERR! code ERESOLVE
npm ERR! ERESOLVE unable to resolve dependency tree
npm ERR! 
npm ERR! While resolving: github-aws-oidc@0.1.0
npm ERR! Found: eslint@8.57.0
npm ERR! node_modules/eslint
npm ERR!   dev eslint@"^8.19.0" from the root project
npm ERR!   peer eslint@"^6.0.0 || ^7.0.0 || ^8.0.0" from @typescript-eslint/eslint-plugin@5.62.0
npm ERR!   node_modules/@typescript-eslint/eslint-plugin
npm ERR!     dev @typescript-eslint/eslint-plugin@"^5.30.6" from the root project
npm ERR!   1 more (@typescript-eslint/parser)
npm ERR! 
npm ERR! Could not resolve dependency:
npm ERR! peer eslint@"^6.0.0 || ^7.0.0" from eslint-plugin-unused-imports@1.1.5
npm ERR! node_modules/eslint-plugin-unused-imports
npm ERR!   dev eslint-plugin-unused-imports@"^1.1.5" from the root project
npm ERR! 
npm ERR! Fix the upstream dependency conflict, or retry
npm ERR! this command with --force, or --legacy-peer-deps
npm ERR! to accept an incorrect (and potentially broken) dependency resolution.
npm ERR! 
npm ERR! See /tmp/renovate/cache/others/npm/eresolve-report.txt for a full report.

npm ERR! A complete log of this run can be found in:
npm ERR!     /tmp/renovate/cache/others/npm/_logs/2024-05-04T20_48_05_907Z-debug-0.log

@renovate renovate bot changed the title Update aws-cdk monorepo to v2.41.0 Update aws-cdk monorepo to v2.42.0 Sep 16, 2022
@renovate renovate bot changed the title Update aws-cdk monorepo to v2.42.0 Update aws-cdk monorepo to v2.42.1 Sep 19, 2022
@renovate renovate bot changed the title Update aws-cdk monorepo to v2.42.1 Update aws-cdk monorepo to v2.43.0 Sep 22, 2022
@renovate renovate bot changed the title Update aws-cdk monorepo to v2.43.0 Update aws-cdk monorepo to v2.43.1 Sep 23, 2022
@renovate renovate bot force-pushed the renovate/aws-cdk-monorepo branch 2 times, most recently from 79405d4 to 3b54115 Compare September 29, 2022 14:50
@renovate renovate bot changed the title Update aws-cdk monorepo to v2.43.1 Update aws-cdk monorepo to v2.44.0 Sep 29, 2022
@renovate renovate bot force-pushed the renovate/aws-cdk-monorepo branch from 3b54115 to 71e5d42 Compare October 6, 2022 11:26
@renovate renovate bot changed the title Update aws-cdk monorepo to v2.44.0 Update aws-cdk monorepo to v2.45.0 Oct 6, 2022
@renovate renovate bot force-pushed the renovate/aws-cdk-monorepo branch from 71e5d42 to 925da59 Compare October 13, 2022 23:13
@renovate renovate bot changed the title Update aws-cdk monorepo to v2.45.0 Update aws-cdk monorepo to v2.46.0 Oct 13, 2022
@renovate renovate bot force-pushed the renovate/aws-cdk-monorepo branch from 925da59 to 3db378a Compare October 20, 2022 16:33
@renovate renovate bot changed the title Update aws-cdk monorepo to v2.46.0 Update aws-cdk monorepo to v2.47.0 Oct 20, 2022
@renovate renovate bot force-pushed the renovate/aws-cdk-monorepo branch from 3db378a to d4f22f1 Compare October 27, 2022 21:43
@renovate renovate bot changed the title Update aws-cdk monorepo to v2.47.0 Update aws-cdk monorepo to v2.48.0 Oct 27, 2022
@renovate renovate bot force-pushed the renovate/aws-cdk-monorepo branch from d4f22f1 to 78f58e4 Compare October 28, 2022 03:14
@renovate renovate bot changed the title Update aws-cdk monorepo to v2.48.0 Update aws-cdk monorepo to v2.49.0 Oct 28, 2022
@renovate renovate bot force-pushed the renovate/aws-cdk-monorepo branch from 78f58e4 to 2327986 Compare November 1, 2022 02:07
@renovate renovate bot changed the title Update aws-cdk monorepo to v2.49.0 Update aws-cdk monorepo to v2.49.1 Nov 1, 2022
@renovate renovate bot force-pushed the renovate/aws-cdk-monorepo branch from 2327986 to 5edc856 Compare November 1, 2022 13:50
@renovate renovate bot changed the title Update aws-cdk monorepo to v2.49.1 Update aws-cdk monorepo to v2.50.0 Nov 1, 2022
@renovate renovate bot force-pushed the renovate/aws-cdk-monorepo branch from 5edc856 to fd8d925 Compare November 20, 2022 08:59
@renovate renovate bot changed the title Update aws-cdk monorepo to v2.50.0 Update aws-cdk monorepo to v2.51.1 Nov 20, 2022
@renovate renovate bot force-pushed the renovate/aws-cdk-monorepo branch from fd8d925 to 34ab2ea Compare March 16, 2023 07:17
@renovate renovate bot changed the title Update aws-cdk monorepo to v2.51.1 Update aws-cdk monorepo to v2.69.0 Mar 16, 2023
@renovate renovate bot changed the title Update dependency aws-cdk to v2.154.0 Update dependency aws-cdk to v2.154.1 Aug 23, 2024
@renovate renovate bot force-pushed the renovate/aws-cdk-monorepo branch from f972428 to 6418cfe Compare August 30, 2024 08:38
@renovate renovate bot changed the title Update dependency aws-cdk to v2.154.1 Update dependency aws-cdk to v2.155.0 Aug 30, 2024
@renovate renovate bot force-pushed the renovate/aws-cdk-monorepo branch from 6418cfe to edba751 Compare September 7, 2024 11:38
@renovate renovate bot changed the title Update dependency aws-cdk to v2.155.0 Update dependency aws-cdk to v2.156.0 Sep 7, 2024
@renovate renovate bot changed the title Update dependency aws-cdk to v2.156.0 Update dependency aws-cdk to v2.157.0 Sep 10, 2024
@renovate renovate bot changed the title Update dependency aws-cdk to v2.157.0 Update dependency aws-cdk to v2.158.0 Sep 12, 2024
@renovate renovate bot changed the title Update dependency aws-cdk to v2.158.0 Update dependency aws-cdk to v2.159.0 Sep 19, 2024
@renovate renovate bot changed the title Update dependency aws-cdk to v2.159.0 Update dependency aws-cdk to v2.159.1 Sep 20, 2024
@renovate renovate bot changed the title Update dependency aws-cdk to v2.159.1 Update dependency aws-cdk to v2.160.0 Sep 25, 2024
@renovate renovate bot force-pushed the renovate/aws-cdk-monorepo branch from fc85664 to f5ec9c8 Compare October 5, 2024 08:44
@renovate renovate bot changed the title Update dependency aws-cdk to v2.160.0 Update dependency aws-cdk to v2.161.1 Oct 5, 2024
@renovate renovate bot force-pushed the renovate/aws-cdk-monorepo branch from f5ec9c8 to 1fed4f1 Compare October 12, 2024 08:19
@renovate renovate bot changed the title Update dependency aws-cdk to v2.161.1 Update dependency aws-cdk to v2.162.1 Oct 12, 2024
@renovate renovate bot force-pushed the renovate/aws-cdk-monorepo branch from 1fed4f1 to cc0fe0f Compare October 23, 2024 02:21
@renovate renovate bot changed the title Update dependency aws-cdk to v2.162.1 Update dependency aws-cdk to v2.163.1 Oct 23, 2024
@renovate renovate bot force-pushed the renovate/aws-cdk-monorepo branch from cc0fe0f to 8618b28 Compare October 25, 2024 02:32
@renovate renovate bot changed the title Update dependency aws-cdk to v2.163.1 Update dependency aws-cdk to v2.164.0 Oct 25, 2024
@renovate renovate bot force-pushed the renovate/aws-cdk-monorepo branch from 8618b28 to 3bfa662 Compare October 26, 2024 02:31
@renovate renovate bot changed the title Update dependency aws-cdk to v2.164.0 Update dependency aws-cdk to v2.164.1 Oct 26, 2024
@renovate renovate bot force-pushed the renovate/aws-cdk-monorepo branch from 3bfa662 to 69efa55 Compare November 1, 2024 08:41
@renovate renovate bot changed the title Update dependency aws-cdk to v2.164.1 Update dependency aws-cdk to v2.165.0 Nov 1, 2024
@renovate renovate bot force-pushed the renovate/aws-cdk-monorepo branch from 69efa55 to 6c3d479 Compare November 7, 2024 05:55
@renovate renovate bot changed the title Update dependency aws-cdk to v2.165.0 Update dependency aws-cdk to v2.166.0 Nov 7, 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