Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 8, 2025

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

Package From To
@biomejs/biome 2.2.2 2.2.3
@types/node 24.3.0 24.3.1
@typescript-eslint/parser 8.41.0 8.43.0
@vitest/eslint-plugin 1.3.4 1.3.9
chalk 5.6.0 5.6.2
dotenv 17.2.1 17.2.2
eslint 9.34.0 9.35.0
lint-staged 16.1.5 16.1.6
package-versioner 0.9.1 0.9.2
@types/semver 7.7.0 7.7.1
p-limit 7.1.0 7.1.1
zod 4.1.3 4.1.5
devtools-protocol 0.0.1505444 0.0.1511308

Updates @biomejs/biome from 2.2.2 to 2.2.3

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.2.3

2.2.3

Patch Changes

  • #7353 4d2b719 Thanks @​JeetuSuthar! - Fixed #7340: The linter now allows the navigation property for view-transition in CSS.

    Previously, the linter incorrectly flagged navigation: auto as an unknown property. This fix adds navigation to the list of known CSS properties, following the CSS View Transitions spec.

  • #7275 560de1b Thanks @​arendjr! - Fixed #7268: Files that are explicitly passed as CLI arguments are now correctly ignored if they reside in an ignored folder.

  • #7358 963a246 Thanks @​ematipico! - Fixed #7085, now the rule noDescendingSpecificity correctly calculates the specificity of selectors when they are included inside a media query.

  • #7387 923674d Thanks @​qraqras! - Fixed #7381, now the useOptionalChain rule recognizes optional chaining using Yoda expressions (e.g., undefined !== foo && foo.bar).

  • #7316 f9636d5 Thanks @​Conaclos! - Fixed #7289. The rule useImportType now inlines import type into import { type } when the style option is set to inlineType.

    Example:

    import type { T } from "mod";
    // becomes
    import { type T } from "mod";
  • #7350 bb4d407 Thanks @​siketyan! - Fixed #7261: two characters (KATAKANA MIDDLE DOT, U+30FB) and (HALFWIDTH KATAKANA MIDDLE DOT, U+FF65) are no longer considered as valid characters in identifiers. Property keys containing these character(s) are now preserved as string literals.

  • #7377 811f47b Thanks @​ematipico! - Fixed a bug where the Biome Language Server didn't correctly compute the diagnostics of a monorepo setting, caused by an incorrect handling of the project status.

  • #7245 fad34b9 Thanks @​kedevked! - Added the new lint rule useConsistentArrowReturn.

    This rule enforces a consistent return style for arrow functions.

    Invalid

    const f = () => {
      return 1;
    };

    This rule is a port of ESLint's arrow-body-style rule.

  • #7370 e8032dd Thanks @​fireairforce! - Support dynamic import defer and import source. The syntax looks like:

    import.source("foo");
    import.source("x", { with: { attr: "val" } });
    import.defer("foo");
    import.defer("x", { with: { attr: "val" } });

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

2.2.3

Patch Changes

  • #7353 4d2b719 Thanks @​JeetuSuthar! - Fixed #7340: The linter now allows the navigation property for view-transition in CSS.

    Previously, the linter incorrectly flagged navigation: auto as an unknown property. This fix adds navigation to the list of known CSS properties, following the CSS View Transitions spec.

  • #7275 560de1b Thanks @​arendjr! - Fixed #7268: Files that are explicitly passed as CLI arguments are now correctly ignored if they reside in an ignored folder.

  • #7358 963a246 Thanks @​ematipico! - Fixed #7085, now the rule noDescendingSpecificity correctly calculates the specificity of selectors when they are included inside a media query.

  • #7387 923674d Thanks @​qraqras! - Fixed #7381, now the useOptionalChain rule recognizes optional chaining using Yoda expressions (e.g., undefined !== foo && foo.bar).

  • #7316 f9636d5 Thanks @​Conaclos! - Fixed #7289. The rule useImportType now inlines import type into import { type } when the style option is set to inlineType.

    Example:

    import type { T } from "mod";
    // becomes
    import { type T } from "mod";
  • #7350 bb4d407 Thanks @​siketyan! - Fixed #7261: two characters (KATAKANA MIDDLE DOT, U+30FB) and (HALFWIDTH KATAKANA MIDDLE DOT, U+FF65) are no longer considered as valid characters in identifiers. Property keys containing these character(s) are now preserved as string literals.

  • #7377 811f47b Thanks @​ematipico! - Fixed a bug where the Biome Language Server didn't correctly compute the diagnostics of a monorepo setting, caused by an incorrect handling of the project status.

  • #7245 fad34b9 Thanks @​kedevked! - Added the new lint rule useConsistentArrowReturn.

    This rule enforces a consistent return style for arrow functions.

    Invalid

    const f = () => {
      return 1;
    };

    This rule is a port of ESLint's arrow-body-style rule.

  • #7370 e8032dd Thanks @​fireairforce! - Support dynamic import defer and import source. The syntax looks like:

    import.source("foo");
    import.source("x", { with: { attr: "val" } });
    import.defer("foo");
    import.defer("x", { with: { attr: "val" } });

