Skip to content

fix(deps): update npm non-major dependencies#4694

Merged
oddvernes merged 3 commits intomainfrom
renovate/npm-minor-patch
Apr 7, 2026
Merged

fix(deps): update npm non-major dependencies#4694
oddvernes merged 3 commits intomainfrom
renovate/npm-minor-patch

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate bot commented Apr 1, 2026

This PR contains the following updates:

Package Change Age Confidence
@biomejs/biome (source) 2.4.92.4.10 age confidence
@navikt/aksel-icons (source) ^8.8.0^8.9.0 age confidence
@react-router/dev (source) ^7.13.2^7.14.0 age confidence
@react-router/express (source) ^7.13.2^7.14.0 age confidence
@react-router/node (source) ^7.13.2^7.14.0 age confidence
@storybook/addon-a11y (source) ^10.3.3^10.3.4 age confidence
@storybook/addon-docs (source) ^10.3.3^10.3.4 age confidence
@storybook/addon-themes (source) ^10.3.3^10.3.4 age confidence
@storybook/addon-vitest (source) ^10.3.3^10.3.4 age confidence
@storybook/react-vite (source) ^10.3.3^10.3.4 age confidence
@types/node (source) ^24.12.0^24.12.2 age confidence
chromatic (source) ^16.0.0^16.1.0 age confidence
cssnano ^7.1.3^7.1.4 age confidence
express-rate-limit ^8.3.1^8.3.2 age confidence
invokers-polyfill ^1.0.1^1.0.2 age confidence
isbot (source) ^5.1.36^5.1.37 age confidence
playwright (source) ^1.58.2^1.59.1 age confidence
react-i18next ^17.0.0^17.0.2 age confidence
react-router (source) ^7.13.2^7.14.0 age confidence
rollup (source) ^4.60.0^4.60.1 age confidence
storybook (source) ^10.3.3^10.3.4 age confidence
storybook-addon-pseudo-states (source) ^10.3.3^10.3.4 age confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

biomejs/biome (@​biomejs/biome)

v2.4.10

Compare Source

Patch Changes
  • #​8838 f3a6a6b Thanks @​baeseokjae! - Added new lint nursery rule noImpliedEval.

    The rule detects implied eval() usage through functions like setTimeout, setInterval, and setImmediate when called with string arguments.

    // Invalid
    setTimeout("alert('Hello');", 100);
    
    // Valid
    setTimeout(() => alert("Hello"), 100);
  • #​9320 93c3b6c Thanks @​taberoajorge! - Fixed #​7664: noUnusedVariables no longer reports false positives for TypeScript namespace declarations that participate in declaration merging with an exported or used value declaration (const, function, or class) of the same name. The reverse direction is also handled: a value declaration merged with an exported namespace is no longer flagged.

  • #​9630 1dd4a56 Thanks @​raashish1601! - Fixed #​9629: noNegationElse now keeps ternary branch comments attached to the correct branch when applying its fixer.

  • #​9216 04243b0 Thanks @​FrederickStempfle! - Fixed #​9061: noProcessEnv now also detects process.env when process is imported from the "process" or "node:process" modules.

    Previously, only the global process object was flagged:

    import process from "node:process";
    // This was not flagged, but now it is:
    console.log(process.env.NODE_ENV);
  • #​9692 61b7ec5 Thanks @​mkosei! - Fixed Svelte #each destructuring parsing and formatting for nested patterns such as [key, { a, b }].

  • #​9627 06a0f35 Thanks @​ematipico! - Fixed #​191: Improved the performance of how the Biome Language Server pulls code actions and diagnostics.

    Before, code actions were pulled and computed all at once in one request. This approach couldn't work in big files, and caused Biome to stale and have CPU usage spikes up to 100%.

    Now, code actions are pulled and computed lazily, and Biome won't choke anymore in big files.

  • #​9643 5bfee36 Thanks @​dyc3! - Fixed #​9347: useVueValidVBind no longer reports valid object bindings like v-bind="props".

  • #​9627 06a0f35 Thanks @​ematipico! - Fixed assist diagnostics being invisible when using --diagnostic-level=error. Enforced assist violations (e.g. useSortedKeys) were filtered out before being promoted to errors, causing biome check to incorrectly return success.

  • #​9695 9856a87 Thanks @​dyc3! - Added the new nursery rule noUnsafePlusOperands, which reports + and += operations that use object-like, symbol, unknown, or never operands, or that mix number with bigint.

  • #​9627 06a0f35 Thanks @​ematipico! - Fixed duplicate parse errors in check and ci output. When a file had syntax errors, the same parse error was printed twice and the error count was inflated.

  • #​9627 06a0f35 Thanks @​ematipico! - Improved the performance of the commands lint and check when they are called with --write.

  • #​9627 06a0f35 Thanks @​ematipico! - Fixed --diagnostic-level not fully filtering diagnostics. Setting --diagnostic-level=error now correctly excludes warnings and infos from both the output and the summary counts.

  • #​9623 13b3261 Thanks @​ematipico! - Fixed #​9258: --skip no longer causes suppressions/unused warnings for suppression comments targeting skipped rules or domains.

  • #​9631 599dd04 Thanks @​raashish1601! - Fixed #​9625: experimentalEmbeddedSnippetsEnabled no longer crashes when a file mixes formatable CSS-in-JS templates with tagged templates that the embedded formatter can't currently delegate, such as a styled-components interpolation returning `css```.

navikt/aksel (@​navikt/aksel-icons)

v8.9.0

Compare Source

remix-run/react-router (@​react-router/dev)

v7.14.0

Compare Source

Minor Changes
Patch Changes
  • support for prerendering multiple server bundles with v8_viteEnvironmentApi (#​14921)

  • rsc framework mode prerender / spa mode support (#​14907)

  • UNSTABLE RSC FRAMEWORK MODE BREAKING CHANGE - Existing route module exports remain unchanged from stable v7 non-RSC mode, but new exports are added for RSC mode. If you want to use RSC features, you will need to update your route modules to export the new annotations. (#​14901)

    If you are using RSC framework mode currently, you will need to update your route modules to the new conventions. The following route module components have their own mutually exclusive server component counterparts:

    Server Component Export Client Component
    ServerComponent default
    ServerErrorBoundary ErrorBoundary
    ServerLayout Layout
    ServerHydrateFallback HydrateFallback

    If you were previously exporting a ServerComponent, your ErrorBoundary, Layout, and HydrateFallback were also server components. If you want to keep those as server components, you can rename them and prefix them with Server. If you were previously importing the implementations of those components from a client module, you can simply inline them.

    Example:

    Before

    import { ErrorBoundary as ClientErrorBoundary } from "./client";
    
    export function ServerComponent() {
      // ...
    }
    
    export function ErrorBoundary() {
      return <ClientErrorBoundary />;
    }
    
    export function Layout() {
      // ...
    }
    
    export function HydrateFallback() {
      // ...
    }

    After

    export function ServerComponent() {
      // ...
    }
    
    export function ErrorBoundary() {
      // previous implementation of ClientErrorBoundary, this is now a client component
    }
    
    export function ServerLayout() {
      // rename previous Layout export to ServerLayout to make it a server component
    }
    
    export function ServerHydrateFallback() {
      // rename previous HydrateFallback export to ServerHydrateFallback to make it a server component
    }
  • update the reveal command to support rsc for entry.client, entry.rsc, entry.ssr (#​14904)

  • Updated dependencies:

    • react-router@7.14.0
    • @react-router/node@7.14.0
    • @react-router/serve@7.14.0
remix-run/react-router (@​react-router/express)

v7.14.0

Compare Source

Patch Changes
  • Updated dependencies:
    • react-router@7.14.0
    • @react-router/node@7.14.0
remix-run/react-router (@​react-router/node)

v7.14.0

Compare Source

Patch Changes
  • Updated dependencies:
    • react-router@7.14.0
storybookjs/storybook (@​storybook/addon-a11y)

v10.3.4

Compare Source

chromaui/chromatic-cli (chromatic)

v16.1.0

Compare Source

🚀 Enhancement
🐛 Bug Fix
Authors: 2

cssnano/cssnano (cssnano)

v7.1.4: v7.1.4

Compare Source

Bug Fixes

Update color conversion library to @​colordx/core to fix rounding errors in color conversions #​1755

express-rate-limit/express-rate-limit (express-rate-limit)

v8.3.2

Compare Source

You can view the changelog here.

keithamus/invokers-polyfill (invokers-polyfill)

v1.0.2

Compare Source

What's Changed

New Contributors

Full Changelog: keithamus/invokers-polyfill@v1.0.1...v1.0.2

omrilotan/isbot (isbot)

v5.1.37

Compare Source

  • Better checking for non empty strings in the interface functions
  • [Internal] Build with tsup
microsoft/playwright (playwright)

v1.59.1

Compare Source

v1.59.0

Compare Source

i18next/react-i18next (react-i18next)

v17.0.2

Compare Source

  • fix(types): values prop on <Trans /> now only requires interpolation variables for the specific i18nKey, not all variables in the namespace 1913
remix-run/react-router (react-router)

v7.14.0

Compare Source

Patch Changes
  • UNSTABLE RSC FRAMEWORK MODE BREAKING CHANGE - Existing route module exports remain unchanged from stable v7 non-RSC mode, but new exports are added for RSC mode. If you want to use RSC features, you will need to update your route modules to export the new annotations. (#​14901)

    If you are using RSC framework mode currently, you will need to update your route modules to the new conventions. The following route module components have their own mutually exclusive server component counterparts:

    Server Component Export Client Component
    ServerComponent default
    ServerErrorBoundary ErrorBoundary
    ServerLayout Layout
    ServerHydrateFallback HydrateFallback

    If you were previously exporting a ServerComponent, your ErrorBoundary, Layout, and HydrateFallback were also server components. If you want to keep those as server components, you can rename them and prefix them with Server. If you were previously importing the implementations of those components from a client module, you can simply inline them.

    Example:

    Before

    import { ErrorBoundary as ClientErrorBoundary } from "./client";
    
    export function ServerComponent() {
      // ...
    }
    
    export function ErrorBoundary() {
      return <ClientErrorBoundary />;
    }
    
    export function Layout() {
      // ...
    }
    
    export function HydrateFallback() {
      // ...
    }

    After

    export function ServerComponent() {
      // ...
    }
    
    export function ErrorBoundary() {
      // previous implementation of ClientErrorBoundary, this is now a client component
    }
    
    export function ServerLayout() {
      // rename previous Layout export to ServerLayout to make it a server component
    }
    
    export function ServerHydrateFallback() {
      // rename previous HydrateFallback export to ServerHydrateFallback to make it a server component
    }
  • rsc Link prefetch (#​14902)

  • Remove recursion from turbo-stream v2 allowing for encoding / decoding of massive payloads. (#​14838)

  • encodeViaTurboStream leaked memory via unremoved AbortSignal listener (#​14900)

rollup/rollup (rollup)

v4.60.1

Compare Source

2026-03-30

Bug Fixes
  • Resolve a situation where side effect imports could be dropped due to a caching issue (#​6286)
Pull Requests

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.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@changeset-bot
Copy link
Copy Markdown

changeset-bot bot commented Apr 1, 2026

🦋 Changeset detected

Latest commit: ec14880

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 5 packages
Name Type
@digdir/designsystemet Patch
@digdir/designsystemet-css Patch
@digdir/designsystemet-react Patch
@digdir/designsystemet-web Patch
@digdir/designsystemet-types Patch

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

@github-actions
Copy link
Copy Markdown
Contributor

github-actions bot commented Apr 1, 2026

Preview deployments for this pull request:

storybook - 7. Apr 2026 - 07:31

themebuilder - 7. Apr 2026 - 07:31

www - 7. Apr 2026 - 07:38

@renovate renovate bot force-pushed the renovate/npm-minor-patch branch 12 times, most recently from b0a1113 to 538345a Compare April 6, 2026 13:43
@renovate renovate bot force-pushed the renovate/npm-minor-patch branch from 538345a to 35ad0eb Compare April 7, 2026 05:21
Copy link
Copy Markdown
Member

@Barsnes Barsnes left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good to me

@oddvernes oddvernes merged commit bb600db into main Apr 7, 2026
25 checks passed
@oddvernes oddvernes deleted the renovate/npm-minor-patch branch April 7, 2026 07:24
@github-actions github-actions bot mentioned this pull request Apr 7, 2026
@mimarz mimarz restored the renovate/npm-minor-patch branch April 8, 2026 12:23
@mimarz mimarz deleted the renovate/npm-minor-patch branch April 8, 2026 12:26
@mimarz mimarz restored the renovate/npm-minor-patch branch April 8, 2026 12:34
@mimarz mimarz deleted the renovate/npm-minor-patch branch April 10, 2026 18:24
mimarz added a commit that referenced this pull request Apr 13, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants