Skip to content

Bump the "all-dependencies" group with 1 update across multiple ecosystems - #95

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/all_dependencies-86f1df7c2e
Open

Bump the "all-dependencies" group with 1 update across multiple ecosystems#95
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/all_dependencies-86f1df7c2e

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

⚠️ Dependabot is rebasing this PR ⚠️

Rebasing might not happen immediately, so don't worry if this takes some time.

Note: if you make any changes to this PR yourself, they will take precedence over the rebase.


Bumps the all-dependencies group with 7 updates:

Package From To
@fastify/formbody 8.0.2 9.0.0
@fastify/sensible 6.0.4 6.0.5
@fastify/static 10.1.2 10.1.3
fastify 5.11.2 5.11.3
npm-check-updates 23.0.1 23.0.2
@biomejs/biome 2.5.7 2.5.8
@types/node 26.1.2 26.2.0

Updates @fastify/formbody from 8.0.2 to 9.0.0

Release notes

Sourced from @​fastify/formbody's releases.

v9.0.0

What's Changed

New Contributors

Full Changelog: fastify/fastify-formbody@v8.0.2...v9.0.0

Commits
  • b65c99c Bumped v9.0.0
  • 911d7dc chore(.npmrc): add min-release-age
  • da419bd chore: bump c8 from 11.0.0 to 12.0.0 (#202)
  • a6e08a5 ci: pin actions to commit-hash
  • 09adf4d chore: bump @​types/node in the dev-dependencies-typescript group (#200)
  • 591e569 chore(package.json): use https for repo url
  • 6dc5d47 chore: bump fastify-plugin from 5.1.0 to 6.0.0 in the dependencies group (#197)
  • 0452500 chore: update depedabot setting
  • 83d0bc0 refactor(types): migrate from tsd to tstyche and others updated
  • d4e232e ci: add lock-threads workflow (#192)
  • Additional commits viewable in compare view

Updates @fastify/sensible from 6.0.4 to 6.0.5

Release notes

Sourced from @​fastify/sensible's releases.

v6.0.5

What's Changed

New Contributors

Full Changelog: fastify/fastify-sensible@v6.0.4...v6.0.5

Commits
  • 7974df0 Bumped v6.0.5
  • 4d03816 chore: bump fastify/workflows/.github/workflows/plugins-ci.yml (#234)
  • e189219 chore: bump fastify/workflows/.github/workflows/lock-threads.yml (#233)
  • 15806e0 chore(.npmrc): add min-release-age
  • d07f3d9 ci: pin actions to commit-hash
  • 05910cb chore: bump @​types/node in the dev-dependencies-typescript group (#230)
  • d840f75 docs: fix broken links
  • fb3aa00 chore(package.json): fix delvedor's personal url (#228)
  • deb7e7f chore: bump @​fastify/rate-limit from 10.3.0 to 11.0.0 (#227)
  • ab88db3 chore: bump fastify-plugin from 5.1.0 to 6.0.0 in the dependencies group (#226)
  • Additional commits viewable in compare view

Updates @fastify/static from 10.1.2 to 10.1.3

Commits

Updates fastify from 5.11.2 to 5.11.3

Release notes

Sourced from fastify's releases.

v5.11.3

What's Changed

New Contributors

Full Changelog: fastify/fastify@v5.11.2...v5.11.3

Commits
  • a22cede Bumped v5.11.3
  • 16a74e7 fix: reset lastIndex before testing global/sticky content-type RegExp parsers...
  • 27938ac fix: recognize constructor-assigned built-in properties as decorator dependen...
  • a2f5905 chore: Bump fastify/workflows/.github/workflows/nested-quality.yml (#6917)
  • 22c419a chore: Bump fastify/workflows/.github/workflows/lock-threads.yml (#6916)
  • f5b1400 docs(encapsulation): clarify nested plugin scopes (#6893)
  • 9eaef51 fix: pass null instead of undefined to requestCompleted on success (#6837)
  • 39e87e8 docs(readme): fix grammar and cjs capitalization (#6899)
  • 3f6451c docs(errors): document what the default error handler sends (#6894)
  • f28528f docs: document percent-decoded route params as untrusted input (#6903)
  • Additional commits viewable in compare view

Updates npm-check-updates from 23.0.1 to 23.0.2

Release notes

Sourced from npm-check-updates's releases.

v23.0.2

What's Changed

Full Changelog: raineorshine/npm-check-updates@v23.0.1...v23.0.2

Commits

Updates @biomejs/biome from 2.5.7 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 26.1.2 to 26.2.0

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 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-dependencies group with 7 updates:

| Package | From | To |
| --- | --- | --- |
| [@fastify/formbody](https://github.com/fastify/fastify-formbody) | `8.0.2` | `9.0.0` |
| [@fastify/sensible](https://github.com/fastify/fastify-sensible) | `6.0.4` | `6.0.5` |
| [@fastify/static](https://github.com/fastify/fastify-static) | `10.1.2` | `10.1.3` |
| [fastify](https://github.com/fastify/fastify) | `5.11.2` | `5.11.3` |
| [npm-check-updates](https://github.com/raineorshine/npm-check-updates) | `23.0.1` | `23.0.2` |
| [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `2.5.7` | `2.5.8` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `26.1.2` | `26.2.0` |


Updates `@fastify/formbody` from 8.0.2 to 9.0.0
- [Release notes](https://github.com/fastify/fastify-formbody/releases)
- [Commits](fastify/fastify-formbody@v8.0.2...v9.0.0)

Updates `@fastify/sensible` from 6.0.4 to 6.0.5
- [Release notes](https://github.com/fastify/fastify-sensible/releases)
- [Commits](fastify/fastify-sensible@v6.0.4...v6.0.5)

Updates `@fastify/static` from 10.1.2 to 10.1.3
- [Release notes](https://github.com/fastify/fastify-static/releases)
- [Commits](https://github.com/fastify/fastify-static/commits)

Updates `fastify` from 5.11.2 to 5.11.3
- [Release notes](https://github.com/fastify/fastify/releases)
- [Commits](fastify/fastify@v5.11.2...v5.11.3)

Updates `npm-check-updates` from 23.0.1 to 23.0.2
- [Release notes](https://github.com/raineorshine/npm-check-updates/releases)
- [Changelog](https://github.com/raineorshine/npm-check-updates/blob/main/CHANGELOG.md)
- [Commits](raineorshine/npm-check-updates@v23.0.1...v23.0.2)

Updates `@biomejs/biome` from 2.5.7 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 26.1.2 to 26.2.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

---
updated-dependencies:
- dependency-name: "@fastify/formbody"
  dependency-version: 9.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: "@fastify/sensible"
  dependency-version: 6.0.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@fastify/static"
  dependency-version: 10.1.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: fastify
  dependency-version: 5.11.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: npm-check-updates
  dependency-version: 23.0.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@biomejs/biome"
  dependency-version: 2.5.8
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@types/node"
  dependency-version: 26.2.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
...

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 Aug 14, 2026
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