Skip to content

Navigation Menu

Sign in
Sign up

chore(deps-dev): bump the all-dependencies group across 1 directory with 10 updates - #1184

Open
dependabot[bot] wants to merge 1 commit into
main from
dependabot/npm_and_yarn/all-dependencies-f1905320a6
Open

chore(deps-dev): bump the all-dependencies group across 1 directory with 10 updates #1184
dependabot[bot] wants to merge 1 commit into
main from
dependabot/npm_and_yarn/all-dependencies-f1905320a6

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 14, 2026
edited
Loading

Copy link
Copy Markdown
Contributor

Bumps the all-dependencies group with 10 updates in the / directory:

Package From To
@commitlint/cli 21.0.1 21.2.1
@commitlint/config-conventional 21.0.1 21.2.0
@secretlint/secretlint-rule-pattern 13.0.2 13.0.4
@secretlint/secretlint-rule-preset-recommend 13.0.2 13.0.4
secretlint 13.0.2 13.0.4
@biomejs/biome 2.4.15 2.5.8
@types/node 25.9.5 26.2.0
@vitest/coverage-v8 2.1.9 4.1.10
typescript 6.0.3 7.0.2
vitest 2.1.9 4.1.10

Updates @commitlint/cli from 21.0.1 to 21.2.1

Release notes

Sourced from @​commitlint/cli's releases.

v21.2.1

21.2.0 (2026年06月30日)

Features

  • resolve-extends: resolve pure-ESM presets (conventional-changelog v7/v9/v10) (#4859) (fdb566f)

Chore, doc, etc.

New Contributors

Full Changelog: conventional-changelog/commitlint@v21.2.0...v21.2.1

v21.2.0

21.2.0 (2026年06月30日)

Features

Chore

Full Changelog: conventional-changelog/commitlint@v21.1.0...v21.2.0

v21.1.0

21.1.0 (2026年06月23日)

Bug Fixes

... (truncated)

Changelog

Sourced from @​commitlint/cli's changelog.

21.2.1 (2026年07月08日)

Note: Version bump only for package @​commitlint/cli

21.2.0 (2026年06月30日)

Features

  • resolve-extends: resolve pure-ESM presets (conventional-changelog v7/v9/v10) (#4859) (fdb566f)

21.1.0 (2026年06月23日)

Features

  • cli: add --default-config flag to lint without a config file (#4805) (7af27ba), closes #3662

21.0.2 (2026年05月29日)

Bug Fixes

  • disallow same commit hash for --from and --to (#4773) (121005e)
Commits

Updates @commitlint/config-conventional from 21.0.1 to 21.2.0

Release notes

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

v21.2.0

21.2.0 (2026年06月30日)

Features

Chore

Full Changelog: conventional-changelog/commitlint@v21.1.0...v21.2.0

v21.1.0

21.1.0 (2026年06月23日)

Bug Fixes

Features

Docs, chore, etc.

New Contributors

Full Changelog: conventional-changelog/commitlint@v21.0.2...v21.1.0

v21.0.2

... (truncated)

Changelog

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

21.2.0 (2026年06月30日)

Features

  • resolve-extends: resolve pure-ESM presets (conventional-changelog v7/v9/v10) (#4859) (fdb566f)

21.1.0 (2026年06月23日)

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

21.0.2 (2026年05月29日)

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

Commits

Updates @secretlint/secretlint-rule-pattern from 13.0.2 to 13.0.4

Release notes

Sourced from @​secretlint/secretlint-rule-pattern's releases.

v13.0.4

What's Changed

CI

Fixes

Full Changelog: secretlint/secretlint@v13.0.3...v13.0.4

v13.0.3

What's Changed

Bug Fixes

Refactoring

CI

Dependency Updates

... (truncated)

Commits

Updates @secretlint/secretlint-rule-preset-recommend from 13.0.2 to 13.0.4

Release notes

Sourced from @​secretlint/secretlint-rule-preset-recommend's releases.

v13.0.4

What's Changed

CI

Fixes

Full Changelog: secretlint/secretlint@v13.0.3...v13.0.4

v13.0.3

What's Changed

Bug Fixes

Refactoring

CI

Dependency Updates

... (truncated)

Commits

Updates secretlint from 13.0.2 to 13.0.4

Release notes

Sourced from secretlint's releases.

v13.0.4

What's Changed

CI

Fixes

Full Changelog: secretlint/secretlint@v13.0.3...v13.0.4

v13.0.3

What's Changed

Bug Fixes

Refactoring

CI

Dependency Updates

... (truncated)

Commits

Updates @biomejs/biome from 2.4.15 to 2.5.8

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.5.8

2.5.8

Patch Changes

  • #10710 0a0fbc1 Thanks @​dyc3! - Added a new nursery rule useReactCompiler, which reports diagnostics from React Compiler lint mode.

  • #11251 ea9dd8a Thanks @​dyc3! - Improved performance of noImportCycles.

  • #11247 52b44d6 Thanks @​dyc3! - Added the nursery rule noSvelteLegacyConst, which disallows legacy Svelte {@const} tags and recommends declaration tags with $derived().

    Invalid:

    {#each boxes as box}
     {@const area = box.width * box.height}
     <p>{area}</p>
    {/each}

    Valid:

    {#each boxes as box}
     {const area = $derived(box.width * box.height)}
     <p>{area}</p>
    {/each}
  • #11252 d5f5704 Thanks @​Turtle-Hwan! - Fixed #11250: useAwait no longer reports async functions that contain an await using declaration.

  • #11143 6be7be1 Thanks @​vznh! - Fixed #11017: noUselessUndefined no longer reports return undefined when the enclosing function has a return type annotation other than undefined or void.

  • #11234 caefe39 Thanks @​subotac! - Fixed #11228: CSS block comments between a declaration colon and value now preserve their source indentation.

     :root {
     --font-stack:
    -/* comment */
    + /* comment */
     system-ui;
     }
  • #11285 bca1f73 Thanks @​denbezrukov! - Fixed #11280: CSS formatting keeps comments inside functional pseudo-classes and pseudo-elements instead of moving them before the function name.

    -:/* comment */ where(div) {}
    +:where(/* comment */ div) {}

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

2.5.8

Patch Changes

  • #10710 0a0fbc1 Thanks @​dyc3! - Added a new nursery rule useReactCompiler, which reports diagnostics from React Compiler lint mode.

  • #11251 ea9dd8a Thanks @​dyc3! - Improved performance of noImportCycles.

  • #11247 52b44d6 Thanks @​dyc3! - Added the nursery rule noSvelteLegacyConst, which disallows legacy Svelte {@const} tags and recommends declaration tags with $derived().

    Invalid:

    {#each boxes as box}
     {@const area = box.width * box.height}
     <p>{area}</p>
    {/each}

    Valid:

    {#each boxes as box}
     {const area = $derived(box.width * box.height)}
     <p>{area}</p>
    {/each}
  • #11252 d5f5704 Thanks @​Turtle-Hwan! - Fixed #11250: useAwait no longer reports async functions that contain an await using declaration.

  • #11143 6be7be1 Thanks @​vznh! - Fixed #11017: noUselessUndefined no longer reports return undefined when the enclosing function has a return type annotation other than undefined or void.

  • #11234 caefe39 Thanks @​subotac! - Fixed #11228: CSS block comments between a declaration colon and value now preserve their source indentation.

     :root {
     --font-stack:
    -/* comment */
    + /* comment */
     system-ui;
     }
  • #11285 bca1f73 Thanks @​denbezrukov! - Fixed #11280: CSS formatting keeps comments inside functional pseudo-classes and pseudo-elements instead of moving them before the function name.

    -:/* comment */ where(div) {}
    +:where(/* comment */ div) {}

... (truncated)

Commits

Updates @types/node from 25.9.5 to 26.2.0

Commits

Updates @vitest/coverage-v8 from 2.1.9 to 4.1.10

Release notes

Sourced from @​vitest/coverage-v8's releases.

v4.1.10

🐞 Bug Fixes

View changes on GitHub

v4.1.9

🐞 Bug Fixes

View changes on GitHub

v4.1.8

🐞 Bug Fixes

View changes on GitHub

v4.1.7

🐞 Bug Fixes

View changes on GitHub

v4.1.6

🐞 Bug Fixes

🏎 Performance

  • Stringify diff objects only once - by

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Aug 14, 2026
...ith 10 updates
Bumps the all-dependencies group with 10 updates in the / directory:
| Package | From | To |
| --- | --- | --- |
| [@commitlint/cli](https://github.com/conventional-changelog/commitlint/tree/HEAD/@commitlint/cli) | `21.0.1` | `21.2.1` |
| [@commitlint/config-conventional](https://github.com/conventional-changelog/commitlint/tree/HEAD/@commitlint/config-conventional) | `21.0.1` | `21.2.0` |
| [@secretlint/secretlint-rule-pattern](https://github.com/secretlint/secretlint) | `13.0.2` | `13.0.4` |
| [@secretlint/secretlint-rule-preset-recommend](https://github.com/secretlint/secretlint) | `13.0.2` | `13.0.4` |
| [secretlint](https://github.com/secretlint/secretlint) | `13.0.2` | `13.0.4` |
| [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `2.4.15` | `2.5.8` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `25.9.5` | `26.2.0` |
| [@vitest/coverage-v8](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8) | `2.1.9` | `4.1.10` |
| [typescript](https://github.com/microsoft/TypeScript) | `6.0.3` | `7.0.2` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `2.1.9` | `4.1.10` |
Updates `@commitlint/cli` from 21.0.1 to 21.2.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/v21.2.1/@commitlint/cli)
Updates `@commitlint/config-conventional` from 21.0.1 to 21.2.0
- [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/v21.2.0/@commitlint/config-conventional)
Updates `@secretlint/secretlint-rule-pattern` from 13.0.2 to 13.0.4
- [Release notes](https://github.com/secretlint/secretlint/releases)
- [Commits](secretlint/secretlint@v13.0.2...v13.0.4)
Updates `@secretlint/secretlint-rule-preset-recommend` from 13.0.2 to 13.0.4
- [Release notes](https://github.com/secretlint/secretlint/releases)
- [Commits](secretlint/secretlint@v13.0.2...v13.0.4)
Updates `secretlint` from 13.0.2 to 13.0.4
- [Release notes](https://github.com/secretlint/secretlint/releases)
- [Commits](secretlint/secretlint@v13.0.2...v13.0.4)
Updates `@biomejs/biome` from 2.4.15 to 2.5.8
- [Release notes](https://github.com/biomejs/biome/releases)
- [Changelog](https://github.com/biomejs/biome/blob/main/packages/@biomejs/biome/CHANGELOG.md)
- [Commits](https://github.com/biomejs/biome/commits/@biomejs/biome@2.5.8/packages/@biomejs/biome)
Updates `@types/node` from 25.9.5 to 26.2.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)
Updates `@vitest/coverage-v8` from 2.1.9 to 4.1.10
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Changelog](https://github.com/vitest-dev/vitest/blob/main/docs/releases.md)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.1.10/packages/coverage-v8)
Updates `typescript` from 6.0.3 to 7.0.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Commits](microsoft/TypeScript@v6.0.3...v7.0.2)
Updates `vitest` from 2.1.9 to 4.1.10
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Changelog](https://github.com/vitest-dev/vitest/blob/main/docs/releases.md)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.1.10/packages/vitest)
---
updated-dependencies:
- dependency-name: "@biomejs/biome"
 dependency-version: 2.5.5
 dependency-type: direct:development
 update-type: version-update:semver-minor
 dependency-group: all-dependencies
- dependency-name: "@commitlint/cli"
 dependency-version: 21.2.1
 dependency-type: direct:development
 update-type: version-update:semver-minor
 dependency-group: all-dependencies
- dependency-name: "@commitlint/config-conventional"
 dependency-version: 21.2.0
 dependency-type: direct:development
 update-type: version-update:semver-minor
 dependency-group: all-dependencies
- dependency-name: "@secretlint/secretlint-rule-pattern"
 dependency-version: 13.0.4
 dependency-type: direct:development
 update-type: version-update:semver-patch
 dependency-group: all-dependencies
- dependency-name: "@secretlint/secretlint-rule-preset-recommend"
 dependency-version: 13.0.4
 dependency-type: direct:development
 update-type: version-update:semver-patch
 dependency-group: all-dependencies
- dependency-name: "@types/node"
 dependency-version: 26.1.1
 dependency-type: direct:development
 update-type: version-update:semver-major
 dependency-group: all-dependencies
- dependency-name: "@vitest/coverage-v8"
 dependency-version: 4.1.10
 dependency-type: direct:development
 update-type: version-update:semver-major
 dependency-group: all-dependencies
- dependency-name: secretlint
 dependency-version: 13.0.4
 dependency-type: direct:development
 update-type: version-update:semver-patch
 dependency-group: all-dependencies
- dependency-name: typescript
 dependency-version: 7.0.2
 dependency-type: direct:development
 update-type: version-update:semver-major
 dependency-group: all-dependencies
- dependency-name: vitest
 dependency-version: 4.1.10
 dependency-type: direct:development
 update-type: version-update:semver-major
 dependency-group: all-dependencies
...
Signed-off-by: dependabot[bot] <support@github.com>
dependabot Bot force-pushed the dependabot/npm_and_yarn/all-dependencies-f1905320a6 branch from 41d21c1 to 05302e4 Compare September 1, 2026 18:50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Reviewers

No reviews

Assignees

No one assigned

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Milestone

No milestone

Development

Successfully merging this pull request may close these issues.

0 participants

AltStyle によって変換されたページ (->オリジナル) /