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

Bump the minor-and-patch group across 1 directory with 14 updates #9

Closed

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Aug 26, 2024

Bumps the minor-and-patch group with 14 updates in the / directory:

Package From To
cspell 8.10.4 8.14.2
aws-cdk-lib 2.149.0 2.154.1
esbuild 0.23.0 0.23.1
aws-cdk 2.149.0 2.154.1
typescript 5.5.3 5.5.4
@aws-sdk/client-dynamodb 3.614.0 3.637.0
@aws-sdk/lib-dynamodb 3.614.0 3.637.0
@codegenie/serverless-express 4.14.1 4.15.0
@middy/core 5.4.5 5.4.6
dayjs 1.11.11 1.11.13
@types/aws-lambda 8.10.141 8.10.143
@aws-sdk/client-cognito-identity-provider 3.614.0 3.637.0
@aws-sdk/client-ssm 3.614.0 3.637.0
@aws-sdk/util-dynamodb 3.614.0 3.637.0

Updates cspell from 8.10.4 to 8.14.2

Release notes

Sourced from cspell's releases.

v8.14.2

Changes

Fixes

fix: Remove timeout in ESLint plugin (#6124)

fixes #5825


v8.14.1

Changes

  • Republish

v8.14.0

Changes

Features

feat: Create package @​cspell/normalize-json (#6107)


feat: Add filetype detection package. (#6103)


Fixes

... (truncated)

Changelog

Sourced from cspell's changelog.

8.14.2 (2024-08-20)

8.14.1 (2024-08-17)

8.14.0 (2024-08-17)

8.13.3 (2024-08-12)

8.13.2 (2024-08-08)

8.13.1 (2024-08-02)

8.13.0 (2024-07-30)

8.12.1 (2024-07-22)

  • fix: make sure the version is up to date (f6ab018)

8.12.0 (2024-07-22)

8.11.0 (2024-07-16)

Commits

Updates aws-cdk-lib from 2.149.0 to 2.154.1

Release notes

Sourced from aws-cdk-lib's releases.

v2.154.1

Features

  • update L1 CloudFormation resource definitions (#31193) (aa97525)
  • update L1 CloudFormation resource definitions (#31194) (2191264)

Bug Fixes

  • cloudfront: requirement of domainNames prevents moving a domain name between distributions (#31001) (1255ce3), closes #29960 #29329

Alpha modules (2.154.1-alpha.0)

v2.154.0

Features

Bug Fixes

Reverts


Alpha modules (2.154.0-alpha.0)

Features

... (truncated)

Changelog

Sourced from aws-cdk-lib's changelog.

2.154.1 (2024-08-23)

Features

  • update L1 CloudFormation resource definitions (#31193) (aa97525)
  • update L1 CloudFormation resource definitions (#31194) (2191264)

Bug Fixes

  • cloudfront: requirement of domainNames prevents moving a domain name between distributions (#31001) (1255ce3), closes #29960 #29329

2.154.0 (2024-08-22)

Features

Bug Fixes

Reverts

... (truncated)

Commits
  • 2191264 feat: update L1 CloudFormation resource definitions (#31194)
  • aa97525 feat: update L1 CloudFormation resource definitions (#31193)
  • cb9298d chore(custom-resources): add @experimental decorator to `CustomResourceConf...
  • d23ade7 chore(lambda): add ca-west-1 for Cloudwatch Lambda Insight for x86_64 on avai...
  • 1255ce3 fix(cloudfront): requirement of domainNames prevents moving a domain name bet...
  • 5387605 feat: update L1 CloudFormation resource definitions (#31145)
  • 76e7af6 chore: add readme for cloud-assembly-schema (#31151)
  • bbb8885 chore: set LogGroup removal policy of all CDK-vended custom resources with Cu...
  • a2d3de4 Merge branch 'main' into merge-back/2.153.0
  • 572fe0a feat(lambda): support Recursive Loop Protection property
  • Additional commits viewable in compare view

Updates esbuild from 0.23.0 to 0.23.1

Release notes

Sourced from esbuild's releases.

v0.23.1

  • Allow using the node: import prefix with es* targets (#3821)

    The node: prefix on imports is an alternate way to import built-in node modules. For example, import fs from "fs" can also be written import fs from "node:fs". This only works with certain newer versions of node, so esbuild removes it when you target older versions of node such as with --target=node14 so that your code still works. With the way esbuild's platform-specific feature compatibility table works, this was added by saying that only newer versions of node support this feature. However, that means that a target such as --target=node18,es2022 removes the node: prefix because none of the es* targets are known to support this feature. This release adds the support for the node: flag to esbuild's internal compatibility table for es* to allow you to use compound targets like this:

    // Original code
    import fs from 'node:fs'
    fs.open
    // Old output (with --bundle --format=esm --platform=node --target=node18,es2022)
    import fs from "fs";
    fs.open;
    // New output (with --bundle --format=esm --platform=node --target=node18,es2022)
    import fs from "node:fs";
    fs.open;

  • Fix a panic when using the CLI with invalid build flags if --analyze is present (#3834)

    Previously esbuild's CLI could crash if it was invoked with flags that aren't valid for a "build" API call and the --analyze flag is present. This was caused by esbuild's internals attempting to add a Go plugin (which is how --analyze is implemented) to a null build object. The panic has been fixed in this release.

  • Fix incorrect location of certain error messages (#3845)

    This release fixes a regression that caused certain errors relating to variable declarations to be reported at an incorrect location. The regression was introduced in version 0.18.7 of esbuild.

  • Print comments before case clauses in switch statements (#3838)

    With this release, esbuild will attempt to print comments that come before case clauses in switch statements. This is similar to what esbuild already does for comments inside of certain types of expressions. Note that these types of comments are not printed if minification is enabled (specifically whitespace minification).

  • Fix a memory leak with pluginData (#3825)

    With this release, the build context's internal pluginData cache will now be cleared when starting a new build. This should fix a leak of memory from plugins that return pluginData objects from onResolve and/or onLoad callbacks.

Changelog

Sourced from esbuild's changelog.

0.23.1

  • Allow using the node: import prefix with es* targets (#3821)

    The node: prefix on imports is an alternate way to import built-in node modules. For example, import fs from "fs" can also be written import fs from "node:fs". This only works with certain newer versions of node, so esbuild removes it when you target older versions of node such as with --target=node14 so that your code still works. With the way esbuild's platform-specific feature compatibility table works, this was added by saying that only newer versions of node support this feature. However, that means that a target such as --target=node18,es2022 removes the node: prefix because none of the es* targets are known to support this feature. This release adds the support for the node: flag to esbuild's internal compatibility table for es* to allow you to use compound targets like this:

    // Original code
    import fs from 'node:fs'
    fs.open
    // Old output (with --bundle --format=esm --platform=node --target=node18,es2022)
    import fs from "fs";
    fs.open;
    // New output (with --bundle --format=esm --platform=node --target=node18,es2022)
    import fs from "node:fs";
    fs.open;

  • Fix a panic when using the CLI with invalid build flags if --analyze is present (#3834)

    Previously esbuild's CLI could crash if it was invoked with flags that aren't valid for a "build" API call and the --analyze flag is present. This was caused by esbuild's internals attempting to add a Go plugin (which is how --analyze is implemented) to a null build object. The panic has been fixed in this release.

  • Fix incorrect location of certain error messages (#3845)

    This release fixes a regression that caused certain errors relating to variable declarations to be reported at an incorrect location. The regression was introduced in version 0.18.7 of esbuild.

  • Print comments before case clauses in switch statements (#3838)

    With this release, esbuild will attempt to print comments that come before case clauses in switch statements. This is similar to what esbuild already does for comments inside of certain types of expressions. Note that these types of comments are not printed if minification is enabled (specifically whitespace minification).

  • Fix a memory leak with pluginData (#3825)

    With this release, the build context's internal pluginData cache will now be cleared when starting a new build. This should fix a leak of memory from plugins that return pluginData objects from onResolve and/or onLoad callbacks.

Commits

Updates aws-cdk from 2.149.0 to 2.154.1

Release notes

Sourced from aws-cdk's releases.

v2.154.1

Features

  • update L1 CloudFormation resource definitions (#31193) (aa97525)
  • update L1 CloudFormation resource definitions (#31194) (2191264)

Bug Fixes

  • cloudfront: requirement of domainNames prevents moving a domain name between distributions (#31001) (1255ce3), closes #29960 #29329

Alpha modules (2.154.1-alpha.0)

v2.154.0

Features

Bug Fixes

Reverts


Alpha modules (2.154.0-alpha.0)

Features

... (truncated)

Changelog

Sourced from aws-cdk's changelog.

2.154.1 (2024-08-23)

Features

  • update L1 CloudFormation resource definitions (#31193) (aa97525)
  • update L1 CloudFormation resource definitions (#31194) (2191264)

Bug Fixes

  • cloudfront: requirement of domainNames prevents moving a domain name between distributions (#31001) (1255ce3), closes #29960 #29329

2.154.0 (2024-08-22)

Features

Bug Fixes

Reverts

... (truncated)

Commits
  • 751a922 feat(CLI): synth displays "AssertDescription: CDK bootstrap stack version 6 r...
  • a31513a chore: use externally published version of cdk-assets (#31119)
  • ffba5b1 revert: feat(ecs): add validation checks to memory cpu combinations of FARGAT...
  • 94b68d7 chore: use externally published cloud-assembly-schema (#31064)
  • 5f30aa5 revert: feat(core): configure SNS topics to receive stack events on the Stack...
  • 0cdce20 feat(core): configure SNS topics to receive stack events on the Stack constru...
  • 79b5cd2 revert: feat(ec2): security group lookup via filters (#31065)
  • abc78bf feat(ec2): security group lookup via filters (#30625)
  • 8b4685e feat(ecs): add validation checks to memory cpu combinations of FARGATE compat...
  • See full diff in compare view

Updates typescript from 5.5.3 to 5.5.4

Release notes

Sourced from typescript's releases.

TypeScript 5.5.4

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

Commits
  • c8a7d58 Bump version to 5.5.4 and LKG
  • c0ded04 🤖 Pick PR #58771 (Allow references to the global Symb...) into release-5.5 (#...
  • 5ba41e2 🤖 Pick PR #59208 (Write non-missing undefined on mapp...) into release-5.5 (#...
  • b075332 🤖 Pick PR #59337 (Allow declarationMap to be emitted ...) into release-5.5 (#...
  • 9dd6f91 Cherry-pick "Stop using latest Node in CI" to release-5.5 (#59348)
  • bf0ddaf 🤖 Pick PR #59070 (Delay the calculation of common sou...) into release-5.5 (#...
  • a44e2d9 🤖 Pick PR #59160 (Fixed crash on authored import type...) into release-5.5 (#...
  • f35206d 🤖 Pick PR #59325 (Don't skip markLinkedReferences on ...) into release-5.5 (#...
  • 1109550 Fix baselines on release-5.5 (#59330)
  • 8794318 🤖 Pick PR #59215 (Fix codefix crash on circular alias...) into release-5.5 (#...
  • Additional commits viewable in compare view

Updates @aws-sdk/client-dynamodb from 3.614.0 to 3.637.0

Release notes

Sourced from @​aws-sdk/client-dynamodb's releases.

v3.637.0

3.637.0(2024-08-22)

Chores
  • util-endpoints: update aws partitions.json (9d2511b8)
  • endpoints: update endpoints model (f7ad4c17)
  • models: update API models (842bde9e)
  • client-codestar: deprecate CodeStar (#6402) (5327273d)
Documentation Changes
  • client-auto-scaling: Amazon EC2 Auto Scaling now provides EBS health check to manage EC2 instance replacement (041f6dd9)
New Features
  • client-route-53: Amazon Route 53 now supports the Asia Pacific (Malaysia) Region (ap-southeast-5) for latency records, geoproximity records, and private DNS for Amazon VPCs in that region. (b3d22dec)
  • client-emr-containers: Correct endpoint for FIPS is configured for US Gov Regions. (0cd9baec)
  • client-inspector2: Add enums for Agentless scan statuses and EC2 enablement error states (52856e7f)
  • client-quicksight: Explicit query for authors and dashboard viewing sharing for embedded users (18135bcc)
  • client-bedrock: Amazon Bedrock Evaluation BatchDeleteEvaluationJob API allows customers to delete evaluation jobs under terminated evaluation job statuses - Stopped, Failed, or Completed. Customers can submit a batch of 25 evaluation jobs to be deleted at once. (06501cbb)

For list of updated packages, view updated-packages.md in assets-3.637.0.zip

v3.636.0

3.636.0(2024-08-21)

Chores
  • turbo: simplify build scripts in package.json (#6366) (614d98e1)
Documentation Changes
  • link to smithy/middleware-retry in Notable Changes (#6397) (31263194)
New Features
  • clients: update client endpoints as of 2024-08-21 (f8aaf1df)
  • client-ses: Enable email receiving customers to provide SES with access to their S3 buckets via an IAM role for "Deliver to S3 Action" (aafc6ebd)
  • c...

    Description has been truncated

Bumps the minor-and-patch group with 14 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [cspell](https://github.com/streetsidesoftware/cspell/tree/HEAD/packages/cspell) | `8.10.4` | `8.14.2` |
| [aws-cdk-lib](https://github.com/aws/aws-cdk/tree/HEAD/packages/aws-cdk-lib) | `2.149.0` | `2.154.1` |
| [esbuild](https://github.com/evanw/esbuild) | `0.23.0` | `0.23.1` |
| [aws-cdk](https://github.com/aws/aws-cdk/tree/HEAD/packages/aws-cdk) | `2.149.0` | `2.154.1` |
| [typescript](https://github.com/Microsoft/TypeScript) | `5.5.3` | `5.5.4` |
| [@aws-sdk/client-dynamodb](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-dynamodb) | `3.614.0` | `3.637.0` |
| [@aws-sdk/lib-dynamodb](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/lib/lib-dynamodb) | `3.614.0` | `3.637.0` |
| [@codegenie/serverless-express](https://github.com/CodeGenieApp/serverless-express) | `4.14.1` | `4.15.0` |
| [@middy/core](https://github.com/middyjs/middy/tree/HEAD/packages/core) | `5.4.5` | `5.4.6` |
| [dayjs](https://github.com/iamkun/dayjs) | `1.11.11` | `1.11.13` |
| [@types/aws-lambda](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/aws-lambda) | `8.10.141` | `8.10.143` |
| [@aws-sdk/client-cognito-identity-provider](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-cognito-identity-provider) | `3.614.0` | `3.637.0` |
| [@aws-sdk/client-ssm](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-ssm) | `3.614.0` | `3.637.0` |
| [@aws-sdk/util-dynamodb](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/packages/util-dynamodb) | `3.614.0` | `3.637.0` |



Updates `cspell` from 8.10.4 to 8.14.2
- [Release notes](https://github.com/streetsidesoftware/cspell/releases)
- [Changelog](https://github.com/streetsidesoftware/cspell/blob/main/packages/cspell/CHANGELOG.md)
- [Commits](https://github.com/streetsidesoftware/cspell/commits/v8.14.2/packages/cspell)

Updates `aws-cdk-lib` from 2.149.0 to 2.154.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.154.1/packages/aws-cdk-lib)

Updates `esbuild` from 0.23.0 to 0.23.1
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.23.0...v0.23.1)

Updates `aws-cdk` from 2.149.0 to 2.154.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.154.1/packages/aws-cdk)

Updates `typescript` from 5.5.3 to 5.5.4
- [Release notes](https://github.com/Microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v5.5.3...v5.5.4)

Updates `@aws-sdk/client-dynamodb` from 3.614.0 to 3.637.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/clients/client-dynamodb/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.637.0/clients/client-dynamodb)

Updates `@aws-sdk/lib-dynamodb` from 3.614.0 to 3.637.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/lib/lib-dynamodb/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.637.0/lib/lib-dynamodb)

Updates `@codegenie/serverless-express` from 4.14.1 to 4.15.0
- [Release notes](https://github.com/CodeGenieApp/serverless-express/releases)
- [Changelog](https://github.com/CodeGenieApp/serverless-express/blob/mainline/CHANGELOG.md)
- [Commits](CodeGenieApp/serverless-express@v4.14.1...v4.15.0)

Updates `@middy/core` from 5.4.5 to 5.4.6
- [Release notes](https://github.com/middyjs/middy/releases)
- [Changelog](https://github.com/middyjs/middy/blob/main/docs/CHANGELOG.md)
- [Commits](https://github.com/middyjs/middy/commits/5.4.6/packages/core)

Updates `dayjs` from 1.11.11 to 1.11.13
- [Release notes](https://github.com/iamkun/dayjs/releases)
- [Changelog](https://github.com/iamkun/dayjs/blob/v1.11.13/CHANGELOG.md)
- [Commits](iamkun/dayjs@v1.11.11...v1.11.13)

Updates `@types/aws-lambda` from 8.10.141 to 8.10.143
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/aws-lambda)

Updates `@aws-sdk/client-cognito-identity-provider` from 3.614.0 to 3.637.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/clients/client-cognito-identity-provider/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.637.0/clients/client-cognito-identity-provider)

Updates `@aws-sdk/client-ssm` from 3.614.0 to 3.637.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/clients/client-ssm/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.637.0/clients/client-ssm)

Updates `@aws-sdk/util-dynamodb` from 3.614.0 to 3.637.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/packages/util-dynamodb/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.637.0/packages/util-dynamodb)

---
updated-dependencies:
- dependency-name: cspell
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: aws-cdk-lib
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: esbuild
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: aws-cdk
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@aws-sdk/client-dynamodb"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@aws-sdk/lib-dynamodb"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@codegenie/serverless-express"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@middy/core"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: dayjs
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@types/aws-lambda"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@aws-sdk/client-cognito-identity-provider"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@aws-sdk/client-ssm"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@aws-sdk/util-dynamodb"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Aug 26, 2024
Copy link
Author

dependabot bot commented on behalf of github Sep 2, 2024

Superseded by #10.

@dependabot dependabot bot closed this Sep 2, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/minor-and-patch-ac3a1f4026 branch September 2, 2024 18:03
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants