fix(deps): update npm non-major dependencies#4147
Conversation
🦋 Changeset detectedLatest commit: a003d21 The changes in this PR will be included in the next version bump. This PR includes changesets to release 4 packages
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
|
Preview deployments for this pull request: storybook - themebuilder - www - |
|
The error seems to originate in Both addon-links and addon-docs are imported with the same name and this is why it fails.. So it is probably a vite issue? Edit: manually updating vite from 7.1.9 to 7.1.10 seems to have fixed it 💅 (by editing package.json, as |
Edited/Blocked NotificationRenovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR. You can manually request rebase by checking the rebase/retry box above. |
|
All seems good now |

This PR contains the following updates:
^1.117.1->^1.118.0^7.31.0->^7.32.1^7.9.3->^7.9.4^7.9.3->^7.9.4^7.9.3->^7.9.4^16.0.2->^16.0.3^22.18.8->^22.18.10^19.2.0->^19.2.2^18.3.25->^18.3.26^19.2.0->^19.2.1^25.5.3->^25.6.0^1.55.1->^1.56.010.18.0+sha512.e804f889f1cecc40d572db084eec3e4881739f8dec69c0ff10d2d1beff9a4e309383ba27b5b750059d7f4c149535b6cd0d2cb1ed3aeb739239a4284a68f40cfa->10.18.2^7.9.3->^7.9.4^7.9.3->^7.9.4^7.4.0->^7.4.2^5.1.0->^5.1.1^4.1.11->^4.1.12Warning
Some dependencies could not be looked up. Check the Dependency Dashboard for more information.
Release Notes
figma/plugin-typings (@figma/plugin-typings)
v1.118.0Compare Source
navikt/aksel (@navikt/aksel-icons)
v7.32.1Compare Source
v7.32.0Compare Source
Minor Changes
Icons: Updated
SignLanguageTwoHands-design. (#4115)Icons: 🎉 Added some new icons
ChairTable,Footprint,Lifebuoy,OpenBook,OpenMagazineandSlide. (#4115)remix-run/react-router (@react-router/dev)
v7.9.4Compare Source
Patch Changes
Update
valibotdependency to^1.1.0(#14379)New (unstable)
useRoutehook for accessing data from specific routes (#14407)For example, let's say you have an
adminroute somewhere in your app and you want any child routes ofadminto all have access to theloaderDataandactionDatafromadmin.You might even want to create a reusable widget that all of the routes nested under
admincould use:In framework mode,
useRouteknows all your app's routes and gives you TS errors when invalid route IDs are passed in:useRoutereturnsundefinedif the route is not part of the current page:Note: the
rootroute is the exception since it is guaranteed to be part of the current page.As a result,
useRoutenever returnsundefinedforroot.loaderDataandactionDataare marked as optional since they could be accessed before theactionis triggered or after theloaderthrew an error:If instead of a specific route, you wanted access to the current route's
loaderDataandactionData, you can calluseRoutewithout arguments:This usage is equivalent to calling
useLoaderDataanduseActionData, but consolidates all route data access into one hook:useRoute.Note: when calling
useRoute()(without a route ID), TS has no way to know which route is the current route.As a result,
loaderDataandactionDataare typed asunknown.If you want more type-safety, you can either narrow the type yourself with something like
zodor you can refactor your app to pass down typed props to yourAdminWidget:Updated dependencies:
react-router@7.9.4@react-router/node@7.9.4@react-router/serve@7.9.4remix-run/react-router (@react-router/node)
v7.9.4Compare Source
Patch Changes
react-router@7.9.4remix-run/react-router (@react-router/serve)
v7.9.4Compare Source
Patch Changes
react-router@7.9.4@react-router/node@7.9.4@react-router/express@7.9.4rollup/plugins (@rollup/plugin-node-resolve)
v16.0.32025-10-13
Bugfixes
i18next/i18next (i18next)
v25.6.0Compare Source
feat:
exists()method now respectsreturnObjectsoption - returnsfalsewhen accessing an object key withreturnObjects: false, enabling detection of object vs string keys 2359Note: This is a potential behavior change. If you were previously calling
exists()withreturnObjects: falseon object keys, those calls will now returnfalseinstead oftrue. This enables developers to detect whether a key points to an object or string value.microsoft/playwright (playwright)
v1.56.0Compare Source
pnpm/pnpm (pnpm)
v10.18.2Compare Source
Patch Changes
pnpm outdated --longshould work #10040.pnpm dlxshould request the full metadata of packages, whenminimumReleaseAgeis set #9963.EPIPEerrors when piping output to other commands #10027.v10.18.1Compare Source
Patch Changes
--lockfile-onlyis used #8320.pnpm setupcreates a command shim to the pnpm executable. This is needed to be able to runpnpm self-updateon Windows #5700.pnpm install, pnpm produced false positive warnings for "skip adding to the default catalog because it already exists". This warning now only prints when usingpnpm add --save-catalogas originally intended.remix-run/react-router (react-router)
v7.9.4Compare Source
Patch Changes
handle external redirects in from server actions (#14400)
New (unstable)
useRoutehook for accessing data from specific routes (#14407)For example, let's say you have an
adminroute somewhere in your app and you want any child routes ofadminto all have access to theloaderDataandactionDatafromadmin.You might even want to create a reusable widget that all of the routes nested under
admincould use:In framework mode,
useRouteknows all your app's routes and gives you TS errors when invalid route IDs are passed in:useRoutereturnsundefinedif the route is not part of the current page:Note: the
rootroute is the exception since it is guaranteed to be part of the current page.As a result,
useRoutenever returnsundefinedforroot.loaderDataandactionDataare marked as optional since they could be accessed before theactionis triggered or after theloaderthrew an error:If instead of a specific route, you wanted access to the current route's
loaderDataandactionData, you can calluseRoutewithout arguments:This usage is equivalent to calling
useLoaderDataanduseActionData, but consolidates all route data access into one hook:useRoute.Note: when calling
useRoute()(without a route ID), TS has no way to know which route is the current route.As a result,
loaderDataandactionDataare typed asunknown.If you want more type-safety, you can either narrow the type yourself with something like
zodor you can refactor your app to pass down typed props to yourAdminWidget:remix-run/react-router (react-router-dom)
v7.9.4Compare Source
Patch Changes
react-router@7.9.4sergiodxa/remix-i18next (remix-i18next)
v7.4.2Compare Source
What's Changed
New Features
Full Changelog: sergiodxa/remix-i18next@v7.4.1...v7.4.2
v7.4.1Compare Source
What's Changed
New Features
Other Changes
New Contributors
Full Changelog: sergiodxa/remix-i18next@v7.4.0...v7.4.1
colinhacks/zod (zod)
v4.1.12Compare Source
Configuration
📅 Schedule: Branch creation - "before 07:00 on Thursday" in timezone Europe/Oslo, Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.