Releases: code-forge-io/react-router-devtools
Release list
react-router-devtools@6.2.3
Patch Changes
-
a816df1: Stop emitting the
envFiledeprecation warning on Vite 8.The internal vite-node server passes
envFile: falsetocreateServer, which Vite 8 deprecated in favour ofenvDir: false. Every Vite 8 consumer therefore sawThe 'envFile' option is deprecated, please use 'envDir: false' instead.on startup, because the warning is emitted from a top-levelcreateServercall that no user config can reach. The key is now chosen from the installed Vite major, so Vite 8 getsenvDir: falsewhile the existing>=5peers keepenvFile: false.
react-router-devtools@6.2.2
Patch Changes
-
aae92e4: Fix
Cannot find package 'vite-node'(#261) and support React Router 8 / Vite 8.vite-nodeis imported at runtime by the Vite plugin but was only declared as adevDependency, so consumers relied on it being a phantom dependency of@react-router/dev@7. React Router 8 droppedvite-nodefrom its dependencies, which broke resolution for any project on RR8.vite-nodeis now a realdependency(^5.0.0 || ^6.0.0, covering both Vite 7 and Vite 8), and thevitepeer range was tidied to>=5.0.0so it explicitly admits Vite 8 alongside React Router's existing>=7.0.0peer range (which already admits v8).
v6.2.1
What's Changed
- Updated docs app name for deployments by @abrulic in #255
- FIx AST transform for aliased imports by @anpato in #251
- fix: add depth limit and cycle detection to convertBigIntToString by @stevan-borus in #250
- chore: changesets for v6.2.1 by @AlemTuzlak in #256
- 🚀 Release PR by @github-actions[bot] in #257
New Contributors
- @anpato made their first contribution in #251
- @stevan-borus made their first contribution in #250
Full Changelog: v6.2.0...v6.2.1
react-router-devtools@6.2.1
v6.2.0
Performance fixes
Huge improvements to performance, lowered the amount of time it takes to navigate between pages down from a few seconds to few hundred miliseconds.
What's Changed
- feat: improve perf by @AlemTuzlak in #246
Full Changelog: v6.1.0...v6.2.0
v6.1.0
v6.0.2
v6.0.1
What's Changed
- version bump by @AlemTuzlak in #240
- 🚀 Release PR by @github-actions[bot] in #241
Full Changelog: v6.0.0...v6.0.1
v6.0.0
What's Changed
- changed app_url for release by @abrulic in #232
- Feat/migrate to tanstack devtools by @AlemTuzlak in #236
- 🚀 Release PR by @github-actions[bot] in #237
Full Changelog: v5.1.6...v6.0.0
react-router-devtools@5.1.6
Patch Changes
- 1e6279f: update docs