Skip to content

chore(deps-dev): bump the all group across 1 directory with 11 updates #412

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

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github May 12, 2025

Bumps the all group with 11 updates in the / directory:

Package From To
@commitlint/cli 19.8.0 19.8.1
@commitlint/config-conventional 19.8.0 19.8.1
@middy/core 6.1.5 6.2.4
@types/aws-lambda 8.10.147 8.10.149
@types/node 22.13.10 22.15.17
lint-staged 15.5.0 16.0.0
supertest 7.0.0 7.1.1
ts-jest 29.2.6 29.3.2
typedoc 0.28.0 0.28.4
typescript 5.8.2 5.8.3
webpack 5.98.0 5.99.8

Updates @commitlint/cli from 19.8.0 to 19.8.1

Release notes

Sourced from @​commitlint/cli's releases.

v19.8.1

19.8.1 (2025-05-08)

Performance Improvements

Docs

CI

New Contributors

Full Changelog: conventional-changelog/commitlint@v19.8.0...v19.8.1

Changelog

Sourced from @​commitlint/cli's changelog.

19.8.1 (2025-05-08)

Bug Fixes

Commits

Updates @commitlint/config-conventional from 19.8.0 to 19.8.1

Release notes

Sourced from @​commitlint/config-conventional's releases.

v19.8.1

19.8.1 (2025-05-08)

Performance Improvements

Docs

CI

New Contributors

Full Changelog: conventional-changelog/commitlint@v19.8.0...v19.8.1

Changelog

Sourced from @​commitlint/config-conventional's changelog.

19.8.1 (2025-05-08)

Note: Version bump only for package @​commitlint/config-conventional

Commits

Updates @middy/core from 6.1.5 to 6.2.4

Release notes

Sourced from @​middy/core's releases.

6.2.4

What's Changed

  • httpMultipartBodyParser - disableContentTypeError behavior possibly changed unintentionally in v6.1.0 #1328

Full Changelog: middyjs/middy@6.2.3...6.2.4

6.2.3

What's Changed

Full Changelog: middyjs/middy@6.2.2...6.2.3

6.2.2

What's Changed

New Contributors

Full Changelog: middyjs/middy@6.2.1...6.2.2

6.2.1

What's Changed

Full Changelog: middyjs/middy@6.2.0...6.2.1

6.2.0

What's Changed

New Contributors

... (truncated)

Commits

Updates @types/aws-lambda from 8.10.147 to 8.10.149

Commits

Updates @types/node from 22.13.10 to 22.15.17

Commits

Updates lint-staged from 15.5.0 to 16.0.0

Release notes

Sourced from lint-staged's releases.

v16.0.0

Major Changes

  • #1546 158d15c Thanks @​iiroj! - Processes are spawned using nano-spawn instead of execa. If you are using Node.js scripts as tasks, you might need to explicitly run them with node, especially when using Windows:

    {
      "*.js": "node my-js-linter.js"
    }
  • #1546 158d15c Thanks @​iiroj! - The --shell flag has been removed and lint-staged no longer supports evaluating commands directly via a shell. To migrate existing commands, you can create a shell script and invoke it instead. Lint-staged will pass matched staged files as a list of arguments, accessible via "$@":

    # my-script.sh
    #!/bin/bash
    echo "Staged files: $@"

    and

    { "*.js": "my-script.sh" }

    If you were using the shell option to avoid passing filenames to tasks, for example bash -c 'tsc --noEmit', use the function syntax instead:

    export default { '*.ts': () => 'tsc --noEmit' }
  • #1546 158d15c Thanks @​iiroj! - Validation for deprecated advanced configuration has been removed. The advanced configuration was removed in lint-staged version 9 and until now validation has failed if advanced configuration options were detected. Going forward the entire configuration will be treated with the same logic and if these advanced options are still present, they might be treated as valid globs for staged files instead.

  • #1546 158d15c Thanks @​iiroj! - The lowest supported Node.js version is 20.18. Please upgrade your Node.js version.

Minor Changes

  • #1401 27110ef Thanks @​RohitLuthra19! - Added support for directly running functions on staged files. To configure a function task, use an object with a title and the task itself:

    export default {
      '*.js': {
        title: 'My task',
        task: async (files) => {
          console.log('Staged JS files:', files)
        },
      },
    }

... (truncated)

Changelog

Sourced from lint-staged's changelog.

16.0.0

Major Changes

  • #1546 158d15c Thanks @​iiroj! - Processes are spawned using nano-spawn instead of execa. If you are using Node.js scripts as tasks, you might need to explicitly run them with node, especially when using Windows:

    {
      "*.js": "node my-js-linter.js"
    }
  • #1546 158d15c Thanks @​iiroj! - The --shell flag has been removed and lint-staged no longer supports evaluating commands directly via a shell. To migrate existing commands, you can create a shell script and invoke it instead. Lint-staged will pass matched staged files as a list of arguments, accessible via "$@":

    # my-script.sh
    #!/bin/bash
    echo "Staged files: $@"

    and

    { "*.js": "my-script.sh" }

    If you were using the shell option to avoid passing filenames to tasks, for example bash -c 'tsc --noEmit', use the function syntax instead:

    export default { '*.ts': () => 'tsc --noEmit' }
  • #1546 158d15c Thanks @​iiroj! - Validation for deprecated advanced configuration has been removed. The advanced configuration was removed in lint-staged version 9 and until now validation has failed if advanced configuration options were detected. Going forward the entire configuration will be treated with the same logic and if these advanced options are still present, they might be treated as valid globs for staged files instead.

  • #1546 158d15c Thanks @​iiroj! - The lowest supported Node.js version is 20.18. Please upgrade your Node.js version.

Minor Changes

  • #1401 27110ef Thanks @​RohitLuthra19! - Added support for directly running functions on staged files. To configure a function task, use an object with a title and the task itself:

    export default {
      '*.js': {
        title: 'My task',
        task: async (files) => {
          console.log('Staged JS files:', files)
        },
      },
    }

... (truncated)

Commits
  • dad5490 chore(changeset): release
  • 1c19e82 build(deps): update dependencies and require Node.js 20.18
  • 08cf8f5 docs: update README.md and bump nano-spawn as major change
  • 276dcc8 refactor: simplify config validation
  • d4b7cac test: update tests
  • 0ee9ab8 fix: update TypeScript type definitions
  • 12525b2 refactor: rename functions
  • 541c353 refactor: separate "make cmd tasks" and "make function tasks"
  • 27110ef feat: added support for custom configuration
  • 52366f9 ci: update Node.js versions used in CI
  • Additional commits viewable in compare view

Updates supertest from 7.0.0 to 7.1.1

Release notes

Sourced from supertest's releases.

v7.1.1

  • Merge pull request #858 from ByteOPCode/master f553845
  • feat: update superagent version d37d197

ladjs/supertest@v7.1.0...v7.1.1

v7.1.0

  • Merge pull request #852 from alxndrsn/econnreset de045d4
  • Merge pull request #845 from ikonst/master be0d5c7
  • Merge pull request #854 from alxndrsn/commitlint 35ac86f
  • fix(dev): commitlint dev dependency & config e67fcb2
  • fix: avoid server re-use race conditions 96c06e3
  • test: fix test failure due to localhost being also ipv6 92079a0

ladjs/supertest@v7.0.0...v7.1.0

Commits

Updates ts-jest from 29.2.6 to 29.3.2

Release notes

Sourced from ts-jest's releases.

v29.3.2

Please refer to CHANGELOG.md for details.

v29.3.1

Please refer to CHANGELOG.md for details.

v29.3.0

Please refer to CHANGELOG.md for details.

Changelog

Sourced from ts-jest's changelog.

29.3.2 (2025-04-12)

Bug Fixes

  • fix: transpile js files from node_modules whenever Jest asks (968370e), closes #4637

29.3.1 (2025-03-31)

Bug Fixes

  • fix: allow isolatedModules mode to have ts.Program under Node16/Next (25157eb)
  • fix: improve message for isolatedModules of ts-jest config (547eb6f)

29.3.0 (2025-03-21)

Features

  • feat: support hybrid module values for isolatedModules: true (f372121)

Bug Fixes

  • fix: set customConditions to undefined in TsCompiler (b091d70), closes #4620

Code Refactoring

  • refactor: remove manual version checker (89458fc)
  • refactor: remove patching deps based on version checker (bac4c43)
  • refactor: deprecate RawCompilerOptions interface (2b1b6cd)
  • refactor: deprecate transform option isolatedModules (7dfef71)

DEPRECATIONS

Commits
  • e1c6017 chore(release): 29.3.2
  • 968370e fix: transpile js files from node_modules whenever Jest asks (#4791)
  • ddfd812 build(deps): Update dependency lint-staged to ^15.5.1
  • efd5274 build: use faster mode to build/serve doc
  • ccd9a0e build: fix npm audit issue for website
  • 7e730d3 docs: add Hybrid Node module doc about Node16/NodeNext
  • 39a1222 test: add dynamic import code test for transpile-module
  • 5a21aca build(deps): Update dependency eslint-config-prettier to ^10.1.2
  • e10053f build(deps): Update dependency vite to ^6.2.6
  • a83170c build(deps): Update ESLint packages to ^8.29.1
  • Additional commits viewable in compare view

Updates typedoc from 0.28.0 to 0.28.4

Release notes

Sourced from typedoc's releases.

v0.28.4

Features

  • The navigation in the default theme will now attempt to break long names onto multiple lines, #2940.
  • Added German (de) localization, #2941.

Bug Fixes

  • TypeDoc's default theme now uses the same chevron for all collapsible elements, #2924 The chevronSmall helper is now deprecated and will be removed with v0.29.0.
  • Classes/interfaces marked with @hidden will no longer appear in the "Hierarchy" section of the docs.
  • TypeDoc now handles wildcard JSDoc types, #2949.

Thanks!

v0.28.3

Bug Fixes

  • @inline now functions when referencing tuple types, #2932.
  • @link links to the current page are now rendered, #2934.
  • @includeCode now supports regions in TypeScript files with .mts and .cts file extensions, #2935.
  • Aliased symbols (re-exports) are now resolved before checking if they are excluded/external, #2937.
  • Improved error reporting when paths including Windows separators are provided as globs, #2938.

v0.28.2

Features

  • @group none and @category none will now render their children without a section heading in the default theme, #2922.
  • Added @disableGroups tag to completely disable the grouping mechanism for a given reflection, #2922.

Bug Fixes

  • Variables using @class now correctly handle @category, #2914.
  • Variables using @class now include constructor parameters, #2914.
  • Variables using @class with a generic first constructor function now adopt that function's type parameters as the class type parameters, #2914.
  • When printing entry point globs which fail to match any paths, TypeDoc will no longer normalize the glob, #2918.
  • Inlining types can now handle more type variants, #2920.
  • Fixed behavior of externalSymbolLinkMappings option when URL is set to #, #2921.
  • Fixed broken links within module pages when structure-dir router was used, #2928.
  • Type parameters on JS classes defined with @typedef now correctly handle the constraint, #2929.

... (truncated)

Changelog

Sourced from typedoc's changelog.

v0.28.4 (2025-05-04)

Features

  • The navigation in the default theme will now attempt to break long names onto multiple lines, #2940.
  • Added German (de) localization, #2941.

Bug Fixes

  • TypeDoc's default theme now uses the same chevron for all collapsible elements, #2924 The chevronSmall helper is now deprecated and will be removed with v0.29.0.
  • Classes/interfaces marked with @hidden will no longer appear in the "Hierarchy" section of the docs.
  • TypeDoc now handles wildcard JSDoc types, #2949.

Thanks!

v0.28.3 (2025-04-20)

Bug Fixes

  • @inline now functions when referencing tuple types, #2932.
  • @link links to the current page are now rendered, #2934.
  • @includeCode now supports regions in TypeScript files with .mts and .cts file extensions, #2935.
  • Aliased symbols (re-exports) are now resolved before checking if they are excluded/external, #2937.
  • Improved error reporting when paths including Windows separators are provided as globs, #2938.

v0.28.2 (2025-04-07)

Features

  • @group none and @category none will now render their children without a section heading in the default theme, #2922.
  • Added @disableGroups tag to completely disable the grouping mechanism for a given reflection, #2922.

Bug Fixes

  • Variables using @class now correctly handle @category, #2914.
  • Variables using @class now include constructor parameters, #2914.
  • Variables using @class with a generic first constructor function now adopt that function's type parameters as the class type parameters, #2914.
  • When printing entry point globs which fail to match any paths, TypeDoc will no longer normalize the glob, #2918.
  • Inlining types can now handle more type variants, #2920.
  • Fixed behavior of externalSymbolLinkMappings option when URL is set to #, #2921.
  • Fixed broken links within module pages when structure-dir router was used, #2928.
  • Type parameters on JS classes defined with @typedef now correctly handle the constraint, #2929.

... (truncated)

Commits

Updates typescript from 5.8.2 to 5.8.3

Release notes

Sourced from typescript's releases.

TypeScript 5.8.3

For release notes, check out the release announcement.

Downloads are available on:

Commits
  • 83dc0bb Convert release publishing inputs into parameters (#61523)
  • ba663f6 Exclude completions of binding pattern variable initializers (#52723)
  • 7205eda Bump github/codeql-action from 3.28.12 to 3.28.13 in the github-actions group...
  • 89c572c Fixed a symbol display crash on expando members write locations (#55478)
  • 7b26d2e Fix incorrect name in new release pipeline (#61514)
  • c7a559e Add new release publisher yaml (#61491)
  • 29e6d66 Fix lib.includes('dom') check in containerSeemsToBeEmptyDomElement (#61481)
  • 19b7772 Bump the github-actions group with 4 updates (#61474)
  • 4dc677b Fix errors on type assertions in erasableSyntaxOnly (#61452)
  • ee3dd72 fix(60908): Unexpected "'Type' is declared but its value is never read." erro...
  • Additional commits viewable in compare view

Updates webpack from 5.98.0 to 5.99.8

Release notes

Sourced from webpack's releases.

v5.99.8

Fixes

  • Fixed type error with latest @types/node
  • Fixed typescript types

v5.99.7

Fixes

  • Don't skip export generation for default reexport (#19463)
  • Fixed module library export generation for reexport (#19459)
  • Avoid module concatenation in child compilation for module library (#19457)
  • Ensure HMR recover gracefully when CSS module with error
  • Respect cause of any errors and errors of AggregateError in stats output
  • Added missing @types/json-schema in types

v5.99.6

Fixes

  • Respect public path for ES modules
  • Fixed generation of module for module library when mixing commonjs and esm modules
  • Always apply FlagDependencyExportsPlugin for libraries where it required
  • Faster logic for dead control flow
  • Typescript types

v5.99.5

Fixes

  • Control dead flow for labeled and blockless statements

v5.99.4

Fixes

  • Fixed terminated state for if/else

v5.99.3

Fixes

  • Fixed dead control flow with deep nested if/else

v5.99.2

Fixes

  • Dead control flow for exotic cases

v5.99.1

Fixes

  • Dead control flow for many cases

... (truncated)

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

Bumps the all group with 11 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@commitlint/cli](https://github.com/conventional-changelog/commitlint/tree/HEAD/@commitlint/cli) | `19.8.0` | `19.8.1` |
| [@commitlint/config-conventional](https://github.com/conventional-changelog/commitlint/tree/HEAD/@commitlint/config-conventional) | `19.8.0` | `19.8.1` |
| [@middy/core](https://github.com/middyjs/middy/tree/HEAD/packages/core) | `6.1.5` | `6.2.4` |
| [@types/aws-lambda](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/aws-lambda) | `8.10.147` | `8.10.149` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.13.10` | `22.15.17` |
| [lint-staged](https://github.com/lint-staged/lint-staged) | `15.5.0` | `16.0.0` |
| [supertest](https://github.com/ladjs/supertest) | `7.0.0` | `7.1.1` |
| [ts-jest](https://github.com/kulshekhar/ts-jest) | `29.2.6` | `29.3.2` |
| [typedoc](https://github.com/TypeStrong/TypeDoc) | `0.28.0` | `0.28.4` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.8.2` | `5.8.3` |
| [webpack](https://github.com/webpack/webpack) | `5.98.0` | `5.99.8` |



Updates `@commitlint/cli` from 19.8.0 to 19.8.1
- [Release notes](https://github.com/conventional-changelog/commitlint/releases)
- [Changelog](https://github.com/conventional-changelog/commitlint/blob/master/@commitlint/cli/CHANGELOG.md)
- [Commits](https://github.com/conventional-changelog/commitlint/commits/v19.8.1/@commitlint/cli)

Updates `@commitlint/config-conventional` from 19.8.0 to 19.8.1
- [Release notes](https://github.com/conventional-changelog/commitlint/releases)
- [Changelog](https://github.com/conventional-changelog/commitlint/blob/master/@commitlint/config-conventional/CHANGELOG.md)
- [Commits](https://github.com/conventional-changelog/commitlint/commits/v19.8.1/@commitlint/config-conventional)

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

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

Updates `@types/node` from 22.13.10 to 22.15.17
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `lint-staged` from 15.5.0 to 16.0.0
- [Release notes](https://github.com/lint-staged/lint-staged/releases)
- [Changelog](https://github.com/lint-staged/lint-staged/blob/main/CHANGELOG.md)
- [Commits](lint-staged/lint-staged@v15.5.0...v16.0.0)

Updates `supertest` from 7.0.0 to 7.1.1
- [Release notes](https://github.com/ladjs/supertest/releases)
- [Commits](ladjs/supertest@v7.0.0...v7.1.1)

Updates `ts-jest` from 29.2.6 to 29.3.2
- [Release notes](https://github.com/kulshekhar/ts-jest/releases)
- [Changelog](https://github.com/kulshekhar/ts-jest/blob/main/CHANGELOG.md)
- [Commits](kulshekhar/ts-jest@v29.2.6...v29.3.2)

Updates `typedoc` from 0.28.0 to 0.28.4
- [Release notes](https://github.com/TypeStrong/TypeDoc/releases)
- [Changelog](https://github.com/TypeStrong/typedoc/blob/master/CHANGELOG.md)
- [Commits](TypeStrong/typedoc@v0.28.0...v0.28.4)

Updates `typescript` from 5.8.2 to 5.8.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml)
- [Commits](microsoft/TypeScript@v5.8.2...v5.8.3)

Updates `webpack` from 5.98.0 to 5.99.8
- [Release notes](https://github.com/webpack/webpack/releases)
- [Commits](webpack/webpack@v5.98.0...v5.99.8)

---
updated-dependencies:
- dependency-name: "@commitlint/cli"
  dependency-version: 19.8.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@commitlint/config-conventional"
  dependency-version: 19.8.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@middy/core"
  dependency-version: 6.2.4
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: "@types/aws-lambda"
  dependency-version: 8.10.149
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@types/node"
  dependency-version: 22.15.17
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: lint-staged
  dependency-version: 16.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: supertest
  dependency-version: 7.1.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: ts-jest
  dependency-version: 29.3.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: typedoc
  dependency-version: 0.28.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: typescript
  dependency-version: 5.8.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: webpack
  dependency-version: 5.99.8
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels May 12, 2025
Copy link
Contributor Author

dependabot bot commented on behalf of github May 19, 2025

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this May 19, 2025
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/all-26db8bfc62 branch May 19, 2025 12:34
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants