Skip to content

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Nov 24, 2025

Bumps the development-dependencies group with 14 updates in the / directory:

Package From To
@biomejs/biome 2.2.5 2.3.7
@types/node 24.9.1 24.10.1
@typescript-eslint/parser 8.46.2 8.47.0
@vitest/eslint-plugin 1.3.23 1.4.4
eslint 9.38.0 9.39.1
globals 16.4.0 16.5.0
lint-staged 16.2.5 16.2.7
turbo 2.5.6 2.6.1
devtools-protocol 0.0.1528500 0.0.1548823
jsdom 27.0.1 27.2.0
zod 4.1.12 4.1.13
@rollup/plugin-commonjs 28.0.8 28.0.9
@tauri-apps/cli 2.9.1 2.9.4
vite 7.2.0 7.2.4

Updates @biomejs/biome from 2.2.5 to 2.3.7

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.3.7

2.3.7

Patch Changes

  • #8169 7fdcec8 Thanks @​arendjr! - Fixed #7999: Correctly place await after leading comment in auto-fix action from noFloatingPromises rule.

  • #8157 12d5b42 Thanks @​Conaclos! - Fixed #8148. noInvalidUseBeforeDeclaration no longer reports some valid use before declarations.

    The following code is no longer reported as invalid:

    class classA {
      C = C;
    }
    const C = 0;
  • #8178 6ba4157 Thanks @​dyc3! - Fixed #8174, where the HTML parser would parse 2 directives as a single directive because it would not reject whitespace in Vue directives. This would cause the formatter to erroneously merge the 2 directives into one, resulting in broken code.

    - <Component v-else:property="123" />
    + <Component v-else :property="123" />
  • #8088 0eb08e8 Thanks @​db295! - Fixed #7876: The noUnusedImports rule now ignores imports that are used by @​linkcode and @​linkplain (previously supported @​link and @​see).

    The following code will no longer be a false positive:

    import type { a } from "a"
    /**
    
    {@​linkcode a}
    */
    function func() {}
  • #8119 8d64655 Thanks @​ematipico! - Improved the detection of the rule noUnnecessaryConditions. Now the rule isn't triggered for variables that are mutated inside a module.

    This logic deviates from the original rule, hence noUnnecessaryConditions is now marked as "inspired".

    In the following example, hey starts as false, but then it's assigned to a string. The rule isn't triggered inside the if check.

    let hey = false;
    function test() {
    hey = "string";

  • ... (truncated)

    Changelog

    Sourced from @​biomejs/biome's changelog.

    2.3.7

    Patch Changes

    • #8169 7fdcec8 Thanks @​arendjr! - Fixed #7999: Correctly place await after leading comment in auto-fix action from noFloatingPromises rule.

    • #8157 12d5b42 Thanks @​Conaclos! - Fixed #8148. noInvalidUseBeforeDeclaration no longer reports some valid use before declarations.

      The following code is no longer reported as invalid:

      class classA {
        C = C;
      }
      const C = 0;
    • #8178 6ba4157 Thanks @​dyc3! - Fixed #8174, where the HTML parser would parse 2 directives as a single directive because it would not reject whitespace in Vue directives. This would cause the formatter to erroneously merge the 2 directives into one, resulting in broken code.

      - <Component v-else:property="123" />
      + <Component v-else :property="123" />
    • #8088 0eb08e8 Thanks @​db295! - Fixed #7876: The noUnusedImports rule now ignores imports that are used by @​linkcode and @​linkplain (previously supported @​link and @​see).

      The following code will no longer be a false positive:

      import type { a } from "a"
      /**
      
      {@​linkcode a}
      */
      function func() {}
  • #8119 8d64655 Thanks @​ematipico! - Improved the detection of the rule noUnnecessaryConditions. Now the rule isn't triggered for variables that are mutated inside a module.

    This logic deviates from the original rule, hence noUnnecessaryConditions is now marked as "inspired".

    In the following example, hey starts as false, but then it's assigned to a string. The rule isn't triggered inside the if check.

    let hey = false;
    function test() {
    hey = "string";
    }

  • ... (truncated)

    Commits
    Maintainer changes

    This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​biomejs/biome since your current version.


    Updates @types/node from 24.9.1 to 24.10.1

    Commits

    Updates @typescript-eslint/parser from 8.46.2 to 8.47.0

    Release notes

    Sourced from @​typescript-eslint/parser's releases.

    v8.47.0

    8.47.0 (2025-11-17)

    🚀 Features

    • eslint-plugin: [no-unused-private-class-members] new extension rule (#10913)

    ❤️ Thank You

    You can read about our versioning strategy and releases on our website.

    v8.46.4

    8.46.4 (2025-11-10)

    🩹 Fixes

    • eslint-plugin: [no-deprecated] fix double-report on computed literal identifiers (#11006, #10958)
    • eslint-plugin: handle override modifier in promise-function-async fixer (#11730)
    • parser: error when both projectService and project are set (#11333)

    ❤️ Thank You

    You can read about our versioning strategy and releases on our website.

    v8.46.3

    8.46.3 (2025-11-03)

    🩹 Fixes

    • eslint-plugin: [no-misused-promises] expand union type to retrieve target property (#11706)
    • eslint-plugin: [no-duplicate-enum-values] support signed numbers (#11722, #11723)

    ❤️ Thank You

    You can read about our versioning strategy and releases on our website.

    Changelog

    Sourced from @​typescript-eslint/parser's changelog.

    8.47.0 (2025-11-17)

    This was a version bump only for parser to align it with other projects, there were no code changes.

    You can read about our versioning strategy and releases on our website.

    8.46.4 (2025-11-10)

    This was a version bump only for parser to align it with other projects, there were no code changes.

    You can read about our versioning strategy and releases on our website.

    8.46.3 (2025-11-03)

    This was a version bump only for parser to align it with other projects, there were no code changes.

    You can read about our versioning strategy and releases on our website.

    Commits

    Updates @vitest/eslint-plugin from 1.3.23 to 1.4.4

    Release notes

    Sourced from @​vitest/eslint-plugin's releases.

    v1.4.4

       🚀 Features

       🐞 Bug Fixes

        View changes on GitHub

    What's Changed

    New Contributors

    Full Changelog: vitest-dev/eslint-plugin-vitest@v1.4.3...v1.4.4

    v1.4.3

       🐞 Bug Fixes

        View changes on GitHub

    v1.4.2

       🚀 Features

        View changes on GitHub

    What's Changed

    New Contributors

    Full Changelog: vitest-dev/eslint-plugin-vitest@v1.4.1...v1.4.2

    v1.4.1

    ... (truncated)

    Commits
    • 13efaaf chore: release v1.4.4
    • db570c8 feat: add rule consistent-each-for (#826)
    • 962defb fix(no-identical-title): FP when using test.for (#825)
    • 5e5a64b docs(prefer-equality-matcher): correct (e)quality typo in description (#824)
    • abdeab3 feat: adding require-import-vi-mock rule (#820)
    • 765eeac fix(expect-expect): Potential false positives for expect-expect and valid-tit...
    • f3298e0 chore: release v1.4.3
    • 2e3e9f8 fix(prefer-called-exactly-once-with): preserve TypeScript generic parameters ...
    • ee051f3 chore: release v1.4.2
    • bf010fa chore: update docs
    • Additional commits viewable in compare view

    Updates eslint from 9.38.0 to 9.39.1

    Release notes

    Sourced from eslint's releases.

    v9.39.1

    Bug Fixes

    • 650753e fix: Only pass node to JS lang visitor methods (#20283) (Nicholas C. Zakas)

    Documentation

    • 51b51f4 docs: add a section on when to use extends vs cascading (#20268) (Tanuj Kanti)
    • b44d426 docs: Update README (GitHub Actions Bot)

    Chores

    • 92db329 chore: update @eslint/js version to 9.39.1 (#20284) (Francesco Trotta)
    • c7ebefc chore: package.json update for @​eslint/js release (Jenkins)
    • 61778f6 chore: update eslint-config-eslint dependency @​eslint/js to ^9.39.0 (#20275) (renovate[bot])
    • d9ca2fc ci: Add rangeStrategy to eslint group in renovate config (#20266) (唯然)
    • 009e507 test: fix version tests for ESLint v10 (#20274) (Milos Djermanovic)

    v9.39.0

    Features

    • cc57d87 feat: update error loc to key in no-dupe-class-members (#20259) (Tanuj Kanti)
    • 126552f feat: update error location in for-direction and no-dupe-args (#20258) (Tanuj Kanti)
    • 167d097 feat: update complexity rule to highlight only static block header (#20245) (jaymarvelz)

    Bug Fixes

    • 15f5c7c fix: forward traversal step.args to visitors (#20253) (jaymarvelz)
    • 5a1a534 fix: allow JSDoc comments in object-shorthand rule (#20167) (Nitin Kumar)
    • e86b813 fix: Use more types from @​eslint/core (#20257) (Nicholas C. Zakas)
    • 927272d fix: correct Scope typings (#20198) (jaymarvelz)
    • 37f76d9 fix: use AST.Program type for Program node (#20244) (Francesco Trotta)
    • ae07f0b fix: unify timing report for concurrent linting (#20188) (jaymarvelz)
    • b165d47 fix: correct Rule typings (#20199) (jaymarvelz)
    • fb97cda fix: improve error message for missing fix function in suggestions (#20218) (jaymarvelz)

    Documentation

    • d3e81e3 docs: Always recommend to include a files property (#20158) (Percy Ma)
    • 0f0385f docs: use consistent naming recommendation (#20250) (Alex M. Spieslechner)
    • a3b1456 docs: Update README (GitHub Actions Bot)
    • cf5f2dd docs: fix correct tag of no-useless-constructor (#20255) (Tanuj Kanti)
    • 10b995c docs: add TS options and examples for nofunc in no-use-before-define (#20249) (Tanuj Kanti)
    • 2584187 docs: remove repetitive word in comment (#20242) (reddaisyy)
    • 637216b docs: update CLI flags migration instructions (#20238) (jaymarvelz)
    • e7cda3b docs: Update README (GitHub Actions Bot)
    • 7b9446f docs: handle empty flags sections on the feature flags page (#20222) (sethamus)

    Chores

    • dfe3c1b chore: update @eslint/js version to 9.39.0 (#20270) (Francesco Trotta)
    • 2375a6d chore: package.json update for @​eslint/js release (Jenkins)
    • a1f4e52 chore: update @eslint dependencies (#20265) (Francesco Trotta)
    • c7d3229 chore: update dependency @​eslint/core to ^0.17.0 (#20256) (renovate[bot])
    • 27549bc chore: update fuzz testing to not error if code sample minimizer fails (#20252) (Milos Djermanovic)
    • a1370ee ci: bump actions/setup-node from 5 to 6 (#20230) (dependabot[bot])
    • 9e7fad4 chore: add script to auto-generate eslint:recommended configuration (#20208) (唯然)
    Commits
    • e277281 9.39.1
    • 4cdf397 Build: changelog update for 9.39.1
    • 92db329 chore: update @eslint/js version to 9.39.1 (#20284)
    • c7ebefc chore: package.json update for @​eslint/js release
    • 650753e fix: Only pass node to JS lang visitor methods (#20283)
    • 51b51f4 docs: add a section on when to use extends vs cascading (#20268)
    • 61778f6 chore: update eslint-config-eslint dependency @​eslint/js to ^9.39.0 (#20275)
    • d9ca2fc ci: Add rangeStrategy to eslint group in renovate config (#20266)
    • 009e507 test: fix version tests for ESLint v10 (#20274)
    • b44d426 docs: Update README
    • Additional commits viewable in compare view

    Updates globals from 16.4.0 to 16.5.0

    Release notes

    Sourced from globals's releases.

    v16.5.0

    • Update globals (2025-11-01) (#316) 6d441ca
    • Add Vue, Svelte, and Astro globals (#314) ea31521

    sindresorhus/globals@v16.4.0...v16.5.0

    Commits

    Updates lint-staged from 16.2.5 to 16.2.7

    Release notes

    Sourced from lint-staged's releases.

    v16.2.7

    Patch Changes

    • #1711 ef74c8d Thanks @​iiroj! - Do not display a "failed to spawn" error message when a task fails normally. This message is reserved for when the task didn't run because spawning it failed.

    v16.2.6

    Patch Changes

    • #1693 33d4502 Thanks @​Adrian-Baran-GY! - Fix problems with --continue-on-error option, where tasks might have still been killed (SIGINT) when one of them failed.
    Changelog

    Sourced from lint-staged's changelog.

    16.2.7

    Patch Changes

    • #1711 ef74c8d Thanks @​iiroj! - Do not display a "failed to spawn" error message when a task fails normally. This message is reserved for when the task didn't run because spawning it failed.

    16.2.6

    Patch Changes

    • #1693 33d4502 Thanks @​Adrian-Baran-GY! - Fix problems with --continue-on-error option, where tasks might have still been killed (SIGINT) when one of them failed.
    Commits
    • 0c1b000 chore(changeset): release
    • 595b202 build(deps): update dependencies
    • ef74c8d fix: do display "failed to spawn" message when task fails normally
    • 5cf2a1e style: do not autofix when running lint-staged
    • ba40012 chore: drop npx from commit-msg hook
    • d67de9a chore: fix pre-push hook usage with changeset
    • 8017d1d build(deps): update dependencies
    • 922d7f4 ci: remove dependabot integration, it's not useful
    • 6aeeef1 docs: add PR template
    • a5728b5 docs: add AGENTS.md
    • Additional commits viewable in compare view

    Updates turbo from 2.5.6 to 2.6.1

    Release notes

    Sourced from turbo's releases.

    Turborepo v2.6.1

    What's Changed

    Docs

    @​turbo/codemod

    @​turbo/repository

    Examples

    Changelog

    New Contributors

    ... (truncated)

    Changelog

    Sourced from turbo's changelog.

    Release Documentation

    Quick Start

    Release Turborepo CLI

    1. Create a release by triggering the [Turborepo Release][1] workflow

      • Specify the semver increment using the SemVer Increment field (start with prerelease)
      • Check the "Dry Run" box to run the full release workflow without publishing any packages. Artifacts will be created that you can test with locally.
    2. A PR is automatically opened to merge the release branch created in step 1 back into main

      • ⚠️ Merge this in! You don't need to wait for tests to pass (because they won't pass until after this PR is merged in). It's important to merge this branch soon after the publish is successful.

    Release @turbo/repository

    1. Run [bump-version.sh][4] to update the versions of the packages. Merge in the changes to main.

    2. Create a release by triggering the [Turborepo Library Release][5] workflow.

      • Check the "Dry Run" box to run the full release workflow without publishing any packages.

    Notes

    • GitHub Release Notes are published automatically using the config from [turborepo-release.yml][2], triggered by the [turbo-orchestrator][3] bot.

    Turborepo CLI Release Process - In-Depth Guide

    This section provides comprehensive documentation on how the Turborepo CLI is released, including the architecture, workflows, and detailed step-by-step processes.

    Table of Contents

    1. Architecture Overview
    2. Version Management
    3. Release Workflow Stages
    4. Packages Released
    5. Platform-Specific Binaries
    6. Technical Reference
    7. Best Practices

    Architecture Overview

    The Turborepo release process is a multi-stage pipeline that:

    1. Manages versions centrally via version.txt at the repository root

    ... (truncated)

    Commits
    • 59685c8 publish 2.6.1 to registry
    • 0270af8 feat: Cross-platform microfrontends port command (#11098)
    • 1de3775 feat: Move icon to left side in TUI (#11097)
    • bd53f07 release(turborepo): 2.6.1-canary.3 (#11096)
    • bf9db59 fix: Improve version resolution in Bun lockfiles (#11095)
    • 23641b7 examples(deps): bump next from 16.0.0 to 16.0.1 in /examples/kitchen-sink (#1...
    • 0646e04 examples(dev-deps): bump svelte from 5.43.3 to 5.43.5 in /examples/with-svelt...
    • ee469d4 release(turborepo): 2.6.1-canary.2 (#11093)
    • 1c99fc9 fix: Bun lockfile pruner adjustment (#11092)
    • 58ba6a7 docs: Fix grammatical mistake on structuring-a-repository.mdx (#11091)
    • Additional commits viewable in compare view

    Updates devtools-protocol from 0.0.1528500 to 0.0.1548823

    Commits
    Maintainer changes

    This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for devtools-protocol since your current version.


    Updates jsdom from 27.0.1 to 27.2.0

    Release notes

    Sourced from jsdom's releases.

    Version 27.2.0

    • Added CSSGroupingRule, CSSNestedDeclarations, CSSConditionRule, CSSContainerRule, CSSScopeRule, CSSSupportsRule, CSSLayerBlockRule, and CSSLayerStatementRule to jsdom Windows. (acemir)
    • Improved CSS parsing and CSSOM object APIs via updates to @acemir/cssom. (acemir)
    • Fixed @import-ed stylesheets to be properly exposed to CSSOM, and not to overwrite the sheet created from the <link> or <style> element. (acemir)

    Version 27.1.0

    • Improved CSS parsing by switching to @acemir/cssom, including support for nested selectors, nested declarations, layer statements, and improved at-rule validation. (acemir)
    • Fixed some selector cache invalidation issues where changes to attributes were not being picked up. (asamuzaK)
    • Fixed package.json "engines" field to reflect the new minimum Node.js versions needed to run jsdom, as noted in the changelog for v27.0.1.
    Changelog

    Sourced from jsdom's changelog.

    27.2.0

    • Added CSSGroupingRule, CSSNestedDeclarations, CSSConditionRule, CSSContainerRule, CSSScopeRule, CSSSupportsRule, CSSLayerBlockRule, and CSSLayerStatementRule to jsdom Windows. (acemir)
    • Improved CSS parsing and CSSOM obje...

      Description has been truncated

    …ectory with 14 updates
    
    Bumps the development-dependencies group with 14 updates in the / directory:
    
    | Package | From | To |
    | --- | --- | --- |
    | [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `2.2.5` | `2.3.7` |
    | [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `24.9.1` | `24.10.1` |
    | [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `8.46.2` | `8.47.0` |
    | [@vitest/eslint-plugin](https://github.com/vitest-dev/eslint-plugin-vitest) | `1.3.23` | `1.4.4` |
    | [eslint](https://github.com/eslint/eslint) | `9.38.0` | `9.39.1` |
    | [globals](https://github.com/sindresorhus/globals) | `16.4.0` | `16.5.0` |
    | [lint-staged](https://github.com/lint-staged/lint-staged) | `16.2.5` | `16.2.7` |
    | [turbo](https://github.com/vercel/turborepo) | `2.5.6` | `2.6.1` |
    | [devtools-protocol](https://github.com/ChromeDevTools/devtools-protocol) | `0.0.1528500` | `0.0.1548823` |
    | [jsdom](https://github.com/jsdom/jsdom) | `27.0.1` | `27.2.0` |
    | [zod](https://github.com/colinhacks/zod) | `4.1.12` | `4.1.13` |
    | [@rollup/plugin-commonjs](https://github.com/rollup/plugins/tree/HEAD/packages/commonjs) | `28.0.8` | `28.0.9` |
    | [@tauri-apps/cli](https://github.com/tauri-apps/tauri) | `2.9.1` | `2.9.4` |
    | [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `7.2.0` | `7.2.4` |
    
    
    
    Updates `@biomejs/biome` from 2.2.5 to 2.3.7
    - [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/[email protected]/packages/@biomejs/biome)
    
    Updates `@types/node` from 24.9.1 to 24.10.1
    - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
    - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)
    
    Updates `@typescript-eslint/parser` from 8.46.2 to 8.47.0
    - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
    - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md)
    - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.47.0/packages/parser)
    
    Updates `@vitest/eslint-plugin` from 1.3.23 to 1.4.4
    - [Release notes](https://github.com/vitest-dev/eslint-plugin-vitest/releases)
    - [Commits](vitest-dev/eslint-plugin-vitest@v1.3.23...v1.4.4)
    
    Updates `eslint` from 9.38.0 to 9.39.1
    - [Release notes](https://github.com/eslint/eslint/releases)
    - [Commits](eslint/eslint@v9.38.0...v9.39.1)
    
    Updates `globals` from 16.4.0 to 16.5.0
    - [Release notes](https://github.com/sindresorhus/globals/releases)
    - [Commits](sindresorhus/globals@v16.4.0...v16.5.0)
    
    Updates `lint-staged` from 16.2.5 to 16.2.7
    - [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@v16.2.5...v16.2.7)
    
    Updates `turbo` from 2.5.6 to 2.6.1
    - [Release notes](https://github.com/vercel/turborepo/releases)
    - [Changelog](https://github.com/vercel/turborepo/blob/main/RELEASE.md)
    - [Commits](vercel/turborepo@v2.5.6...v2.6.1)
    
    Updates `devtools-protocol` from 0.0.1528500 to 0.0.1548823
    - [Commits](ChromeDevTools/devtools-protocol@v0.0.1528500...v0.0.1548823)
    
    Updates `jsdom` from 27.0.1 to 27.2.0
    - [Release notes](https://github.com/jsdom/jsdom/releases)
    - [Changelog](https://github.com/jsdom/jsdom/blob/main/Changelog.md)
    - [Commits](jsdom/jsdom@27.0.1...27.2.0)
    
    Updates `zod` from 4.1.12 to 4.1.13
    - [Release notes](https://github.com/colinhacks/zod/releases)
    - [Commits](colinhacks/zod@v4.1.12...v4.1.13)
    
    Updates `@rollup/plugin-commonjs` from 28.0.8 to 28.0.9
    - [Changelog](https://github.com/rollup/plugins/blob/master/packages/commonjs/CHANGELOG.md)
    - [Commits](https://github.com/rollup/plugins/commits/commonjs-v28.0.9/packages/commonjs)
    
    Updates `@tauri-apps/cli` from 2.9.1 to 2.9.4
    - [Release notes](https://github.com/tauri-apps/tauri/releases)
    - [Commits](https://github.com/tauri-apps/tauri/compare/@tauri-apps/cli-v2.9.1...@tauri-apps/cli-v2.9.4)
    
    Updates `vite` from 7.2.0 to 7.2.4
    - [Release notes](https://github.com/vitejs/vite/releases)
    - [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
    - [Commits](https://github.com/vitejs/vite/commits/v7.2.4/packages/vite)
    
    ---
    updated-dependencies:
    - dependency-name: "@biomejs/biome"
      dependency-version: 2.3.7
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: development-dependencies
    - dependency-name: "@types/node"
      dependency-version: 24.10.1
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: development-dependencies
    - dependency-name: "@typescript-eslint/parser"
      dependency-version: 8.47.0
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: development-dependencies
    - dependency-name: "@vitest/eslint-plugin"
      dependency-version: 1.4.4
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: development-dependencies
    - dependency-name: eslint
      dependency-version: 9.39.1
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: development-dependencies
    - dependency-name: globals
      dependency-version: 16.5.0
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: development-dependencies
    - dependency-name: lint-staged
      dependency-version: 16.2.7
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: development-dependencies
    - dependency-name: turbo
      dependency-version: 2.6.1
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: development-dependencies
    - dependency-name: devtools-protocol
      dependency-version: 0.0.1548823
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: development-dependencies
    - dependency-name: jsdom
      dependency-version: 27.2.0
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: development-dependencies
    - dependency-name: zod
      dependency-version: 4.1.13
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: development-dependencies
    - dependency-name: "@rollup/plugin-commonjs"
      dependency-version: 28.0.9
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: development-dependencies
    - dependency-name: "@tauri-apps/cli"
      dependency-version: 2.9.4
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: development-dependencies
    - dependency-name: vite
      dependency-version: 7.2.4
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: development-dependencies
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    @dependabot @github
    Copy link
    Author

    dependabot bot commented on behalf of github Nov 24, 2025

    Labels

    The following labels could not be found: area:dependencies, track:main. Please create them before Dependabot can add them to a pull request.

    Please fix the above issues or remove invalid values from dependabot.yml.

    Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

    Labels

    None yet

    Projects

    None yet

    Development

    Successfully merging this pull request may close these issues.

    1 participant