Skip to content

chore(deps-dev): bump the npm-dependencies group across 1 directory with 9 updates#160

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/npm-dependencies-4f1c694b0d
Closed

chore(deps-dev): bump the npm-dependencies group across 1 directory with 9 updates#160
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/npm-dependencies-4f1c694b0d

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Feb 26, 2026

Copy link
Copy Markdown
Contributor

Bumps the npm-dependencies group with 8 updates in the / directory:

Package From To
@biomejs/biome 2.3.14 2.4.3
@stylistic/eslint-plugin 5.8.0 5.9.0
@types/chai 4.3.20 5.2.3
@types/node 25.2.3 25.3.0
@typescript-eslint/eslint-plugin 8.55.0 8.56.0
eslint 9.39.2 10.0.0
glob 13.0.2 13.0.6
vscode-extension-tester 8.21.0 8.22.0

Updates @biomejs/biome from 2.3.14 to 2.4.3

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.4.3

2.4.3

Patch Changes

  • #9120 aa40fc2 Thanks @​ematipico! - Fixed #9109, where the GitHub reporter wasn't correctly enabled when biome ci runs on GitHub Actions.

  • #9128 8ca3f7f Thanks @​dyc3! - Fixed #9107: The HTML parser can now correctly parse Astro directives (client/set/class/is/server), which fixes the formatting for Astro directives.

  • #9124 f5b0e8d Thanks @​ematipico! - Fixed #8882 and #9108: The Astro frontmatter lexer now correctly identifies the closing --- fence when the frontmatter contains multi-line block comments with quote characters, strings that mix quote types (e.g. "it's"), or escaped quote characters (e.g. "\").

  • #9142 3ca066b Thanks @​THernandez03! - Fixed #9141: The noUnknownAttribute rule no longer reports closedby as an unknown attribute on <dialog> elements.

  • #9126 792013e Thanks @​ematipico! - Added missing Mocha globals to the Test domain: context, run, setup, specify, suite, suiteSetup, suiteTeardown, teardown, xcontext, xdescribe, xit, and xspecify. These are injected by Mocha's BDD and TDD interfaces and were previously flagged as undeclared variables in projects using Mocha.

  • #8855 6918c9e Thanks @​ruidosujeira! - Fixed #8840. Now the Biome CSS parser correctly parses not + scroll-state inside @container queries.

  • #9111 4fb55cf Thanks @​Jayllyz! - Slightly improved performance of noIrregularWhitespace by adding early return optimization and simplifying character detection logic.

  • #8975 086a0c5 Thanks @​FrankFMY! - Fixed #8478: useDestructuring no longer suggests destructuring when the variable has a type annotation, like const foo: string = object.foo.

What's Changed

New Contributors

Full Changelog: https://github.com/biomejs/biome/compare/@​biomejs/biome@​2.4.2...@​biomejs/biome@​2.4.3

Biome CLI v2.4.2

2.4.2

Patch Changes

  • #9103 fc9850c Thanks @​dyc3! - Fixed #9098: useImportType no longer incorrectly flags imports used in Svelte control flow blocks ({#if}, {#each}, {#await}, {#key}) as type-only imports.

  • #9106 f4b7296 Thanks @​dyc3! - Updated rule source metadata for rules from html-eslint.

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

2.4.3

Patch Changes

  • #9120 aa40fc2 Thanks @​ematipico! - Fixed #9109, where the GitHub reporter wasn't correctly enabled when biome ci runs on GitHub Actions.

  • #9128 8ca3f7f Thanks @​dyc3! - Fixed #9107: The HTML parser can now correctly parse Astro directives (client/set/class/is/server), which fixes the formatting for Astro directives.

  • #9124 f5b0e8d Thanks @​ematipico! - Fixed #8882 and #9108: The Astro frontmatter lexer now correctly identifies the closing --- fence when the frontmatter contains multi-line block comments with quote characters, strings that mix quote types (e.g. "it's"), or escaped quote characters (e.g. "\").

  • #9142 3ca066b Thanks @​THernandez03! - Fixed #9141: The noUnknownAttribute rule no longer reports closedby as an unknown attribute on <dialog> elements.

  • #9126 792013e Thanks @​ematipico! - Added missing Mocha globals to the Test domain: context, run, setup, specify, suite, suiteSetup, suiteTeardown, teardown, xcontext, xdescribe, xit, and xspecify. These are injected by Mocha's BDD and TDD interfaces and were previously flagged as undeclared variables in projects using Mocha.

  • #8855 6918c9e Thanks @​ruidosujeira! - Fixed #8840. Now the Biome CSS parser correctly parses not + scroll-state inside @container queries.

  • #9111 4fb55cf Thanks @​Jayllyz! - Slightly improved performance of noIrregularWhitespace by adding early return optimization and simplifying character detection logic.

  • #8975 086a0c5 Thanks @​FrankFMY! - Fixed #8478: useDestructuring no longer suggests destructuring when the variable has a type annotation, like const foo: string = object.foo.

2.4.2

Patch Changes

  • #9103 fc9850c Thanks @​dyc3! - Fixed #9098: useImportType no longer incorrectly flags imports used in Svelte control flow blocks ({#if}, {#each}, {#await}, {#key}) as type-only imports.

  • #9106 f4b7296 Thanks @​dyc3! - Updated rule source metadata for rules from html-eslint.

  • #8960 4a5ff40 Thanks @​abossenbroek! - Added the nursery rule noConditionalExpect. This rule disallows conditional expect() calls inside tests, which can lead to tests that silently pass when assertions never run.

    // Invalid - conditional expect may not run
    test("conditional", async ({ page }) => {
      if (someCondition) {
        await expect(page).toHaveTitle("Title");
      }
    });
    // Valid - unconditional expect
    test("unconditional", async ({ page }) => {
    await expect(page).toHaveTitle("Title");
    });

  • #8960 4a5ff40 Thanks @​abossenbroek! - Added the nursery rule noPlaywrightElementHandle. Prefers locators to element handles.

    const el = await page.$(".btn");

... (truncated)

Commits

Updates @stylistic/eslint-plugin from 5.8.0 to 5.9.0

Release notes

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

v5.9.0

5.9.0 (2026-02-19)

Features

Bug Fixes

  • comma-dangle: check tsx file correctly (#1127) (271da42)
  • comma-dangle: prevent crash when linting non-js files (#1140) (4a96eae)
  • indent: ignore when source code is not ESTree (#1139) (9e7f422)
  • no-extra-parens: don't report jsdoc type assertion by default (#1100) (cfb6296)
  • object-curly-spacing: correctly handle object patterns with type annotations (#1129) (5aaaec6)

Chores

  • lines-around-comment: improve extensibility of allow boundary checks (#1136) (18b961e)
  • no-extra-parens: simplify fixer (#1133) (3504e1f)
  • on-var-declaration-per-line: simplify fixer (#1132) (c827fde)
Changelog

Sourced from @​stylistic/eslint-plugin's changelog.

5.9.0 (2026-02-19)

Features

Bug Fixes

  • comma-dangle: check tsx file correctly (#1127) (271da42)
  • comma-dangle: prevent crash when linting non-js files (#1140) (4a96eae)
  • indent: ignore when source code is not ESTree (#1139) (9e7f422)
  • no-extra-parens: don't report jsdoc type assertion by default (#1100) (cfb6296)
  • object-curly-spacing: correctly handle object patterns with type annotations (#1129) (5aaaec6)

Chores

  • lines-around-comment: improve extensibility of allow boundary checks (#1136) (18b961e)
  • no-extra-parens: simplify fixer (#1133) (3504e1f)
  • on-var-declaration-per-line: simplify fixer (#1132) (c827fde)
Commits
  • 96ce1c7 chore: release v5.9.0 (main) (#1131)
  • 5d99706 feat: support ESLint 10 (#1066)
  • cfb6296 fix(no-extra-parens): don't report jsdoc type assertion by default (#1100)
  • 501e838 feat(no-trailing-spaces): support more file types (#1138)
  • 8f5cc9e feat(padding-line-between-statements): support selector-based statement match...
  • 9e7f422 fix(indent): ignore when source code is not ESTree (#1139)
  • 4a96eae fix(comma-dangle): prevent crash when linting non-js files (#1140)
  • 18b961e refactor(lines-around-comment): improve extensibility of allow boundary check...
  • 3504e1f refactor(no-extra-parens): simplify fixer (#1133)
  • c827fde refactor(on-var-declaration-per-line): simplify fixer (#1132)
  • Additional commits viewable in compare view

Updates @types/chai from 4.3.20 to 5.2.3

Commits

Updates @types/node from 25.2.3 to 25.3.0

Commits

Updates @typescript-eslint/eslint-plugin from 8.55.0 to 8.56.0

Release notes

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

v8.56.0

8.56.0 (2026-02-16)

🚀 Features

🩹 Fixes

  • use parser options from context.languageOptions (#12043)

❤️ Thank You

See GitHub Releases for more information.

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

Changelog

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

8.56.0 (2026-02-16)

🚀 Features

🩹 Fixes

  • use parser options from context.languageOptions (#12043)

❤️ Thank You

See GitHub Releases for more information.

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

Commits

Updates @typescript-eslint/parser from 8.55.0 to 8.56.1

Release notes

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

v8.56.1

8.56.1 (2026-02-23)

What's Changed

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

v8.56.0

8.56.0 (2026-02-16)

🚀 Features

🩹 Fixes

  • use parser options from context.languageOptions (#12043)

❤️ Thank You

See GitHub Releases for more information.

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

Changelog

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

8.56.1 (2026-02-23)

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

See GitHub Releases for more information.

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

8.56.0 (2026-02-16)

🚀 Features

❤️ Thank You

See GitHub Releases for more information.

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

Commits

Updates eslint from 9.39.2 to 10.0.0

Release notes

Sourced from eslint's releases.

v10.0.0

Breaking Changes

  • f9e54f4 feat!: estimate rule-tester failure location (#20420) (ST-DDT)
  • a176319 feat!: replace chalk with styleText and add color to ResultsMeta (#20227) (루밀LuMir)
  • c7046e6 feat!: enable JSX reference tracking (#20152) (Pixel998)
  • fa31a60 feat!: add name to configs (#20015) (Kirk Waiblinger)
  • 3383e7e fix!: remove deprecated SourceCode methods (#20137) (Pixel998)
  • 501abd0 feat!: update dependency minimatch to v10 (#20246) (renovate[bot])
  • ca4d3b4 fix!: stricter rule tester assertions for valid test cases (#20125) (唯然)
  • 96512a6 fix!: Remove deprecated rule context methods (#20086) (Nicholas C. Zakas)
  • c69fdac feat!: remove eslintrc support (#20037) (Francesco Trotta)
  • 208b5cc feat!: Use ScopeManager#addGlobals() (#20132) (Milos Djermanovic)
  • a2ee188 fix!: add uniqueItems: true in no-invalid-regexp option (#20155) (Tanuj Kanti)
  • a89059d feat!: Program range span entire source text (#20133) (Pixel998)
  • 39a6424 fix!: assert 'text' is a string across all RuleFixer methods (#20082) (Pixel998)
  • f28fbf8 fix!: Deprecate "always" and "as-needed" options of the radix rule (#20223) (Milos Djermanovic)
  • aa3fb2b fix!: tighten func-names schema (#20119) (Pixel998)
  • f6c0ed0 feat!: report eslint-env comments as errors (#20128) (Francesco Trotta)
  • 4bf739f fix!: remove deprecated LintMessage#nodeType and TestCaseError#type (#20096) (Pixel998)
  • 523c076 feat!: drop support for jiti < 2.2.0 (#20016) (michael faith)
  • 454a292 feat!: update eslint:recommended configuration (#20210) (Pixel998)
  • 4f880ee feat!: remove v10_* and inactive unstable_* flags (#20225) (sethamus)
  • f18115c feat!: no-shadow-restricted-names report globalThis by default (#20027) (sethamus)
  • c6358c3 feat!: Require Node.js ^20.19.0 || ^22.13.0 || >=24 (#20160) (Milos Djermanovic)

Features

  • bff9091 feat: handle Array.fromAsync in array-callback-return (#20457) (Francesco Trotta)
  • 290c594 feat: add self to no-implied-eval rule (#20468) (sethamus)
  • 43677de feat: fix handling of function and class expression names in no-shadow (#20432) (Milos Djermanovic)
  • f0cafe5 feat: rule tester add assertion option requireData (#20409) (fnx)
  • f7ab693 feat: output RuleTester test case failure index (#19976) (ST-DDT)
  • 7cbcbf9 feat: add countThis option to max-params (#20236) (Gerkin)
  • f148a5e feat: add error assertion options (#20247) (ST-DDT)
  • 09e6654 feat: update error loc of require-yield and no-useless-constructor (#20267) (Tanuj Kanti)

Bug Fixes

  • 436b82f fix: update eslint (#20473) (renovate[bot])
  • 1d29d22 fix: detect default this binding in Array.fromAsync callbacks (#20456) (Francesco Trotta)
  • 727451e fix: fix regression of global mode report range in strict rule (#20462) (ntnyq)
  • e80485f fix: remove fake FlatESLint and LegacyESLint exports (#20460) (Francesco Trotta)
  • 9eeff3b fix: update esquery (#20423) (cryptnix)
  • b34b938 fix: use Error.prepareStackTrace to estimate failing test location (#20436) (Francesco Trotta)
  • 51aab53 fix: update eslint (#20443) (renovate[bot])
  • 23490b2 fix: handle space before colon in RuleTester location estimation (#20433) (Francesco Trotta)
  • f244dbf fix: use MessagePlaceholderData type from @eslint/core (#20348) (루밀LuMir)
  • d186f8c fix: update eslint (#20427) (renovate[bot])
  • 2332262 fix: error location should not modify error message in RuleTester (#20421) (Milos Djermanovic)
  • ab99b21 fix: ensure filename is passed as third argument to verifyAndFix() (#20405) (루밀LuMir)
  • 8a60f3b fix: remove ecmaVersion and sourceType from ParserOptions type (#20415) (Pixel998)
  • eafd727 fix: remove TDZ scope type (#20231) (jaymarvelz)

... (truncated)

Commits
  • 4e6c4ac 10.0.0
  • ddd8a22 Build: changelog update for 10.0.0
  • bff9091 feat: handle Array.fromAsync in array-callback-return (#20457)
  • 1ece282 chore: ignore /docs/v9.x in link checker (#20452)
  • 034e139 ci: add type integration test for @html-eslint/eslint-plugin (#20345)
  • f3fbc2f chore: set @eslint/js version to 10.0.0 to skip releasing it (#20466)
  • e978dda docs: Update README
  • 4cecf83 docs: Update README
  • c79f0ab docs: Update README
  • afc0681 chore: remove scopeManager.addGlobals patch for typescript-eslint parser (#20...
  • Additional commits viewable in compare view

Updates glob from 13.0.2 to 13.0.6

Commits

Updates vscode-extension-tester from 8.21.0 to 8.22.0

Release notes

Sourced from vscode-extension-tester's releases.

v8.22.0

What's Changed

🚀 Features

feat: bump vscode-max from 1.108.0 to 1.109.4 by Dominik Jelinek in 9364018b924fdb6ba1c80dc9bfb060802378f58c

🚫 Bugs

fix(page-objects): occurrence count of getLineOfText and selectText (#2259) by Toine Hartman in 27ad09e30e18ec3e5c9fd2c2e270b5ee51eafa65 fix: wrong path of cli.js on Windows platform using VS Code 1.109 by Dominik Jelinek in aa994a32717fb7545dd4dfb9031610025bace55a fix(page-objects): wait for clipboard in TextView.getText() (#2249) by shashankvidiyalaC3 in b995d17c9b4565b7b895644be2faf9bcb6d288df

🔧 Maintenance

chore(release): Publish v8.22.0 (#2267) by Dominik Jelínek in a07d3bbbe559a4df403ba6c59c5bd70f7af2bce9 chore: switch to NodeJS LTS version by default (#2266) by Dominik Jelínek in 175c9fd8d66364aa7f2bf0e4721c23b4fb0b372e chore: update new issue templates (#2262) by Dominik Jelínek in 3540adda6cc0cd91e4f82371b11beb81e28babe9

📦 Dependencies

build(deps-dev): bump the eslint group across 1 directory with 4 updates (#2248) by dependabot[bot] in 2bbcaec16b5c26b97c2064eb68526a4769855b07 build(deps): bump glob from 13.0.3 to 13.0.4 (#2265) by dependabot[bot] in 9adb396b55818bf7a9c44751a27efee00626e41c build(deps-dev): bump lerna from 9.0.3 to 9.0.4 (#2252) by dependabot[bot] in 805a15578f5f0ac93181880b6c3be68a6627a6ee build(deps-dev): bump rimraf from 6.1.2 to 6.1.3 (#2261) by dependabot[bot] in 6e9433903741608c00512b72801e65d21b52bcb9 build(deps): bump clipboardy from 5.2.1 to 5.3.0 (#2256) by dependabot[bot] in afaa27800963cba8d10e97935205a570421ed6d9 build(deps): bump qs from 6.14.1 to 6.14.2 (#2258) by dependabot[bot] in 8b00967fe8ae8ce85e44b61d9d8811829acb4b0e build(deps): bump markdown-it from 14.1.0 to 14.1.1 (#2260) by dependabot[bot] in 4bde75300957a12eb6694966d65b660243ddb44b build(deps-dev): bump @​types/node from 25.2.2 to 25.2.3 (#2250) by dependabot[bot] in 2a6f15d7f7beb990cf598f2d42b5353b12d640cc build(deps-dev): bump @​types/node from 25.2.1 to 25.2.2 (#2245) by dependabot[bot] in 65f62e1a698945879061e3117b655d68e0680aca build(deps): bump commander from 14.0.2 to 14.0.3 (#2232) by dependabot[bot] in b59a2b702d7051c9fb6cc13955d2aa1741bd1f50 build(deps-dev): bump @​types/vscode from 1.108.1 to 1.109.0 (#2239) by dependabot[bot] in 3e7926fa9b0380e50e0d8acbbc85f82f4f7933cf build(deps-dev): bump @​types/node from 25.2.0 to 25.2.1 (#2243) by dependabot[bot] in ff7795fa1575fda3b51b8af4fbdc7eba358acd91 build(deps): bump glob from 13.0.0 to 13.0.1 (#2237) by dependabot[bot] in 5c3c48088c4dae67605b568b139c71cd08e42ebb build(deps-dev): bump esbuild from 0.27.2 to 0.27.3 (#2242) by dependabot[bot] in 58ab9826db75c7c02299e4300cd2e813a5b9a1ee build(deps): bump clipboardy from 5.2.0 to 5.2.1 (#2238) by dependabot[bot] in 99a83cb670f0b3129f65387d8c3d2aa43faaec73 build(deps): bump @​babel/traverse from 7.28.6 to 7.29.0 (#2233) by dependabot[bot] in 81d38fee2795f35ecc28b417cfc58bb0784dc6fb build(deps): bump @​babel/types from 7.28.6 to 7.29.0 (#2230) by dependabot[bot] in b81bf233a33f056e498751c214641a35b80371e5 build(deps-dev): bump @​types/node from 25.1.0 to 25.2.0 (#2229) by dependabot[bot] in 91b5ce7deed99770a1c1508c8e31c5ba94b1319f build(deps): bump clipboardy from 5.1.0 to 5.2.0 (#2235) by dependabot[bot] in 71761ef7067af48bd78efd2e4fd724bd43cb2f04 build(deps-dev): bump @​types/node from 25.0.10 to 25.1.0 (#2228) by dependabot[bot] in 1e48240372f11f8d239cb1e936854ad5c0e1434a build(deps): bump @​babel/traverse from 7.28.5 to 7.28.6 (#2209) by dependabot[bot] in b197a94e5b6851e9e0b31bb1f8b29a67bf70662a build(deps-dev): bump the eslint group across 1 directory with 3 updates (#2226) by dependabot[bot] in f32edcbff572344442c79f92b4ff39ed17da07db build(deps): bump clipboardy from 5.0.2 to 5.1.0 (#2225) by dependabot[bot] in 80111fecbf65d1ad2e1bf37facad59869fb85ac6 build(deps-dev): bump @​types/vscode from 1.107.0 to 1.108.1 (#2202) by dependabot[bot] in bb5414d474ef1442c03b6344fd3837adcf13b408 build(deps): bump lodash from 4.17.21 to 4.17.23 (#2221) by dependabot[bot] in 5443537a3303bfb7adbe64265e313b752b64b34b build(deps-dev): bump @​types/node from 25.0.3 to 25.0.10 (#2223) by dependabot[bot] in 08049aaa5f4d1c19d9b259dd87e2f5805a931977 build(deps-dev): bump prettier from 3.7.4 to 3.8.1 (#2222) by dependabot[bot] in c49b89742bb29907e5b992cfea7a6194eda999cf build(deps-dev): bump the eslint group with 2 updates (#2219) by dependabot[bot] in a98a546c54d37bc9249622d4e2122a4ef19f2d5c build(deps): bump undici from 7.11.0 to 7.18.2 (#2212) by dependabot[bot] in 374376349cbdfcd5901600a9d0f48908f9dbedd0 build(deps): bump selenium-webdriver from 4.39.0 to 4.40.0 (#2218) by dependabot[bot] in d2fd4db85bac59440866c9eb8d216f638a64ac63 build(deps): bump @​babel/parser from 7.28.5 to 7.28.6 (#2204) by dependabot[bot] in 948b0b0718ebecaccdb304b7c494c47f2af76fca build(deps): bump @​babel/types from 7.28.5 to 7.28.6 (

…ith 9 updates

Bumps the npm-dependencies group with 8 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `2.3.14` | `2.4.3` |
| [@stylistic/eslint-plugin](https://github.com/eslint-stylistic/eslint-stylistic/tree/HEAD/packages/eslint-plugin) | `5.8.0` | `5.9.0` |
| [@types/chai](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/chai) | `4.3.20` | `5.2.3` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `25.2.3` | `25.3.0` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `8.55.0` | `8.56.0` |
| [eslint](https://github.com/eslint/eslint) | `9.39.2` | `10.0.0` |
| [glob](https://github.com/isaacs/node-glob) | `13.0.2` | `13.0.6` |
| [vscode-extension-tester](https://github.com/redhat-developer/vscode-extension-tester/tree/HEAD/packages/extester) | `8.21.0` | `8.22.0` |



Updates `@biomejs/biome` from 2.3.14 to 2.4.3
- [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.4.3/packages/@biomejs/biome)

Updates `@stylistic/eslint-plugin` from 5.8.0 to 5.9.0
- [Release notes](https://github.com/eslint-stylistic/eslint-stylistic/releases)
- [Changelog](https://github.com/eslint-stylistic/eslint-stylistic/blob/main/CHANGELOG.md)
- [Commits](https://github.com/eslint-stylistic/eslint-stylistic/commits/v5.9.0/packages/eslint-plugin)

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

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

Updates `@typescript-eslint/eslint-plugin` from 8.55.0 to 8.56.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.56.0/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 8.55.0 to 8.56.1
- [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.56.1/packages/parser)

Updates `eslint` from 9.39.2 to 10.0.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](eslint/eslint@v9.39.2...v10.0.0)

Updates `glob` from 13.0.2 to 13.0.6
- [Changelog](https://github.com/isaacs/node-glob/blob/main/changelog.md)
- [Commits](isaacs/node-glob@v13.0.2...v13.0.6)

Updates `vscode-extension-tester` from 8.21.0 to 8.22.0
- [Release notes](https://github.com/redhat-developer/vscode-extension-tester/releases)
- [Commits](https://github.com/redhat-developer/vscode-extension-tester/commits/v8.22.0/packages/extester)

---
updated-dependencies:
- dependency-name: "@biomejs/biome"
  dependency-version: 2.4.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: "@stylistic/eslint-plugin"
  dependency-version: 5.9.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: "@types/chai"
  dependency-version: 5.2.3
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: "@types/node"
  dependency-version: 25.3.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-version: 8.56.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: "@typescript-eslint/parser"
  dependency-version: 8.56.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: eslint
  dependency-version: 10.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-dependencies
- dependency-name: glob
  dependency-version: 13.0.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies
- dependency-name: vscode-extension-tester
  dependency-version: 8.22.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label Feb 26, 2026
@dependabot dependabot Bot requested a review from Vasco-jofra as a code owner February 26, 2026 22:17
@dependabot @github

dependabot Bot commented on behalf of github Feb 26, 2026

Copy link
Copy Markdown
Contributor Author

Labels

The following labels could not be found: npm. Please create it before Dependabot can add it to a pull request.

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

@dependabot dependabot Bot requested a review from fcasal as a code owner February 26, 2026 22:17
@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label Feb 26, 2026
@dependabot @github

dependabot Bot commented on behalf of github Mar 5, 2026

Copy link
Copy Markdown
Contributor Author

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

@dependabot dependabot Bot closed this Mar 5, 2026
@dependabot dependabot Bot deleted the dependabot/npm_and_yarn/npm-dependencies-4f1c694b0d branch March 5, 2026 22:17
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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants