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 17 updates #14

Closed

Conversation

dependabot[bot]
Copy link

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

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

Package From To
cspell 8.10.4 8.14.4
aws-cdk-lib 2.149.0 2.160.0
esbuild 0.23.0 0.24.0
aws-cdk 2.149.0 2.160.0
typescript 5.5.3 5.6.2
@aws-sdk/client-dynamodb 3.614.0 3.658.1
@aws-sdk/lib-dynamodb 3.614.0 3.658.1
@codegenie/serverless-express 4.14.1 4.15.0
@middy/core 5.4.5 5.5.0
aws-xray-sdk 3.9.0 3.10.1
dayjs 1.11.11 1.11.13
express 4.19.2 4.21.0
@types/aws-lambda 8.10.141 8.10.145
aws-sdk-client-mock 4.0.1 4.0.2
@aws-sdk/client-cognito-identity-provider 3.614.0 3.658.1
@aws-sdk/client-ssm 3.614.0 3.658.1
@aws-sdk/util-dynamodb 3.614.0 3.658.1

Updates cspell from 8.10.4 to 8.14.4

Release notes

Sourced from cspell's releases.

v8.14.4

Changes

Fixes

fix: Remove object from cache (#6257)

flatpack-json was caching the objects it got for performance. But this created an issue when one of those objects were updated in the background. Since the object was cached, it was assumed that nothing had changed.


v8.14.3

Changes

Delete unneeded Jekyll post (#6208)

I found this while searching on the site for 'GitHub'. :-)


Fixes

fix: Add ability to unpack and preserve order (#6252)


fix: Make flatpack-json diff friendly. (#6243)


... (truncated)

Changelog

Sourced from cspell's changelog.

8.14.4 (2024-09-18)

8.14.3 (2024-09-17)

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

Release notes

Sourced from aws-cdk-lib's releases.

v2.160.0

Features


Alpha modules (2.160.0-alpha.0)

Features

  • kinesisanalytics-flink: support Apache Flink 1.20 (#31349) (b3b9aa8)

Bug Fixes

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

... (truncated)

Changelog

Sourced from aws-cdk-lib's changelog.

2.160.0 (2024-09-24)

Features

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

... (truncated)

Commits
  • 9d45831 chore(release): 2.160.0
  • a29bf19 fix(ec2): instance resourceSignalTimeout overwrites initOptions.timeout (#31446)
  • 5e95ba2 feat: allow all sts options for roles assumed by the cli (#31089)
  • 1593500 feat(core): configure Stack SNS notification ARNs on the Stack construct (#31...
  • b49032b feat(stepfunctions): add support for EncryptionConfiguration (#30959)
  • eb2dfda chore(ec2): add Compute Optimizer Interface VPC Endpoint (#31504)
  • d6f6f56 chore(rds): support minor versions for RDS for SQL Server (#31491)
  • 96e799e chore(ec2): add Serverless Application Repository Interface VPC Endpoint (#31...
  • 76e83a5 chore(lambda): improve the doc about the code signing in Lambda (#31500)
  • 17be13f revert: fix(ec2): fixing vpc endpoint pattern for ecr and ecr docker (#31496)
  • Additional commits viewable in compare view

Updates esbuild from 0.23.0 to 0.24.0

Release notes

Sourced from esbuild's releases.

v0.24.0

This release deliberately contains backwards-incompatible changes. To avoid automatically picking up releases like this, you should either be pinning the exact version of esbuild in your package.json file (recommended) or be using a version range syntax that only accepts patch upgrades such as ^0.23.0 or ~0.23.0. See npm's documentation about semver for more information.

  • Drop support for older platforms (#3902)

    This release drops support for the following operating system:

    • macOS 10.15 Catalina

    This is because the Go programming language dropped support for this operating system version in Go 1.23, and this release updates esbuild from Go 1.22 to Go 1.23. Go 1.23 now requires macOS 11 Big Sur or later.

    Note that this only affects the binary esbuild executables that are published to the esbuild npm package. It's still possible to compile esbuild's source code for these older operating systems. If you need to, you can compile esbuild for yourself using an older version of the Go compiler (before Go version 1.23). That might look something like this:

    git clone https://github.com/evanw/esbuild.git
    cd esbuild
    go build ./cmd/esbuild
    ./esbuild --version
    
  • Fix class field decorators in TypeScript if useDefineForClassFields is false (#3913)

    Setting the useDefineForClassFields flag to false in tsconfig.json means class fields use the legacy TypeScript behavior instead of the standard JavaScript behavior. Specifically they use assign semantics instead of define semantics (e.g. setters are triggered) and fields without an initializer are not initialized at all. However, when this legacy behavior is combined with standard JavaScript decorators, TypeScript switches to always initializing all fields, even those without initializers. Previously esbuild incorrectly continued to omit field initializers for this edge case. These field initializers in this case should now be emitted starting with this release.

  • Avoid incorrect cycle warning with tsconfig.json multiple inheritance (#3898)

    TypeScript 5.0 introduced multiple inheritance for tsconfig.json files where extends can be an array of file paths. Previously esbuild would incorrectly treat files encountered more than once when processing separate subtrees of the multiple inheritance hierarchy as an inheritance cycle. With this release, tsconfig.json files containing this edge case should work correctly without generating a warning.

  • Handle Yarn Plug'n'Play stack overflow with tsconfig.json (#3915)

    Previously a tsconfig.json file that extends another file in a package with an exports map could cause a stack overflow when Yarn's Plug'n'Play resolution was active. This edge case should work now starting with this release.

  • Work around more issues with Deno 1.31+ (#3917)

    This version of Deno broke the stdin and stdout properties on command objects for inherited streams, which matters when you run esbuild's Deno module as the entry point (i.e. when import.meta.main is true). Previously esbuild would crash in Deno 1.31+ if you ran esbuild like that. This should be fixed starting with this release.

    This fix was contributed by @​Joshix-1.

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";

... (truncated)

Changelog

Sourced from esbuild's changelog.

0.24.0

This release deliberately contains backwards-incompatible changes. To avoid automatically picking up releases like this, you should either be pinning the exact version of esbuild in your package.json file (recommended) or be using a version range syntax that only accepts patch upgrades such as ^0.23.0 or ~0.23.0. See npm's documentation about semver for more information.

  • Drop support for older platforms (#3902)

    This release drops support for the following operating system:

    • macOS 10.15 Catalina

    This is because the Go programming language dropped support for this operating system version in Go 1.23, and this release updates esbuild from Go 1.22 to Go 1.23. Go 1.23 now requires macOS 11 Big Sur or later.

    Note that this only affects the binary esbuild executables that are published to the esbuild npm package. It's still possible to compile esbuild's source code for these older operating systems. If you need to, you can compile esbuild for yourself using an older version of the Go compiler (before Go version 1.23). That might look something like this:

    git clone https://github.com/evanw/esbuild.git
    cd esbuild
    go build ./cmd/esbuild
    ./esbuild --version
    
  • Fix class field decorators in TypeScript if useDefineForClassFields is false (#3913)

    Setting the useDefineForClassFields flag to false in tsconfig.json means class fields use the legacy TypeScript behavior instead of the standard JavaScript behavior. Specifically they use assign semantics instead of define semantics (e.g. setters are triggered) and fields without an initializer are not initialized at all. However, when this legacy behavior is combined with standard JavaScript decorators, TypeScript switches to always initializing all fields, even those without initializers. Previously esbuild incorrectly continued to omit field initializers for this edge case. These field initializers in this case should now be emitted starting with this release.

  • Avoid incorrect cycle warning with tsconfig.json multiple inheritance (#3898)

    TypeScript 5.0 introduced multiple inheritance for tsconfig.json files where extends can be an array of file paths. Previously esbuild would incorrectly treat files encountered more than once when processing separate subtrees of the multiple inheritance hierarchy as an inheritance cycle. With this release, tsconfig.json files containing this edge case should work correctly without generating a warning.

  • Handle Yarn Plug'n'Play stack overflow with tsconfig.json (#3915)

    Previously a tsconfig.json file that extends another file in a package with an exports map could cause a stack overflow when Yarn's Plug'n'Play resolution was active. This edge case should work now starting with this release.

  • Work around more issues with Deno 1.31+ (#3917)

    This version of Deno broke the stdin and stdout properties on command objects for inherited streams, which matters when you run esbuild's Deno module as the entry point (i.e. when import.meta.main is true). Previously esbuild would crash in Deno 1.31+ if you ran esbuild like that. This should be fixed starting with this release.

    This fix was contributed by @​Joshix-1.

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

... (truncated)

Commits

Updates aws-cdk from 2.149.0 to 2.160.0

Release notes

Sourced from aws-cdk's releases.

v2.160.0

Features


Alpha modules (2.160.0-alpha.0)

Features

  • kinesisanalytics-flink: support Apache Flink 1.20 (#31349) (b3b9aa8)

Bug Fixes

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

... (truncated)

Changelog

Sourced from aws-cdk's changelog.

2.160.0 (2024-09-24)

Features

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

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

| Package | From | To |
| --- | --- | --- |
| [cspell](https://github.com/streetsidesoftware/cspell/tree/HEAD/packages/cspell) | `8.10.4` | `8.14.4` |
| [aws-cdk-lib](https://github.com/aws/aws-cdk/tree/HEAD/packages/aws-cdk-lib) | `2.149.0` | `2.160.0` |
| [esbuild](https://github.com/evanw/esbuild) | `0.23.0` | `0.24.0` |
| [aws-cdk](https://github.com/aws/aws-cdk/tree/HEAD/packages/aws-cdk) | `2.149.0` | `2.160.0` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.5.3` | `5.6.2` |
| [@aws-sdk/client-dynamodb](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-dynamodb) | `3.614.0` | `3.658.1` |
| [@aws-sdk/lib-dynamodb](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/lib/lib-dynamodb) | `3.614.0` | `3.658.1` |
| [@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.5.0` |
| [aws-xray-sdk](https://github.com/aws/aws-xray-sdk-node) | `3.9.0` | `3.10.1` |
| [dayjs](https://github.com/iamkun/dayjs) | `1.11.11` | `1.11.13` |
| [express](https://github.com/expressjs/express) | `4.19.2` | `4.21.0` |
| [@types/aws-lambda](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/aws-lambda) | `8.10.141` | `8.10.145` |
| [aws-sdk-client-mock](https://github.com/m-radzikowski/aws-sdk-client-mock) | `4.0.1` | `4.0.2` |
| [@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.658.1` |
| [@aws-sdk/client-ssm](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-ssm) | `3.614.0` | `3.658.1` |
| [@aws-sdk/util-dynamodb](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/packages/util-dynamodb) | `3.614.0` | `3.658.1` |



Updates `cspell` from 8.10.4 to 8.14.4
- [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.4/packages/cspell)

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

Updates `esbuild` from 0.23.0 to 0.24.0
- [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.24.0)

Updates `aws-cdk` from 2.149.0 to 2.160.0
- [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.160.0/packages/aws-cdk)

Updates `typescript` from 5.5.3 to 5.6.2
- [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.6.2)

Updates `@aws-sdk/client-dynamodb` from 3.614.0 to 3.658.1
- [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.658.1/clients/client-dynamodb)

Updates `@aws-sdk/lib-dynamodb` from 3.614.0 to 3.658.1
- [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.658.1/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.5.0
- [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.5.0/packages/core)

Updates `aws-xray-sdk` from 3.9.0 to 3.10.1
- [Release notes](https://github.com/aws/aws-xray-sdk-node/releases)
- [Changelog](https://github.com/aws/aws-xray-sdk-node/blob/master/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-xray-sdk-node/compare/[email protected]@3.10.1)

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 `express` from 4.19.2 to 4.21.0
- [Release notes](https://github.com/expressjs/express/releases)
- [Changelog](https://github.com/expressjs/express/blob/4.21.0/History.md)
- [Commits](expressjs/express@4.19.2...4.21.0)

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

Updates `aws-sdk-client-mock` from 4.0.1 to 4.0.2
- [Release notes](https://github.com/m-radzikowski/aws-sdk-client-mock/releases)
- [Changelog](https://github.com/m-radzikowski/aws-sdk-client-mock/blob/main/CHANGELOG.md)
- [Commits](m-radzikowski/aws-sdk-client-mock@v4.0.1...v4.0.2)

Updates `@aws-sdk/client-cognito-identity-provider` from 3.614.0 to 3.658.1
- [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.658.1/clients/client-cognito-identity-provider)

Updates `@aws-sdk/client-ssm` from 3.614.0 to 3.658.1
- [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.658.1/clients/client-ssm)

Updates `@aws-sdk/util-dynamodb` from 3.614.0 to 3.658.1
- [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.658.1/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-minor
  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-minor
  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-minor
  dependency-group: minor-and-patch
- dependency-name: aws-xray-sdk
  dependency-type: direct:production
  update-type: version-update:semver-minor
  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: express
  dependency-type: direct:production
  update-type: version-update:semver-minor
  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-mock
  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 Sep 30, 2024
Copy link
Author

dependabot bot commented on behalf of github Oct 7, 2024

Superseded by #15.

@dependabot dependabot bot closed this Oct 7, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/minor-and-patch-9986db4ffb branch October 7, 2024 17:16
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