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

build(deps-dev): bump the aws-cdk group across 1 directory with 6 updates #762

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 20, 2024

Bumps the aws-cdk group with 6 updates in the / directory:

Package From To
@aws-cdk/lambda-layer-kubectl-v28 2.1.0 2.2.0
aws-cdk 2.108.1 2.159.1
aws-cdk-lib 2.108.1 2.159.1
cdk8s 2.68.4 2.69.4
cdk8s-cli 2.177.0 2.198.223
cdk8s-plus-27 2.7.61 2.9.5

Updates @aws-cdk/lambda-layer-kubectl-v28 from 2.1.0 to 2.2.0

Commits
  • 2dc08ca feat(projen): upgrade dependencies for last 3 minor versions (#532)
  • 806580c chore(deps): upgrade dependencies (#531)
  • bbec4c4 chore: upgrade helm to 3.14.0 (#490)
  • 4fb87a2 feat: upgrade helm and kubectl version as @​aws-cdk/lambda-layer-kubectl-v28 (...
  • 3ddaa84 feat: add KubectLayer and release as @​aws-cdk/lambda-layer-kubectl-v28 (#450)
  • 193965e feat: add KubectLayer and release as @​aws-cdk/lambda-layer-kubectl-v27 (#349)
  • bed1dc7 chore: only release on functional updates (v26) (#344)
  • ae4eaf3 fix: bump min cdk version to 2.28.0 to use node 14 (backport #300) (#312)
  • 219b341 feat: add KubectLayer and release as @​aws-cdk/lambda-layer-kubectl-v26 (#242)
  • aaab67b chore: update contributing guide for publishing new versions (backport #190) ...
  • Additional commits viewable in compare view

Updates aws-cdk from 2.108.1 to 2.159.1

Release notes

Sourced from aws-cdk's releases.

v2.159.1

Reverts

  • fix(ec2): fixing vpc endpoint pattern for ecr and ecr docker (#31496) (f7e8452)

Alpha modules (2.159.1-alpha.0)

v2.159.0

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

... (truncated)

Changelog

Sourced from aws-cdk's changelog.

2.159.1 (2024-09-19)

Reverts

  • fix(ec2): fixing vpc endpoint pattern for ecr and ecr docker (#31496) (f7e8452)

2.159.0 (2024-09-18)

Features

Bug Fixes

2.158.0 (2024-09-11)

Bug Fixes

2.157.0 (2024-09-09)

Features

  • update L1 CloudFormation resource definitions (#31361) (bc4dbfd)
  • appsync: support DEBUG and INFO logging levels for AppSync GraphQL APIs (#31326) (4b9643f)
  • lambda: added new property allowAllIpv6Outbound to FunctionOptions (#31013) (fa55194), closes #30994

... (truncated)

Commits
  • 0da4f43 fix(cli): hotswapping appsync functions fails when API does not return functi...
  • b6ad97f fix(cli): release outdir lock when synth fails (#30874)
  • 44134ad fix(cli): bootstrap respects qualifier from cdk.json (#31410)
  • ff02cca fix(ssm): update ssm-context to prevent raising an error on missing parameter...
  • 1e20375 chore: npm-check-updates && yarn upgrade (#31399)
  • e91eec2 chore: npm-check-updates && yarn upgrade (#30991)
  • 4fa7716 chore: fix spelling error of if (#31353)
  • cd58b50 chore: add option unacknowledged to cdk notices (#31250)
  • a6c2ad6 chore: save the logs (#31274)
  • 751a922 feat(CLI): synth displays "AssertDescription: CDK bootstrap stack version 6 r...
  • Additional commits viewable in compare view

Updates aws-cdk-lib from 2.108.1 to 2.159.1

Release notes

Sourced from aws-cdk-lib's releases.

v2.159.1

Reverts

  • fix(ec2): fixing vpc endpoint pattern for ecr and ecr docker (#31496) (f7e8452)

Alpha modules (2.159.1-alpha.0)

v2.159.0

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

... (truncated)

Changelog

Sourced from aws-cdk-lib's changelog.

2.159.1 (2024-09-19)

Reverts

  • fix(ec2): fixing vpc endpoint pattern for ecr and ecr docker (#31496) (f7e8452)

2.159.0 (2024-09-18)

Features

Bug Fixes

2.158.0 (2024-09-11)

Bug Fixes

2.157.0 (2024-09-09)

Features

  • update L1 CloudFormation resource definitions (#31361) (bc4dbfd)
  • appsync: support DEBUG and INFO logging levels for AppSync GraphQL APIs (#31326) (4b9643f)
  • lambda: added new property allowAllIpv6Outbound to FunctionOptions (#31013) (fa55194), closes #30994

... (truncated)

Commits
  • f7e8452 revert: fix(ec2): fixing vpc endpoint pattern for ecr and ecr docker (#31496)
  • 7ecfae4 chore(release): 2.159.0
  • de7ab7c fix(ecs): reduce ecs service task role cloudwatch permissions when no log con...
  • 60ce351 feat: update L1 CloudFormation resource definitions (#31484)
  • f60d13b docs(s3): updated docstring for BucketPolicy() (#31395)
  • 33eea3f feat(opensearch): support OpenSearch version 2.15 (#31398)
  • 95c49ab fix(ec2): fixing vpc endpoint pattern for ecr and ecr docker (#31434)
  • 1726abd fix(lambda): invalid Version object created from Version.fromVersionArn (#31433)
  • 386fca3 fix(eks): update private ecr repo url regex (#31394)
  • 84701d6 chore(s3): readme update with mixing L1 and L2 bucket policy (#31437)
  • Additional commits viewable in compare view

Updates cdk8s from 2.68.4 to 2.69.4

Release notes

Sourced from cdk8s's releases.

v2.69.4

2.69.4 (2024-09-20)

v2.69.3

2.69.3 (2024-09-17)

v2.69.2

2.69.2 (2024-09-16)

v2.69.1

2.69.1 (2024-09-15)

v2.69.0

2.69.0 (2024-09-10)

Features

v2.68.107

2.68.107 (2024-09-09)

v2.68.106

2.68.106 (2024-09-07)

v2.68.105

2.68.105 (2024-09-05)

v2.68.104

2.68.104 (2024-09-02)

v2.68.103

2.68.103 (2024-08-31)

v2.68.102

2.68.102 (2024-08-30)

v2.68.101

... (truncated)

Commits

Updates cdk8s-cli from 2.177.0 to 2.198.223

Release notes

Sourced from cdk8s-cli's releases.

v2.198.223

2.198.223 (2024-09-20)

v2.198.222

2.198.222 (2024-09-19)

v2.198.221

2.198.221 (2024-09-18)

v2.198.220

2.198.220 (2024-09-17)

v2.198.219

2.198.219 (2024-09-16)

v2.198.218

2.198.218 (2024-09-15)

v2.198.217

2.198.217 (2024-09-14)

v2.198.216

2.198.216 (2024-09-13)

v2.198.215

2.198.215 (2024-09-12)

Bug Fixes

  • import: duplicate properties are emitted when they differ only by case (#2721) (a7e4ae2)

v2.198.214

2.198.214 (2024-09-11)

v2.198.213

2.198.213 (2024-09-10)

v2.198.212

... (truncated)

Commits

Updates cdk8s-plus-27 from 2.7.61 to 2.9.5

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

…ates

Bumps the aws-cdk group with 6 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@aws-cdk/lambda-layer-kubectl-v28](https://github.com/cdklabs/awscdk-asset-kubectl) | `2.1.0` | `2.2.0` |
| [aws-cdk](https://github.com/aws/aws-cdk/tree/HEAD/packages/aws-cdk) | `2.108.1` | `2.159.1` |
| [aws-cdk-lib](https://github.com/aws/aws-cdk/tree/HEAD/packages/aws-cdk-lib) | `2.108.1` | `2.159.1` |
| [cdk8s](https://github.com/cdk8s-team/cdk8s-core) | `2.68.4` | `2.69.4` |
| [cdk8s-cli](https://github.com/cdk8s-team/cdk8s-cli) | `2.177.0` | `2.198.223` |
| [cdk8s-plus-27](https://github.com/cdk8s-team/cdk8s-plus) | `2.7.61` | `2.9.5` |



Updates `@aws-cdk/lambda-layer-kubectl-v28` from 2.1.0 to 2.2.0
- [Release notes](https://github.com/cdklabs/awscdk-asset-kubectl/releases)
- [Commits](cdklabs/awscdk-asset-kubectl@kubectl-v20v2.1.0...kubectl-v28v2.2.0)

Updates `aws-cdk` from 2.108.1 to 2.159.1
- [Release notes](https://github.com/aws/aws-cdk/releases)
- [Changelog](https://github.com/aws/aws-cdk/blob/main/CHANGELOG.v2.md)
- [Commits](https://github.com/aws/aws-cdk/commits/v2.159.1/packages/aws-cdk)

Updates `aws-cdk-lib` from 2.108.1 to 2.159.1
- [Release notes](https://github.com/aws/aws-cdk/releases)
- [Changelog](https://github.com/aws/aws-cdk/blob/main/CHANGELOG.v2.md)
- [Commits](https://github.com/aws/aws-cdk/commits/v2.159.1/packages/aws-cdk-lib)

Updates `cdk8s` from 2.68.4 to 2.69.4
- [Release notes](https://github.com/cdk8s-team/cdk8s-core/releases)
- [Commits](cdk8s-team/cdk8s-core@v2.68.4...v2.69.4)

Updates `cdk8s-cli` from 2.177.0 to 2.198.223
- [Release notes](https://github.com/cdk8s-team/cdk8s-cli/releases)
- [Commits](cdk8s-team/cdk8s-cli@v2.177.0...v2.198.223)

Updates `cdk8s-plus-27` from 2.7.61 to 2.9.5
- [Release notes](https://github.com/cdk8s-team/cdk8s-plus/releases)
- [Commits](cdk8s-team/cdk8s-plus@cdk8s-plus-27/v2.7.61...cdk8s-plus-27/v2.9.5)

---
updated-dependencies:
- dependency-name: "@aws-cdk/lambda-layer-kubectl-v28"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: aws-cdk
- dependency-name: aws-cdk
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: aws-cdk
- dependency-name: aws-cdk-lib
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: aws-cdk
- dependency-name: cdk8s
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: aws-cdk
- dependency-name: cdk8s-cli
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: aws-cdk
- dependency-name: cdk8s-plus-27
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: aws-cdk
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot requested review from a team as code owners September 20, 2024 12:24
@dependabot dependabot bot requested review from l0b0 and amfage September 20, 2024 12:24
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Sep 20, 2024
@dependabot dependabot bot added the javascript Pull requests that update Javascript code label Sep 20, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Sep 23, 2024

Superseded by #763.

@dependabot dependabot bot closed this Sep 23, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/aws-cdk-f7ca7b2765 branch September 23, 2024 13:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code
Development

Successfully merging this pull request may close these issues.

0 participants