... (truncated)

Commits

Updates @types/node from 24.3.0 to 24.3.1

Commits

Updates @typescript-eslint/parser from 8.41.0 to 8.43.0

Release notes

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

v8.43.0

8.43.0 (2025-09-08)

🚀 Features

  • typescript-estree: disallow empty type parameter/argument lists (#11563)

🩹 Fixes

  • eslint-plugin: [no-non-null-assertion] do not suggest optional chain on LHS of assignment (#11489)
  • eslint-plugin: [no-unnecessary-type-conversion] only report ~~ on integer literal types (#11517)
  • eslint-plugin: [consistent-type-exports] fix declaration shadowing (#11457)
  • eslint-plugin: [no-floating-promises] allowForKnownSafeCalls now supports function names (#11423, #11430)
  • eslint-plugin: [no-deprecated] should report deprecated exports and reexports (#11359)
  • eslint-plugin: [prefer-return-this-type] don't report an error when returning a union type that includes a classType (#11432)
  • rule-tester: normalize paths before checking if they escape cwd (#11525)
  • scope-manager: exclude Program from DefinitionBase node types (#11469)
  • type-utils: add union type support to TypeOrValueSpecifier (#11526)
  • typescript-estree: match filenames starting with a period when using glob in allowDefaultProject / (#11537)

❤️ Thank You

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

v8.42.0

8.42.0 (2025-09-02)

🚀 Features

🩹 Fixes

  • deps: update eslint monorepo to v9.33.0 (#11482)
  • typescript-eslint: handle non-normalized windows paths produced by jiti (#11546)

❤️ Thank You

... (truncated)

Changelog

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

8.43.0 (2025-09-08)

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.42.0 (2025-09-02)

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
Maintainer changes

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


Updates @vitest/eslint-plugin from 1.3.4 to 1.3.9

Release notes

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

v1.3.5

Bug Fixes

  • docs: fix incorrect rule name in vitest/require-mock-type-parameters example (#740) (d48741a)

Features

  • prefer-describe-function-title: Check for unnecessary .name (#744) (5f1fe04)

What's Changed

New Contributors

Full Changelog: vitest-dev/eslint-plugin-vitest@v1.3.4...v1.3.5

Commits

Updates chalk from 5.6.0 to 5.6.2

Release notes

Sourced from chalk's releases.

v5.6.2

Commits

Updates dotenv from 17.2.1 to 17.2.2

Changelog

Sourced from dotenv's changelog.

17.2.2 (2025-09-02)

Added

  • 🙏 A big thank you to new sponsor Tuple.app - the premier screen sharing app for developers on macOS and Windows. Go check them out. It's wonderful and generous of them to give back to open source by sponsoring dotenv. Give them some love back.
Commits

Updates eslint from 9.34.0 to 9.35.0

Release notes

Sourced from eslint's releases.

v9.35.0

Features

  • 42761fa feat: implement suggestions for no-empty-function (#20057) (jaymarvelz)
  • 102f444 feat: implement suggestions for no-empty-static-block (#20056) (jaymarvelz)
  • e51ffff feat: add preserve-caught-error rule (#19913) (Amnish Singh Arora)

Bug Fixes

  • 10e7ae2 fix: update uncloneable options error message (#20059) (soda-sorcery)
  • bfa4601 fix: ignore empty switch statements with comments in no-empty rule (#20045) (jaymarvelz)
  • dfd11de fix: add before and after to test case types (#20049) (Francesco Trotta)
  • dabbe95 fix: correct types for no-restricted-imports rule (#20034) (Milos Djermanovic)
  • ea789c7 fix: no-loss-of-precision false positive with uppercase exponent (#20032) (sethamus)

Documentation

  • d265515 docs: improve phrasing - "if" → "even if" from getting-started section (#20074) (jjangga0214)
  • a355a0e docs: invert comparison logic for example in no-var doc page (#20064) (OTonGitHub)
  • 5082fc2 docs: Update README (GitHub Actions Bot)
  • 99cfd7e docs: add missing "the" in rule deprecation docs (#20050) (Josh Goldberg ✨)
  • 6ad8973 docs: update --no-ignore and --ignore-pattern documentation (#20036) (Francesco Trotta)
  • 8033b19 docs: add documentation for --no-config-lookup (#20033) (Francesco Trotta)

Chores

  • da87f2f chore: upgrade @​eslint/js@​9.35.0 (#20077) (Milos Djermanovic)
  • af2a087 chore: package.json update for @​eslint/js release (Jenkins)
  • 7055764 test: remove tests/lib/eslint/eslint.config.js (#20065) (Milos Djermanovic)
  • 84ffb96 chore: update @eslint-community/eslint-utils (#20069) (Francesco Trotta)
  • d5ef939 refactor: remove deprecated context.parserOptions usage across rules (#20060) (sethamus)
  • 1b3881d chore: remove redundant word (#20058) (pxwanglu)
Changelog

Sourced from eslint's changelog.

v9.35.0 - September 5, 2025

  • da87f2f chore: upgrade @​eslint/js@​9.35.0 (#20077) (Milos Djermanovic)
  • af2a087 chore: package.json update for @​eslint/js release (Jenkins)
  • d265515 docs: improve phrasing - "if" → "even if" from getting-started section (#20074) (jjangga0214)
  • 7055764 test: remove tests/lib/eslint/eslint.config.js (#20065) (Milos Djermanovic)
  • 10e7ae2 fix: update uncloneable options error message (#20059) (soda-sorcery)
  • 42761fa feat: implement suggestions for no-empty-function (#20057) (jaymarvelz)
  • 102f444 feat: implement suggestions for no-empty-static-block (#20056) (jaymarvelz)
  • 84ffb96 chore: update @eslint-community/eslint-utils (#20069) (Francesco Trotta)
  • a355a0e docs: invert comparison logic for example in no-var doc page (#20064) (OTonGitHub)
  • e51ffff feat: add preserve-caught-error rule (#19913) (Amnish Singh Arora)
  • 5082fc2 docs: Update README (GitHub Actions Bot)
  • d5ef939 refactor: remove deprecated context.parserOptions usage across rules (#20060) (sethamus)
  • 1b3881d chore: remove redundant word (#20058) (pxwanglu)
  • 99cfd7e docs: add missing "the" in rule deprecation docs (#20050) (Josh Goldberg ✨)
  • bfa4601 fix: ignore empty switch statements with comments in no-empty rule (#20045) (jaymarvelz)
  • dfd11de fix: add before and after to test case types (#20049) (Francesco Trotta)
  • 6ad8973 docs: update --no-ignore and --ignore-pattern documentation (#20036) (Francesco Trotta)
  • dabbe95 fix: correct types for no-restricted-imports rule (#20034) (Milos Djermanovic)
  • 8033b19 docs: add documentation for --no-config-lookup (#20033) (Francesco Trotta)
  • ea789c7 fix: no-loss-of-precision false positive with uppercase exponent (#20032) (sethamus)
Commits

Updates lint-staged from 16.1.5 to 16.1.6

Release notes

Sourced from lint-staged's releases.

v16.1.6

Patch Changes

  • #1610 e93578e Thanks @​iiroj! - Try to improve terminating of subprocess of tasks by using SIGKILL, and only calling pidtree when the the main task process has a known pid.
Changelog

Sourced from lint-staged's changelog.

16.1.6

Patch Changes

  • #1610 e93578e Thanks @​iiroj! - Try to improve terminating of subprocess of tasks by using SIGKILL, and only calling pidtree when the the main task process has a known pid.
Commits
  • e2d0adf chore(changeset): release
  • 0629aaf build(deps): update dependencies
  • e93578e fix: kill subprocesses with "SIGKILL" and only if main process has a pid
  • See full diff in compare view

Updates package-versioner from 0.9.1 to 0.9.2

Release notes

Sourced from package-versioner's releases.

v0.9.2

Fixed:

Developer:

Full Changelog: goosewobbler/package-versioner@v0.9.1...v0.9.2

Commits
  • c57ca23 chore: release 0.9.2 [skip-ci]
  • b5438ac refactor: rework error log display, ensure handling for tag already exists ca...
  • 5f68218 fix: package targeting (#41)
  • See full diff in compare view

Updates @types/semver from 7.7.0 to 7.7.1

Commits

Updates p-limit from 7.1.0 to 7.1.1

Release notes

Sourced from p-limit's releases.

v7.1.1

  • Fix limitFunction type ccb80b2

sindresorhus/p-limit@v7.1.0...v7.1.1

Commits

Updates zod from 4.1.3 to 4.1.5

Release notes

Sourced from zod's releases.

v4.1.5

Commits:

  • 530415f927a8f7fa474c96b667efdad6e771ce4d Update docs
  • b7b081d5cfd6fc19aeb71f9dc1b07bb333c37f9d Update z.function() type to support array input (#5170)
  • 780cf57167cbf3902efab68f19fa21ca09cb9dd6 4.1.5

v4.1.4

Commits:

  • 3291c61fe4bc893901027ea5d50dfc6274e49caa fix(v4): toJSONSchema - wrong tuple with null output when targeting openapi-3.0 (#5156)
  • 23f41c7e0af107026bb1732af6b4c368d82be8d2 test(v4): toJSONSchema - use validateOpenAPI30Schema in all relevant scenarios (#5163)
  • 0a09fd21336202e50565a3e22baaab9a7047fcc9 Update installation instructions
  • 4ea5fec6988eb7260bc63e0eb8b4a6a0b238c414 4.1.4
Commits
  • 780cf57 4.1.5
  • b7b081d Update z.function() type to support array input (#5170)
  • 530415f Update docs
  • 4ea5fec 4.1.4
  • 0a09fd2 Update installation instructions
  • 23f41c7 test(v4): toJSONSchema - use validateOpenAPI30Schema in all relevant scenar...
  • 3291c61 fix(v4): toJSONSchema - wrong tuple with null output when targeting `openap...
  • See full diff in compare view

Updates devtools-protocol from 0.0.1505444 to 0.0.1511308

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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @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

…ectory with 13 updates

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

| Package | From | To |
| --- | --- | --- |
| [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `2.2.2` | `2.2.3` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `24.3.0` | `24.3.1` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `8.41.0` | `8.43.0` |
| [@vitest/eslint-plugin](https://github.com/vitest-dev/eslint-plugin-vitest) | `1.3.4` | `1.3.9` |
| [chalk](https://github.com/chalk/chalk) | `5.6.0` | `5.6.2` |
| [dotenv](https://github.com/motdotla/dotenv) | `17.2.1` | `17.2.2` |
| [eslint](https://github.com/eslint/eslint) | `9.34.0` | `9.35.0` |
| [lint-staged](https://github.com/lint-staged/lint-staged) | `16.1.5` | `16.1.6` |
| [package-versioner](https://github.com/goosewobbler/package-versioner) | `0.9.1` | `0.9.2` |
| [@types/semver](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/semver) | `7.7.0` | `7.7.1` |
| [p-limit](https://github.com/sindresorhus/p-limit) | `7.1.0` | `7.1.1` |
| [zod](https://github.com/colinhacks/zod) | `4.1.3` | `4.1.5` |
| [devtools-protocol](https://github.com/ChromeDevTools/devtools-protocol) | `0.0.1505444` | `0.0.1511308` |



Updates `@biomejs/biome` from 2.2.2 to 2.2.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/[email protected]/packages/@biomejs/biome)

Updates `@types/node` from 24.3.0 to 24.3.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.41.0 to 8.43.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.43.0/packages/parser)

Updates `@vitest/eslint-plugin` from 1.3.4 to 1.3.9
- [Release notes](https://github.com/vitest-dev/eslint-plugin-vitest/releases)
- [Commits](vitest-dev/eslint-plugin-vitest@v1.3.4...v1.3.9)

Updates `chalk` from 5.6.0 to 5.6.2
- [Release notes](https://github.com/chalk/chalk/releases)
- [Commits](chalk/chalk@v5.6.0...v5.6.2)

Updates `dotenv` from 17.2.1 to 17.2.2
- [Changelog](https://github.com/motdotla/dotenv/blob/master/CHANGELOG.md)
- [Commits](motdotla/dotenv@v17.2.1...v17.2.2)

Updates `eslint` from 9.34.0 to 9.35.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](eslint/eslint@v9.34.0...v9.35.0)

Updates `lint-staged` from 16.1.5 to 16.1.6
- [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.1.5...v16.1.6)

Updates `package-versioner` from 0.9.1 to 0.9.2
- [Release notes](https://github.com/goosewobbler/package-versioner/releases)
- [Changelog](https://github.com/goosewobbler/package-versioner/blob/main/docs/changelogs.md)
- [Commits](goosewobbler/package-versioner@v0.9.1...v0.9.2)

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

Updates `p-limit` from 7.1.0 to 7.1.1
- [Release notes](https://github.com/sindresorhus/p-limit/releases)
- [Commits](sindresorhus/p-limit@v7.1.0...v7.1.1)

Updates `zod` from 4.1.3 to 4.1.5
- [Release notes](https://github.com/colinhacks/zod/releases)
- [Commits](colinhacks/zod@v4.1.3...v4.1.5)

Updates `devtools-protocol` from 0.0.1505444 to 0.0.1511308
- [Commits](ChromeDevTools/devtools-protocol@v0.0.1505444...v0.0.1511308)

---
updated-dependencies:
- dependency-name: "@biomejs/biome"
  dependency-version: 2.2.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@types/node"
  dependency-version: 24.3.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@typescript-eslint/parser"
  dependency-version: 8.43.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: "@vitest/eslint-plugin"
  dependency-version: 1.3.9
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: chalk
  dependency-version: 5.6.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: dotenv
  dependency-version: 17.2.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: eslint
  dependency-version: 9.35.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: lint-staged
  dependency-version: 16.1.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: package-versioner
  dependency-version: 0.9.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: "@types/semver"
  dependency-version: 7.7.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: p-limit
  dependency-version: 7.1.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: zod
  dependency-version: 4.1.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: devtools-protocol
  dependency-version: 0.0.1511308
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added area:dependencies Updating dependencies track:main For the current stable version track labels Sep 8, 2025
Copy link
Contributor Author

dependabot bot commented on behalf of github Sep 15, 2025

Dependabot tried to update this pull request, but something went wrong. We're looking into it, but in the meantime you can retry the update by commenting @dependabot rebase.

1 similar comment
Copy link
Contributor Author

dependabot bot commented on behalf of github Sep 15, 2025

Dependabot tried to update this pull request, but something went wrong. We're looking into it, but in the meantime you can retry the update by commenting @dependabot rebase.

Copy link
Contributor Author

dependabot bot commented on behalf of github Sep 22, 2025

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

@dependabot dependabot bot closed this Sep 22, 2025
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/development-dependencies-cc9ea6ccd3 branch September 22, 2025 22:10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area:dependencies Updating dependencies track:main For the current stable version track
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants