Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 5, 2026

Bumps the patch-updates group with 3 updates in the / directory: @biomejs/biome, tsdown and chai.

Updates @biomejs/biome from 2.3.10 to 2.3.11

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.3.11

2.3.11

Patch Changes

  • #8583 83be210 Thanks @​dyc3! - Added the new nursery rule useVueValidTemplateRoot.

    This rule validates only root-level \<template> elements in Vue single-file components. If the \<template> has a src attribute, it must be empty. Otherwise, it must contain content.

    Invalid examples:

    \<template src="./foo.html">content</template>
    \<template></template>

    Valid examples:

    \<template>content</template>
    \<template src="./foo.html"></template>
  • #8586 df8fe06 Thanks @​dyc3! - Added a new nursery rule useVueConsistentVBindStyle. Enforces consistent v-bind style (:prop shorthand vs v-bind:prop longhand). Default prefers shorthand; configurable via rule options.

  • #8587 9a8c98d Thanks @​dyc3! - Added the rule useVueVForKey, which enforces that any element using v-for also specifies a key.

    Invalid

    <li v-for="item in items">{{ item }}</li>

    Valid

    <li v-for="item in items" :key="item.id">{{ item }}</li>
  • #8586 df8fe06 Thanks @​dyc3! - Added a new nursery rule useVueConsistentVOnStyle. Enforces consistent v-on style (@event shorthand vs v-on:event longhand). Default prefers shorthand; configurable via rule options.

  • #8583 83be210 Thanks @​dyc3! - Added the new nursery rule useVueValidVOnce. Enforces that usages of the v-once directive in Vue.js SFC are valid.

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

2.3.11

Patch Changes

  • #8583 83be210 Thanks @​dyc3! - Added the new nursery rule useVueValidTemplateRoot.

    This rule validates only root-level \<template> elements in Vue single-file components. If the \<template> has a src attribute, it must be empty. Otherwise, it must contain content.

    Invalid examples:

    \<template src="./foo.html">content</template>
    \<template></template>

    Valid examples:

    \<template>content</template>
    \<template src="./foo.html"></template>
  • #8586 df8fe06 Thanks @​dyc3! - Added a new nursery rule useVueConsistentVBindStyle. Enforces consistent v-bind style (:prop shorthand vs v-bind:prop longhand). Default prefers shorthand; configurable via rule options.

  • #8587 9a8c98d Thanks @​dyc3! - Added the rule useVueVForKey, which enforces that any element using v-for also specifies a key.

    Invalid

    <li v-for="item in items">{{ item }}</li>

    Valid

    <li v-for="item in items" :key="item.id">{{ item }}</li>
  • #8586 df8fe06 Thanks @​dyc3! - Added a new nursery rule useVueConsistentVOnStyle. Enforces consistent v-on style (@event shorthand vs v-on:event longhand). Default prefers shorthand; configurable via rule options.

  • #8583 83be210 Thanks @​dyc3! - Added the new nursery rule useVueValidVOnce. Enforces that usages of the v-once directive in Vue.js SFC are valid.

    <!-- Valid -->

... (truncated)

Commits
  • 1550e73 ci: release (#8507)
  • a3a27a7 feat(analyze/html/vue): add useVueVapor rule (#8644)
  • 9a8c98d feat(analyze/html/vue): add useVueVForKey (#8587)
  • ab9af9a feat: no-jsx-props-bind (#7410)
  • df8fe06 feat(analyze/html/vue): add v-bind/v-on style rules (#8586)
  • 83be210 feat(analyze/html/vue): add a few more simple vue lint rules (#8583)
  • a3a1ad2 feat(biome_js_analyze): port noBeforeInteractiveScriptOutsideDocument from ...
  • 9dd9ca7 feat(graphql_analyze): implement useUniqueArgumentNames (#8591)
  • 5e85d43 feat(graphql_analyze): implement useUniqueFieldDefinitionNames (#8598)
  • a5f59cd feat(graphql_analyze): implement useUniqueInputFieldNames (#8592)
  • Additional commits viewable in compare view

Updates tsdown from 0.18.3 to 0.18.4

Release notes

Sourced from tsdown's releases.

v0.18.4

   🚀 Features

    View changes on GitHub
Commits
  • db8b388 chore: release v0.18.4
  • c02c295 chore: upgrade deps
  • 8e39982 docs: update pull request template
  • cee1bfc feat(entry): support multiple patterns with same base
  • 90cd66b feat: warn deprecated removeNodeProtocol
  • 7847902 refactor: support resolvePaths for publint & attw
  • ccd17b1 feat: export mergeConfig
  • 628edec test: add failing test case for shared CSS imports (#669)
  • 88aa9d0 chore(deps): update all non-major dependencies (#622)
  • 0525f30 feat(css): add CSS code splitting support (#654)
  • Additional commits viewable in compare view

Updates @biomejs/cli-darwin-arm64 from 2.3.10 to 2.3.11

Release notes

Sourced from @​biomejs/cli-darwin-arm64's releases.

Biome CLI v2.3.11

2.3.11

Patch Changes

  • #8583 83be210 Thanks @​dyc3! - Added the new nursery rule useVueValidTemplateRoot.

    This rule validates only root-level \<template> elements in Vue single-file components. If the \<template> has a src attribute, it must be empty. Otherwise, it must contain content.

    Invalid examples:

    \<template src="./foo.html">content</template>
    \<template></template>

    Valid examples:

    \<template>content</template>
    \<template src="./foo.html"></template>
  • #8586 df8fe06 Thanks @​dyc3! - Added a new nursery rule useVueConsistentVBindStyle. Enforces consistent v-bind style (:prop shorthand vs v-bind:prop longhand). Default prefers shorthand; configurable via rule options.

  • #8587 9a8c98d Thanks @​dyc3! - Added the rule useVueVForKey, which enforces that any element using v-for also specifies a key.

    Invalid

    <li v-for="item in items">{{ item }}</li>

    Valid

    <li v-for="item in items" :key="item.id">{{ item }}</li>
  • #8586 df8fe06 Thanks @​dyc3! - Added a new nursery rule useVueConsistentVOnStyle. Enforces consistent v-on style (@event shorthand vs v-on:event longhand). Default prefers shorthand; configurable via rule options.

  • #8583 83be210 Thanks @​dyc3! - Added the new nursery rule useVueValidVOnce. Enforces that usages of the v-once directive in Vue.js SFC are valid.

... (truncated)

Changelog

Sourced from @​biomejs/cli-darwin-arm64's changelog.

2.3.11

Patch Changes

  • #8583 83be210 Thanks @​dyc3! - Added the new nursery rule useVueValidTemplateRoot.

    This rule validates only root-level \<template> elements in Vue single-file components. If the \<template> has a src attribute, it must be empty. Otherwise, it must contain content.

    Invalid examples:

    \<template src="./foo.html">content</template>
    \<template></template>

    Valid examples:

    \<template>content</template>
    \<template src="./foo.html"></template>
  • #8586 df8fe06 Thanks @​dyc3! - Added a new nursery rule useVueConsistentVBindStyle. Enforces consistent v-bind style (:prop shorthand vs v-bind:prop longhand). Default prefers shorthand; configurable via rule options.

  • #8587 9a8c98d Thanks @​dyc3! - Added the rule useVueVForKey, which enforces that any element using v-for also specifies a key.

    Invalid

    <li v-for="item in items">{{ item }}</li>

    Valid

    <li v-for="item in items" :key="item.id">{{ item }}</li>
  • #8586 df8fe06 Thanks @​dyc3! - Added a new nursery rule useVueConsistentVOnStyle. Enforces consistent v-on style (@event shorthand vs v-on:event longhand). Default prefers shorthand; configurable via rule options.

  • #8583 83be210 Thanks @​dyc3! - Added the new nursery rule useVueValidVOnce. Enforces that usages of the v-once directive in Vue.js SFC are valid.

    <!-- Valid -->

... (truncated)

Commits
  • 1550e73 ci: release (#8507)
  • a3a27a7 feat(analyze/html/vue): add useVueVapor rule (#8644)
  • 9a8c98d feat(analyze/html/vue): add useVueVForKey (#8587)
  • ab9af9a feat: no-jsx-props-bind (#7410)
  • df8fe06 feat(analyze/html/vue): add v-bind/v-on style rules (#8586)
  • 83be210 feat(analyze/html/vue): add a few more simple vue lint rules (#8583)
  • a3a1ad2 feat(biome_js_analyze): port noBeforeInteractiveScriptOutsideDocument from ...
  • 9dd9ca7 feat(graphql_analyze): implement useUniqueArgumentNames (#8591)
  • 5e85d43 feat(graphql_analyze): implement useUniqueFieldDefinitionNames (#8598)
  • a5f59cd feat(graphql_analyze): implement useUniqueInputFieldNames (#8592)
  • Additional commits viewable in compare view

Updates @biomejs/cli-darwin-x64 from 2.3.10 to 2.3.11

Release notes

Sourced from @​biomejs/cli-darwin-x64's releases.

Biome CLI v2.3.11

2.3.11

Patch Changes

  • #8583 83be210 Thanks @​dyc3! - Added the new nursery rule useVueValidTemplateRoot.

    This rule validates only root-level \<template> elements in Vue single-file components. If the \<template> has a src attribute, it must be empty. Otherwise, it must contain content.

    Invalid examples:

    \<template src="./foo.html">content</template>
    \<template></template>

    Valid examples:

    \<template>content</template>
    \<template src="./foo.html"></template>
  • #8586 df8fe06 Thanks @​dyc3! - Added a new nursery rule useVueConsistentVBindStyle. Enforces consistent v-bind style (:prop shorthand vs v-bind:prop longhand). Default prefers shorthand; configurable via rule options.

  • #8587 9a8c98d Thanks @​dyc3! - Added the rule useVueVForKey, which enforces that any element using v-for also specifies a key.

    Invalid

    <li v-for="item in items">{{ item }}</li>

    Valid

    <li v-for="item in items" :key="item.id">{{ item }}</li>
  • #8586 df8fe06 Thanks @​dyc3! - Added a new nursery rule useVueConsistentVOnStyle. Enforces consistent v-on style (@event shorthand vs v-on:event longhand). Default prefers shorthand; configurable via rule options.

  • #8583 83be210 Thanks @​dyc3! - Added the new nursery rule useVueValidVOnce. Enforces that usages of the v-once directive in Vue.js SFC are valid.

... (truncated)

Changelog

Sourced from @​biomejs/cli-darwin-x64's changelog.

2.3.11

Patch Changes

  • #8583 83be210 Thanks @​dyc3! - Added the new nursery rule useVueValidTemplateRoot.

    This rule validates only root-level \<template> elements in Vue single-file components. If the \<template> has a src attribute, it must be empty. Otherwise, it must contain content.

    Invalid examples:

    \<template src="./foo.html">content</template>
    \<template></template>

    Valid examples:

    \<template>content</template>
    \<template src="./foo.html"></template>
  • #8586 df8fe06 Thanks @​dyc3! - Added a new nursery rule useVueConsistentVBindStyle. Enforces consistent v-bind style (:prop shorthand vs v-bind:prop longhand). Default prefers shorthand; configurable via rule options.

  • #8587 9a8c98d Thanks @​dyc3! - Added the rule useVueVForKey, which enforces that any element using v-for also specifies a key.

    Invalid

    <li v-for="item in items">{{ item }}</li>

    Valid

    <li v-for="item in items" :key="item.id">{{ item }}</li>
  • #8586 df8fe06 Thanks @​dyc3! - Added a new nursery rule useVueConsistentVOnStyle. Enforces consistent v-on style (@event shorthand vs v-on:event longhand). Default prefers shorthand; configurable via rule options.

  • #8583 83be210 Thanks @​dyc3! - Added the new nursery rule useVueValidVOnce. Enforces that usages of the v-once directive in Vue.js SFC are valid.

    <!-- Valid -->

... (truncated)

Commits
  • 1550e73 ci: release (#8507)
  • a3a27a7 feat(analyze/html/vue): add useVueVapor rule (#8644)
  • 9a8c98d feat(analyze/html/vue): add useVueVForKey (#8587)
  • ab9af9a feat: no-jsx-props-bind (#7410)
  • df8fe06 feat(analyze/html/vue): add v-bind/v-on style rules (#8586)
  • 83be210 feat(analyze/html/vue): add a few more simple vue lint rules (#8583)
  • a3a1ad2 feat(biome_js_analyze): port noBeforeInteractiveScriptOutsideDocument from ...
  • 9dd9ca7 feat(graphql_analyze): implement useUniqueArgumentNames (#8591)
  • 5e85d43 feat(graphql_analyze): implement useUniqueFieldDefinitionNames (#8598)
  • a5f59cd feat(graphql_analyze): implement useUniqueInputFieldNames (#8592)
  • Additional commits viewable in compare view

Updates @biomejs/cli-linux-arm64-musl from 2.3.10 to 2.3.11

Release notes

Sourced from @​biomejs/cli-linux-arm64-musl's releases.

Biome CLI v2.3.11

2.3.11

Patch Changes

  • #8583 83be210 Thanks @​dyc3! - Added the new nursery rule useVueValidTemplateRoot.

    This rule validates only root-level \<template> elements in Vue single-file components. If the \<template> has a src attribute, it must be empty. Otherwise, it must contain content.

    Invalid examples:

    \<template src="./foo.html">content</template>
    \<template></template>

    Valid examples:

    \<template>content</template>
    \<template src="./foo.html"></template>
  • #8586 df8fe06 Thanks @​dyc3! - Added a new nursery rule useVueConsistentVBindStyle. Enforces consistent v-bind style (:prop shorthand vs v-bind:prop longhand). Default prefers shorthand; configurable via rule options.

  • #8587 9a8c98d Thanks @​dyc3! - Added the rule useVueVForKey, which enforces that any element using v-for also specifies a key.

    Invalid

    <li v-for="item in items">{{ item }}</li>

    Valid

    <li v-for="item in items" :key="item.id">{{ item }}</li>
  • #8586 df8fe06 Thanks @​dyc3! - Added a new nursery rule useVueConsistentVOnStyle. Enforces consistent v-on style (@event shorthand vs v-on:event longhand). Default prefers shorthand; configurable via rule options.

  • #8583 83be210 Thanks @​dyc3! - Added the new nursery rule useVueValidVOnce. Enforces that usages of the v-once directive in Vue.js SFC are valid.

... (truncated)

Changelog

Sourced from @​biomejs/cli-linux-arm64-musl's changelog.

2.3.11

Patch Changes

  • #8583 83be210 Thanks @​dyc3! - Added the new nursery rule useVueValidTemplateRoot.

    This rule validates only root-level \<template> elements in Vue single-file components. If the \<template> has a src attribute, it must be empty. Otherwise, it must contain content.

    Invalid examples:

    \<template src="./foo.html">content</template>
    \<template></template>

    Valid examples:

    \<template>content</template>
    \<template src="./foo.html"></template>
  • #8586 df8fe06 Thanks @​dyc3! - Added a new nursery rule useVueConsistentVBindStyle. Enforces consistent v-bind style (:prop shorthand vs v-bind:prop longhand). Default prefers shorthand; configurable via rule options.

  • #8587 9a8c98d Thanks @​dyc3! - Added the rule useVueVForKey, which enforces that any element using v-for also specifies a key.

    Invalid

    <li v-for="item in items">{{ item }}</li>

    Valid

    <li v-for="item in items" :key="item.id">{{ item }}</li>
  • #8586 df8fe06 Thanks @​dyc3! - Added a new nursery rule useVueConsistentVOnStyle. Enforces consistent v-on style (@event shorthand vs v-on:event longhand). Default prefers shorthand; configurable via rule options.

  • #8583 83be210 Thanks @​dyc3! - Added the new nursery rule useVueValidVOnce. Enforces that usages of the v-once directive in Vue.js SFC are valid.

    <!-- Valid -->

... (truncated)

Commits
  • 1550e73 ci: release (#8507)
  • a3a27a7 feat(analyze/html/vue): add useVueVapor rule (#8644)
  • 9a8c98d feat(analyze/html/vue): add useVueVForKey (#8587)
  • ab9af9a feat: no-jsx-props-bind (#7410)
  • df8fe06 feat(analyze/html/vue): add v-bind/v-on style rules (#8586)
  • 83be210 feat(analyze/html/vue): add a few more simple vue lint rules (#8583)
  • a3a1ad2 feat(biome_js_analyze): port noBeforeInteractiveScriptOutsideDocument from ...
  • 9dd9ca7 feat(graphql_analyze): implement useUniqueArgumentNames (#8591)
  • 5e85d43 feat(graphql_analyze): implement useUniqueFieldDefinitionNames (#8598)
  • a5f59cd feat(graphql_analyze): implement useUniqueInputFieldNames (#8592)
  • Additional commits viewable in compare view

Updates @biomejs/cli-linux-arm64 from 2.3.10 to 2.3.11

Release notes

Sourced from @​biomejs/cli-linux-arm64's releases.

Biome CLI v2.3.11

2.3.11

Patch Changes

  • #8583 83be210 Thanks @​dyc3! - Added the new nursery rule useVueValidTemplateRoot.

    This rule validates only root-level \<template> elements in Vue single-file components. If the \<template> has a src attribute, it must be empty. Otherwise, it must contain content.

    Invalid examples:

    \<template src="./foo.html">content</template>
    \<template></template>

    Valid examples:

    \<template>content</template>
    \<template src="./foo.html"></template>
  • #8586 df8fe06 Thanks @​dyc3! - Added a new nursery rule useVueConsistentVBindStyle. Enforces consistent v-bind style (:prop shorthand vs v-bind:prop longhand). Default prefers shorthand; configurable via rule options.

  • #8587 9a8c98d Thanks @​dyc3! - Added the rule useVueVForKey, which enforces that any element using v-for also specifies a key.

    Invalid

    <li v-for="item in items">{{ item }}</li>

    Valid

    <li v-for="item in items" :key="item.id">{{ item }}</li>
  • #8586 df8fe06 Thanks @​dyc3! - Added a new nursery rule useVueConsistentVOnStyle. Enforces consistent v-on style (@event shorthand vs v-on:event longhand). Default prefers shorthand; configurable via rule options.

  • #8583 83be210 Thanks @​dyc3! - Added the new nursery rule useVueValidVOnce. Enforces that usages of the v-once directive in Vue.js SFC are valid.

... (truncated)

Changelog

Sourced from @​biomejs/cli-linux-arm64's changelog.

2.3.11

Patch Changes

  • #8583 83be210 Thanks @​dyc3! - Added the new nursery rule useVueValidTemplateRoot.

    This rule validates only root-level \<template> elements in Vue single-file components. If the \<template> has a src attribute, it must be empty. Otherwise, it must contain content.

    Invalid examples:

    \<template src="./foo.html">content</template>
    \<template></template>

    Valid examples:

    \<template>content</template>
    \<template src="./foo.html"></template>
  • #8586 df8fe06 Thanks @​dyc3! - Added a new nursery rule useVueConsistentVBindStyle. Enforces consistent v-bind style (:prop shorthand vs v-bind:prop longhand). Default prefers shorthand; configurable via rule options.

  • #8587 9a8c98d Thanks @​dyc3! - Added the rule useVueVForKey, which enforces that any element using v-for also specifies a key.

    Invalid

    <li v-for="item in items">{{ item }}</li>

    Valid

    <li v-for="item in items" :key="item.id">{{ item }}</li>
  • #8586 df8fe06 Thanks @​dyc3! - Added a new nursery rule useVueConsistentVOnStyle. Enforces consistent v-on style (@event shorthand vs v-on:event longhand). Default prefers shorthand; configurable via rule options.

  • #8583 83be210 Thanks @​dyc3! - Added the new nursery rule useVueValidVOnce. Enforces that usages of the v-once directive in Vue.js SFC are valid.

    <!-- Valid -->

... (truncated)

Commits
  • 1550e73 ci: release (#8507)
  • a3a27a7 feat(analyze/html/vue): add useVueVapor rule (#8644)
  • 9a8c98d feat(analyze/html/vue): add useVueVForKey (#8587)
  • ab9af9a feat: no-jsx-props-bind (#7410)
  • df8fe06 feat(analyze/html/vue): add v-bind/v-on style rules (#8586)
  • 83be210 feat(analyze/html/vue): add a few more simple vue lint rules (#8583)
  • a3a1ad2 feat(biome_js_analyze): port noBeforeInteractiveScriptOutsideDocument from ...
  • 9dd9ca7 feat(graphql_analyze): implement useUniqueArgumentNames (#8591)
  • 5e85d43 feat(graphql_analyze): implement useUniqueFieldDefinitionNames (#8598)
  • a5f59cd feat(graphql_analyze): implement useUniqueInputFieldNames (#8592)
  • Additional commits viewable in compare view

Updates @biomejs/cli-linux-x64-musl from 2.3.10 to 2.3.11

Release notes

Sourced from @​biomejs/cli-linux-x64-musl's releases.

Biome CLI v2.3.11

2.3.11

Patch Changes

  • #8583 83be210 Thanks @​dyc3! - Added the new nursery rule useVueValidTemplateRoot.

    This rule validates only root-level \<template> elements in Vue single-file components. If the \<template> has a src attribute, it must be empty. Otherwise, it must contain content.

    Invalid examples:

    \<template src="./foo.html">content</template>
    \<template></template>

    Valid examples:

    \<template>content</template>
    \<template src="./foo.html"></template>
  • #8586 df8fe06 Thanks @​dyc3! - Added a new nursery rule useVueConsistentVBindStyle. Enforces consistent v-bind style (:prop shorthand vs v-bind:prop longhand). Default prefers shorthand; configurable via rule options.

  • #8587 9a8c98d Thanks @​dyc3! - Added the rule useVueVForKey, which enforces that any element using v-for also specifies a key.

    Invalid

    <li v-for="item in items">{{ item }}</li>

    Valid

    <li v-for="item in items" :key="item.id">{{ item }}</li>
  • #8586 df8fe06 Thanks @​dyc3! - Added a new nursery rule useVueConsistentVOnStyle. Enforces consistent v-on style (@event shorthand vs v-on:event longhand). Default prefers shorthand; configurable via rule options.

  • #8583 83be210 Thanks @​dyc3! - Added the new nursery rule useVueValidVOnce. Enforces that usages of the v-once directive in Vue.js SFC are valid.

... (truncated)

Changelog

Sourced from @​biomejs/cli-linux-x64-musl's changelog.

2.3.11

Patch Changes

  • #8583 83be210 Thanks @​dyc3! - Added the new nursery rule useVueValidTemplateRoot.

    This rule validates only root-level \<template> elements in Vue single-file components. If the \<template> has a src attribute, it must be empty. Otherwise, it must contain content.

    Invalid examples:

    \<template src="./foo.html">content</template>
    \<template></template>

    Valid examples:

    \<template>content</template>
    \<template src="./foo.html"></template>
  • #8586 df8fe06 Thanks @​dyc3! - Added a new nursery rule useVueConsistentVBindStyle. Enforces consistent v-bind style (:prop shorthand vs v-bind:prop longhand). Default prefers shorthand; configurable via rule options.

  • #8587 9a8c98d Thanks @​dyc3! - Added the rule useVueVForKey, which enforces that any element using v-for also specifies a key.

    Invalid

    <li v-for="item in items">{{ item }}</li>

    Valid

    <li v-for="item in items" :key="item.id">{{ item }}</li>
  • #8586 df8fe06 Thanks @​dyc3! - Added a new nursery rule useVueConsistentVOnStyle. Enforces consistent v-on style (@event shorthand vs v-on:event longhand). Default prefers shorthand; configurable via rule options.

  • #8583 83be210 Thanks @​dyc3! - Added the new nursery rule useVueValidVOnce. Enforces that usages of the v-once directive in Vue.js SFC are valid.

    <!-- Valid -->

... (truncated)

Commits

…updates

Bumps the patch-updates group with 3 updates in the / directory: [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome), [tsdown](https://github.com/rolldown/tsdown) and [chai](https://github.com/chaijs/chai).


Updates `@biomejs/biome` from 2.3.10 to 2.3.11
- [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.3.11/packages/@biomejs/biome)

Updates `tsdown` from 0.18.3 to 0.18.4
- [Release notes](https://github.com/rolldown/tsdown/releases)
- [Commits](rolldown/tsdown@v0.18.3...v0.18.4)

Updates `@biomejs/cli-darwin-arm64` from 2.3.10 to 2.3.11
- [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.3.11/packages/@biomejs/biome)

Updates `@biomejs/cli-darwin-x64` from 2.3.10 to 2.3.11
- [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.3.11/packages/@biomejs/biome)

Updates `@biomejs/cli-linux-arm64-musl` from 2.3.10 to 2.3.11
- [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.3.11/packages/@biomejs/biome)

Updates `@biomejs/cli-linux-arm64` from 2.3.10 to 2.3.11
- [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.3.11/packages/@biomejs/biome)

Updates `@biomejs/cli-linux-x64-musl` from 2.3.10 to 2.3.11
- [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.3.11/packages/@biomejs/biome)

Updates `@biomejs/cli-linux-x64` from 2.3.10 to 2.3.11
- [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.3.11/packages/@biomejs/biome)

Updates `@biomejs/cli-win32-arm64` from 2.3.10 to 2.3.11
- [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.3.11/packages/@biomejs/biome)

Updates `@biomejs/cli-win32-x64` from 2.3.10 to 2.3.11
- [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.3.11/packages/@biomejs/biome)

Updates `@emnapi/core` from 1.7.1 to 1.8.1
- [Release notes](https://github.com/toyobayashi/emnapi/releases)
- [Commits](toyobayashi/emnapi@v1.7.1...v1.8.1)

Updates `@emnapi/runtime` from 1.7.1 to 1.8.1
- [Release notes](https://github.com/toyobayashi/emnapi/releases)
- [Commits](toyobayashi/emnapi@v1.7.1...v1.8.1)

Updates `@napi-rs/wasm-runtime` from 1.1.0 to 1.1.1
- [Release notes](https://github.com/napi-rs/napi-rs/releases)
- [Commits](https://github.com/napi-rs/napi-rs/commits/@napi-rs/wasm-runtime@1.1.1/wasi-runtime)

Updates `chai` from 6.2.1 to 6.2.2
- [Release notes](https://github.com/chaijs/chai/releases)
- [Changelog](https://github.com/chaijs/chai/blob/main/History.md)
- [Commits](chaijs/chai@v6.2.1...v6.2.2)

Updates `unrun` from 0.2.21 to 0.2.22
- [Release notes](https://github.com/Gugustinette/unrun/releases)
- [Commits](Gugustinette/unrun@v0.2.21...v0.2.22)

---
updated-dependencies:
- dependency-name: "@biomejs/biome"
  dependency-version: 2.3.11
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: tsdown
  dependency-version: 0.18.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: "@biomejs/cli-darwin-arm64"
  dependency-version: 2.3.11
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: "@biomejs/cli-darwin-x64"
  dependency-version: 2.3.11
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: "@biomejs/cli-linux-arm64-musl"
  dependency-version: 2.3.11
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: "@biomejs/cli-linux-arm64"
  dependency-version: 2.3.11
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: "@biomejs/cli-linux-x64-musl"
  dependency-version: 2.3.11
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: "@biomejs/cli-linux-x64"
  dependency-version: 2.3.11
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: "@biomejs/cli-win32-arm64"
  dependency-version: 2.3.11
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: "@biomejs/cli-win32-x64"
  dependency-version: 2.3.11
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: "@emnapi/core"
  dependency-version: 1.8.1
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: patch-updates
- dependency-name: "@emnapi/runtime"
  dependency-version: 1.8.1
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: patch-updates
- dependency-name: "@napi-rs/wasm-runtime"
  dependency-version: 1.1.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: chai
  dependency-version: 6.2.2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: unrun
  dependency-version: 0.2.22
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file npm labels Jan 5, 2026
@changeset-bot
Copy link

changeset-bot bot commented Jan 5, 2026

⚠️ No Changeset found

Latest commit: 036c392

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

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 npm

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant