Skip to content

fix(npm): bump the all-version-updates group across 1 directory with 36 updates#143

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/all-version-updates-89f478a9ba
Closed

fix(npm): bump the all-version-updates group across 1 directory with 36 updates#143
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/all-version-updates-89f478a9ba

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Feb 23, 2026

Bumps the all-version-updates group with 35 updates in the / directory:

Package From To
d3-format 3.1.0 3.1.2
p-limit 6.2.0 7.3.0
p-queue 8.1.1 9.1.0
zustand 5.0.9 5.0.11
@chromatic-com/storybook 5.0.0 5.0.1
@eslint/js 9.39.1 10.0.1
@react-three/fiber 9.4.2 9.5.0
@storybook/addon-docs 10.1.11 10.2.8
@storybook/react 10.1.11 10.2.8
@storybook/react-vite 10.1.11 10.2.8
@types/node 22.19.2 25.2.3
@types/proj4 2.5.6 2.19.0
@types/rbush 3.0.4 4.0.0
@typescript-eslint/eslint-plugin 8.49.0 8.55.0
@typescript-eslint/parser 8.49.0 8.55.0
@vitejs/plugin-react 4.7.0 5.1.4
@vitest/coverage-v8 3.2.4 4.0.18
@vitest/ui 3.2.4 4.0.18
eslint 9.39.1 10.0.0
eslint-plugin-react-hooks 5.2.0 7.0.1
eslint-plugin-react-refresh 0.4.24 0.5.0
eslint-plugin-storybook 10.1.11 10.2.8
globals 15.15.0 17.3.0
react 19.2.1 19.2.4
@types/react 19.2.7 19.2.14
react-dom 19.2.1 19.2.4
rimraf 6.1.2 6.1.3
sass 1.95.0 1.97.3
typedoc 0.27.9 0.28.17
typescript 5.8.3 5.9.3
typescript-eslint 8.49.0 8.55.0
vite 6.4.1 7.3.1
vite-plugin-externalize-deps 0.9.0 0.10.0
vite-plugin-static-copy 2.3.2 3.2.0
vitest 3.2.4 4.0.18

Updates d3-format from 3.1.0 to 3.1.2

Release notes

Sourced from d3-format's releases.

v3.1.2

  • Avoid use of optional chaining to retain ES2019 compatibility. #149

v3.1.1

  • Fix handling of parens with formatPrefix. #134 #135 #142 Thanks, @​GlenKelley!
  • Fix precisionFixed, precisionRound, and precisionPrefix to return NaN when step is zero. #147
  • Fix the s format to not sometimes apply an erroneous suffix to NaN or ±Infinity. #147
  • The r format now formats zero as 0 instead of 0.0. #147
  • Upgrade ESLint, Vitest, etc.
Commits
Maintainer changes

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


Updates p-limit from 6.2.0 to 7.3.0

Release notes

Sourced from p-limit's releases.

v7.3.0

  • Add rejectOnClear option 8907801
  • Support options object in pLimit() 870db0f

sindresorhus/p-limit@v7.2.0...v7.3.0

v7.2.0

  • Make .map() method accept an iterable, not just array (#98) d76231b

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

v7.1.1

  • Fix limitFunction type ccb80b2

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

v7.1.0

  • Add index parameter to map() method 2aeffd4

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

v7.0.0

Breaking

  • Require Node.js 20 78b81a5
  • activeCount now increments when tasks actually start running (more intuitive) rather than when queued. This means:
    • activeCount reflects truly active/running promises
    • pendingCount more accurately represents waiting

Improvements

  • Add .map convenience method 86a5d73
  • Improve performance (#93) be1965b

sindresorhus/p-limit@v6.2.0...v7.0.0

Commits
  • 886bda5 7.3.0
  • 8907801 Add rejectOnClear option
  • ce9d71c Add test for shared context provider pattern
  • 24503f9 Document recursive limiter deadlocks
  • 9bce97a Add recipes documentation
  • 870db0f Support options object in pLimit()
  • 1fb1407 Fix benchmarks
  • 7bdd25c 7.2.0
  • d76231b Make .map() method accept an iterable, not just array (#98)
  • 9da5934 Use native Node.js timers instead of delay package in tests
  • Additional commits viewable in compare view

Updates p-queue from 8.1.1 to 9.1.0

Release notes

Sourced from p-queue's releases.

v9.1.0

  • Add strict option for sliding window rate limiting 03b8156

sindresorhus/p-queue@v9.0.1...v9.1.0

v9.0.1

  • Fix: Remove abort listener when operation completes (#235) e9074f0

sindresorhus/p-queue@v9.0.0...v9.0.1

v9.0.0

Breaking

  • Require Node.js 20 b2600d5
  • Remove throwOnTimeout option - timeouts now always throw e48716f
    • It was a mistake to not throw on timeouts and the option made it complicated to handle types.
    • If you really need the old behavior back:
       const result = await queue.add(fn).catch(error => {
         if (error instanceof TimeoutError) {
         	return undefined;
         }
      throw error;
      });

Improvements

Fixes

  • Fix stack overflow with many aborted tasks 81cbae2
  • Fix interval cap race condition with high concurrency 7fea658

... (truncated)

Commits

Updates zustand from 5.0.9 to 5.0.11

Release notes

Sourced from zustand's releases.

v5.0.11

This release includes small improvements in middleware thanks to contributors.

What's Changed

New Contributors

Full Changelog: pmndrs/zustand@v5.0.10...v5.0.11

v5.0.10

This version includes a fix to the persist middleware for an edge case.

What's Changed

New Contributors

Full Changelog: pmndrs/zustand@v5.0.9...v5.0.10

Commits
  • 99379a6 5.0.11
  • c81b4eb chore(deps): update dev dependencies (#3375)
  • 3871d53 fix(immer): Proper typing for immer middleware in combination with slices (#...
  • 9b505ac fix(persist): use window.localStorage as default storage reference (#3367)
  • 267a57c Update code block in tutorial-tic-tac-toe.md (#3373)
  • 6813f7b docs: remove stray Russian comment in beginner-typescript guide (#3369)
  • d9ea330 docs(testing): fix undefined counterStoreRef variable (#3368)
  • 6e026d7 chore: improve typing in devtools middleware (#3362)
  • e7d4593 Revert "chore(deps): bump pmndrs/docs/.github/workflows/build.yml from 2 to 3...
  • 0f49ad8 chore(deps): bump pmndrs/docs/.github/workflows/build.yml from 2 to 3 (#3364)
  • Additional commits viewable in compare view

Updates @chromatic-com/storybook from 5.0.0 to 5.0.1

Release notes

Sourced from @​chromatic-com/storybook's releases.

v5.0.1

🐛 Bug Fix

Authors: 5

v5.0.1-next.1

🐛 Bug Fix

Authors: 3

v5.0.1-next.0

🐛 Bug Fix

Authors: 3

Changelog

Sourced from @​chromatic-com/storybook's changelog.

v5.0.1 (Mon Feb 09 2026)

🐛 Bug Fix

Authors: 5


Commits
  • c5d8301 Bump version to: 5.0.1 [skip ci]
  • 7adcd75 Update CHANGELOG.md [skip ci]
  • 9238fc1 Merge pull request #408 from chromaui/next
  • 01b63e6 Merge pull request #404 from jthrilly/feat/csf-next-compatibility
  • b723efb Generate type defintions for index.js
  • 22cde2d Add Params to CSF Factory function
  • f928ef3 Merge branch 'next' into feat/csf-next-compatibility
  • 6788248 Merge pull request #406 from chromaui/norbert/upgrades
  • 8cd98a5 Merge branch 'next' into norbert/upgrades
  • 07bf467 Merge pull request #407 from chromaui/main
  • Additional commits viewable in compare view

Updates @eslint/js from 9.39.1 to 10.0.1

Release notes

Sourced from @​eslint/js's releases.

v10.0.1

Bug Fixes

  • c87d5bd fix: update eslint (#20531) (renovate[bot])
  • d841001 fix: update minimatch to 10.2.1 to address security vulnerabilities (#20519) (루밀LuMir)
  • 04c2147 fix: update error message for unused suppressions (#20496) (fnx)
  • 38b089c fix: update dependency @​eslint/config-array to ^0.23.1 (#20484) (renovate[bot])

Documentation

  • 5b3dbce docs: add AI acknowledgement section to templates (#20431) (루밀LuMir)
  • 6f23076 docs: toggle nav in no-JS mode (#20476) (Tanuj Kanti)
  • b69cfb3 docs: Update README (GitHub Actions Bot)

Chores

  • e5c281f chore: updates for v9.39.3 release (Jenkins)
  • 8c3832a chore: update @​typescript-eslint/parser to ^8.56.0 (#20514) (Milos Djermanovic)
  • 8330d23 test: add tests for config-api (#20493) (Milos Djermanovic)
  • 37d6e91 chore: remove eslint v10 prereleases from eslint-config-eslint deps (#20494) (Milos Djermanovic)
  • da7cd0e refactor: cleanup error message templates (#20479) (Francesco Trotta)
  • 84fb885 chore: package.json update for @​eslint/js release (Jenkins)
  • 1f66734 chore: add eslint to peerDependencies of @eslint/js (#20467) (Milos Djermanovic)

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)

... (truncated)

Commits
  • 84fb885 chore: package.json update for @​eslint/js release
  • 1f66734 chore: add eslint to peerDependencies of @eslint/js (#20467)
  • f3fbc2f chore: set @eslint/js version to 10.0.0 to skip releasing it (#20466)
  • b4b3127 chore: package.json update for @​eslint/js release
  • 0b14059 chore: package.json update for @​eslint/js release
  • fa31a60 feat!: add name to configs (#20015)
  • 1e2cad5 chore: package.json update for @​eslint/js release
  • 454a292 feat!: update eslint:recommended configuration (#20210)
  • c6358c3 feat!: Require Node.js ^20.19.0 || ^22.13.0 || >=24 (#20160)
  • See full diff in compare view

Updates @react-three/fiber from 9.4.2 to 9.5.0

Release notes

Sourced from @​react-three/fiber's releases.

v9.5.0

After a bit of research and development, R3F is now compatible with React 19.2, including the Activity feature!

Why did this take some effort, you might wonder? When React bumped to version 19.2.x, they also bumped the internal reconciler up a version which was not backwards compatible with 19.1.x. This put us in an awkward position of either making a breaking change in the middle of R3F v9, bump to another major just because of an internal detail from React or get creative. We chose to get creative and R3F is compatible with all versions of React between 19.0 and 19.2. The downside is we had to bundle the reconciler with R3F, but react-dom already does this so for now it is the best solution available.

Forcing breaking changes on libraries is likely not what the React teams intended so we will be working with them to try to avoid this in the future.

Happy coding.

What's Changed

Full Changelog: pmndrs/react-three-fiber@v9.4.2...v9.5.0

Commits
  • f51e57e Merge pull request #3606 from pmndrs/feat/react-19-2-vendor-reconciler
  • 9f25968 chore(tests): test dev and prod reconciler bundles
  • 08caa0e chore: restrict peer dep range
  • 48201ea chore(tests): add 19.2 hook smoke test
  • a561419 chore: restore changeset
  • 2e356a3 chore: retry
  • a71f6aa experiment(CI): rollback changes (fail alternate job)
  • f67bb6b experiment(CI): add placeholder 19.2 test
  • a0180ff chore(CI): configure React testing matrix
  • d9b0d40 chore: unpin reconciler types
  • Additional commits viewable in compare view

Updates @storybook/addon-docs from 10.1.11 to 10.2.8

Release notes

Sourced from @​storybook/addon-docs's releases.

v10.2.8

10.2.8

v10.2.7

10.2.7

v10.2.6

10.2.6

v10.2.5

10.2.5

v10.2.4

10.2.4

v10.2.3

10.2.3

  • Addon-Vitest: Normalize Windows paths in addon-vitest automigration - #33340, thanks @​tanujbhaud!
  • Core: Fix `previewHref` when current path does not end with a slash - #33647, thanks @​ghengeveld!

v10.2.2

... (truncated)

Changelog

Sourced from @​storybook/addon-docs's changelog.

10.2.8

10.2.7

10.2.6

10.2.5

10.2.4

10.2.3

  • Addon-Vitest: Normalize Windows paths in addon-vitest automigration - #33340, thanks @​tanujbhaud!
  • Core: Fix previewHref when current path does not end with a slash - #33647, thanks @​ghengeveld!

10.2.2

... (truncated)

Commits
  • 719b6ca Bump version from "10.2.7" to "10.2.8" [skip ci]
  • 8d687ec Bump version from "10.2.6" to "10.2.7" [skip ci]
  • cc0d1f9 Bump version from "10.2.5" to "10.2.6" [skip ci]
  • 1053c2a Bump version from "10.2.4" to "10.2.5" [skip ci]
  • 8e2b782 Bump version from "10.2.3" to "10.2.4" [skip ci]
  • d959d6c Bump version from "10.2.2" to "10.2.3" [skip ci]
  • e367333 Bump version from "10.2.1" to "10.2.2" [skip ci]
  • acf2b44 Bump version from "10.2.0" to "10.2.1" [skip ci]
  • a674af8 Bump version from "10.2.0-beta.5" to "10.2.0" [skip ci]
  • 6818f34 Bump version from "10.2.0-beta.4" to "10.2.0-beta.5" [skip ci]
  • Additional commits viewable in compare view

Updates @storybook/react from 10.1.11 to 10.2.8

Release notes

Sourced from @​storybook/react's releases.

v10.2.8

10.2.8

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Feb 23, 2026
@dependabot dependabot bot requested a review from a team as a code owner February 23, 2026 02:19
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Feb 23, 2026
…36 updates

Bumps the all-version-updates group with 35 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [d3-format](https://github.com/d3/d3-format) | `3.1.0` | `3.1.2` |
| [p-limit](https://github.com/sindresorhus/p-limit) | `6.2.0` | `7.3.0` |
| [p-queue](https://github.com/sindresorhus/p-queue) | `8.1.1` | `9.1.0` |
| [zustand](https://github.com/pmndrs/zustand) | `5.0.9` | `5.0.11` |
| [@chromatic-com/storybook](https://github.com/chromaui/addon-visual-tests) | `5.0.0` | `5.0.1` |
| [@eslint/js](https://github.com/eslint/eslint/tree/HEAD/packages/js) | `9.39.1` | `10.0.1` |
| [@react-three/fiber](https://github.com/pmndrs/react-three-fiber) | `9.4.2` | `9.5.0` |
| [@storybook/addon-docs](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/docs) | `10.1.11` | `10.2.8` |
| [@storybook/react](https://github.com/storybookjs/storybook/tree/HEAD/code/renderers/react) | `10.1.11` | `10.2.8` |
| [@storybook/react-vite](https://github.com/storybookjs/storybook/tree/HEAD/code/frameworks/react-vite) | `10.1.11` | `10.2.8` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.19.2` | `25.2.3` |
| [@types/proj4](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/proj4) | `2.5.6` | `2.19.0` |
| [@types/rbush](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/rbush) | `3.0.4` | `4.0.0` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `8.49.0` | `8.55.0` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `8.49.0` | `8.55.0` |
| [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react) | `4.7.0` | `5.1.4` |
| [@vitest/coverage-v8](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8) | `3.2.4` | `4.0.18` |
| [@vitest/ui](https://github.com/vitest-dev/vitest/tree/HEAD/packages/ui) | `3.2.4` | `4.0.18` |
| [eslint](https://github.com/eslint/eslint) | `9.39.1` | `10.0.0` |
| [eslint-plugin-react-hooks](https://github.com/facebook/react/tree/HEAD/packages/eslint-plugin-react-hooks) | `5.2.0` | `7.0.1` |
| [eslint-plugin-react-refresh](https://github.com/ArnaudBarre/eslint-plugin-react-refresh) | `0.4.24` | `0.5.0` |
| [eslint-plugin-storybook](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/eslint-plugin) | `10.1.11` | `10.2.8` |
| [globals](https://github.com/sindresorhus/globals) | `15.15.0` | `17.3.0` |
| [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.1` | `19.2.4` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.2.7` | `19.2.14` |
| [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.2.1` | `19.2.4` |
| [rimraf](https://github.com/isaacs/rimraf) | `6.1.2` | `6.1.3` |
| [sass](https://github.com/sass/dart-sass) | `1.95.0` | `1.97.3` |
| [typedoc](https://github.com/TypeStrong/TypeDoc) | `0.27.9` | `0.28.17` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.8.3` | `5.9.3` |
| [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.49.0` | `8.55.0` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `6.4.1` | `7.3.1` |
| [vite-plugin-externalize-deps](https://github.com/voracious/vite-plugin-externalize-deps) | `0.9.0` | `0.10.0` |
| [vite-plugin-static-copy](https://github.com/sapphi-red/vite-plugin-static-copy) | `2.3.2` | `3.2.0` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `3.2.4` | `4.0.18` |



Updates `d3-format` from 3.1.0 to 3.1.2
- [Release notes](https://github.com/d3/d3-format/releases)
- [Commits](d3/d3-format@v3.1.0...v3.1.2)

Updates `p-limit` from 6.2.0 to 7.3.0
- [Release notes](https://github.com/sindresorhus/p-limit/releases)
- [Commits](sindresorhus/p-limit@v6.2.0...v7.3.0)

Updates `p-queue` from 8.1.1 to 9.1.0
- [Release notes](https://github.com/sindresorhus/p-queue/releases)
- [Commits](sindresorhus/p-queue@v8.1.1...v9.1.0)

Updates `zustand` from 5.0.9 to 5.0.11
- [Release notes](https://github.com/pmndrs/zustand/releases)
- [Commits](pmndrs/zustand@v5.0.9...v5.0.11)

Updates `@chromatic-com/storybook` from 5.0.0 to 5.0.1
- [Release notes](https://github.com/chromaui/addon-visual-tests/releases)
- [Changelog](https://github.com/chromaui/addon-visual-tests/blob/v5.0.1/CHANGELOG.md)
- [Commits](chromaui/addon-visual-tests@v5.0.0...v5.0.1)

Updates `@eslint/js` from 9.39.1 to 10.0.1
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](https://github.com/eslint/eslint/commits/v10.0.1/packages/js)

Updates `@react-three/fiber` from 9.4.2 to 9.5.0
- [Release notes](https://github.com/pmndrs/react-three-fiber/releases)
- [Commits](pmndrs/react-three-fiber@v9.4.2...v9.5.0)

Updates `@storybook/addon-docs` from 10.1.11 to 10.2.8
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v10.2.8/code/addons/docs)

Updates `@storybook/react` from 10.1.11 to 10.2.8
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v10.2.8/code/renderers/react)

Updates `@storybook/react-vite` from 10.1.11 to 10.2.8
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v10.2.8/code/frameworks/react-vite)

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

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

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

Updates `@typescript-eslint/eslint-plugin` from 8.49.0 to 8.55.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.55.0/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 8.49.0 to 8.55.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.55.0/packages/parser)

Updates `@vitejs/plugin-react` from 4.7.0 to 5.1.4
- [Release notes](https://github.com/vitejs/vite-plugin-react/releases)
- [Changelog](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite-plugin-react/commits/plugin-react@5.1.4/packages/plugin-react)

Updates `@vitest/coverage-v8` from 3.2.4 to 4.0.18
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.0.18/packages/coverage-v8)

Updates `@vitest/ui` from 3.2.4 to 4.0.18
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.0.18/packages/ui)

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

Updates `eslint-plugin-react-hooks` from 5.2.0 to 7.0.1
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/packages/eslint-plugin-react-hooks/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/HEAD/packages/eslint-plugin-react-hooks)

Updates `eslint-plugin-react-refresh` from 0.4.24 to 0.5.0
- [Release notes](https://github.com/ArnaudBarre/eslint-plugin-react-refresh/releases)
- [Changelog](https://github.com/ArnaudBarre/eslint-plugin-react-refresh/blob/main/CHANGELOG.md)
- [Commits](ArnaudBarre/eslint-plugin-react-refresh@v0.4.24...v0.5.0)

Updates `eslint-plugin-storybook` from 10.1.11 to 10.2.8
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v10.2.8/code/lib/eslint-plugin)

Updates `globals` from 15.15.0 to 17.3.0
- [Release notes](https://github.com/sindresorhus/globals/releases)
- [Commits](sindresorhus/globals@v15.15.0...v17.3.0)

Updates `react` from 19.2.1 to 19.2.4
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react)

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

Updates `react-dom` from 19.2.1 to 19.2.4
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react-dom)

Updates `rimraf` from 6.1.2 to 6.1.3
- [Changelog](https://github.com/isaacs/rimraf/blob/main/CHANGELOG.md)
- [Commits](isaacs/rimraf@v6.1.2...v6.1.3)

Updates `sass` from 1.95.0 to 1.97.3
- [Release notes](https://github.com/sass/dart-sass/releases)
- [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md)
- [Commits](sass/dart-sass@1.95.0...1.97.3)

Updates `storybook` from 10.1.11 to 10.2.10
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v10.2.10/code/core)

Updates `typedoc` from 0.27.9 to 0.28.17
- [Release notes](https://github.com/TypeStrong/TypeDoc/releases)
- [Changelog](https://github.com/TypeStrong/typedoc/blob/master/CHANGELOG.md)
- [Commits](TypeStrong/typedoc@v0.27.9...v0.28.17)

Updates `typescript` from 5.8.3 to 5.9.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Commits](microsoft/TypeScript@v5.8.3...v5.9.3)

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

Updates `vite` from 6.4.1 to 7.3.1
- [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.3.1/packages/vite)

Updates `vite-plugin-externalize-deps` from 0.9.0 to 0.10.0
- [Release notes](https://github.com/voracious/vite-plugin-externalize-deps/releases)
- [Commits](davidmyersdev/vite-plugin-externalize-deps@v0.9.0...v0.10.0)

Updates `vite-plugin-static-copy` from 2.3.2 to 3.2.0
- [Release notes](https://github.com/sapphi-red/vite-plugin-static-copy/releases)
- [Changelog](https://github.com/sapphi-red/vite-plugin-static-copy/blob/main/CHANGELOG.md)
- [Commits](https://github.com/sapphi-red/vite-plugin-static-copy/compare/vite-plugin-static-copy@2.3.2...vite-plugin-static-copy@3.2.0)

Updates `vitest` from 3.2.4 to 4.0.18
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.0.18/packages/vitest)

---
updated-dependencies:
- dependency-name: d3-format
  dependency-version: 3.1.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-version-updates
- dependency-name: p-limit
  dependency-version: 7.3.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-version-updates
- dependency-name: p-queue
  dependency-version: 9.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-version-updates
- dependency-name: zustand
  dependency-version: 5.0.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-version-updates
- dependency-name: "@chromatic-com/storybook"
  dependency-version: 5.0.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-version-updates
- dependency-name: "@eslint/js"
  dependency-version: 10.0.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-version-updates
- dependency-name: "@react-three/fiber"
  dependency-version: 9.5.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-version-updates
- dependency-name: "@storybook/addon-docs"
  dependency-version: 10.2.8
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-version-updates
- dependency-name: "@storybook/react"
  dependency-version: 10.2.8
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-version-updates
- dependency-name: "@storybook/react-vite"
  dependency-version: 10.2.8
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-version-updates
- dependency-name: "@types/node"
  dependency-version: 25.2.3
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-version-updates
- dependency-name: "@types/proj4"
  dependency-version: 2.19.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-version-updates
- dependency-name: "@types/rbush"
  dependency-version: 4.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-version-updates
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-version: 8.55.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-version-updates
- dependency-name: "@typescript-eslint/parser"
  dependency-version: 8.55.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-version-updates
- dependency-name: "@vitejs/plugin-react"
  dependency-version: 5.1.4
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-version-updates
- dependency-name: "@vitest/coverage-v8"
  dependency-version: 4.0.18
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-version-updates
- dependency-name: "@vitest/ui"
  dependency-version: 4.0.18
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-version-updates
- dependency-name: eslint
  dependency-version: 10.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-version-updates
- dependency-name: eslint-plugin-react-hooks
  dependency-version: 7.0.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-version-updates
- dependency-name: eslint-plugin-react-refresh
  dependency-version: 0.5.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-version-updates
- dependency-name: eslint-plugin-storybook
  dependency-version: 10.2.8
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-version-updates
- dependency-name: globals
  dependency-version: 17.3.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-version-updates
- dependency-name: react
  dependency-version: 19.2.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-version-updates
- dependency-name: "@types/react"
  dependency-version: 19.2.14
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-version-updates
- dependency-name: react-dom
  dependency-version: 19.2.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-version-updates
- dependency-name: rimraf
  dependency-version: 6.1.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-version-updates
- dependency-name: sass
  dependency-version: 1.97.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-version-updates
- dependency-name: storybook
  dependency-version: 10.2.10
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-version-updates
- dependency-name: typedoc
  dependency-version: 0.28.17
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-version-updates
- dependency-name: typescript
  dependency-version: 5.9.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-version-updates
- dependency-name: typescript-eslint
  dependency-version: 8.55.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-version-updates
- dependency-name: vite
  dependency-version: 7.3.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-version-updates
- dependency-name: vite-plugin-externalize-deps
  dependency-version: 0.10.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-version-updates
- dependency-name: vite-plugin-static-copy
  dependency-version: 3.2.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-version-updates
- dependency-name: vitest
  dependency-version: 4.0.18
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-version-updates
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/all-version-updates-89f478a9ba branch from 1a0a1aa to 6f41f41 Compare March 2, 2026 08:37
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot bot commented on behalf of github Mar 2, 2026

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

@dependabot dependabot bot closed this Mar 2, 2026
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/all-version-updates-89f478a9ba branch March 2, 2026 09:11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants