Skip to content

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

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/npm-minor-patch
Open

fix(deps): update npm non-major dependencies#4945
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/npm-minor-patch

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Jun 3, 2026

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence Type Update Pending
@biomejs/biome (source) 2.4.152.4.16 age confidence devDependencies patch
@navikt/aksel-icons (source) ^8.10.5^8.11.1 age confidence dependencies minor
@navikt/aksel-icons (source) 8.10.58.11.1 age confidence dependencies minor
@navikt/aksel-icons (source) 8.10.58.11.1 age confidence devDependencies minor
@react-router/dev (source) 7.15.17.16.0 age confidence devDependencies minor 7.17.0
@react-router/express (source) 7.15.17.16.0 age confidence dependencies minor 7.17.0
@react-router/node (source) 7.15.17.16.0 age confidence dependencies minor 7.17.0
@rollup/plugin-commonjs (source) 29.0.229.0.3 age confidence devDependencies patch
@storybook/addon-a11y (source) 10.4.010.4.2 age confidence devDependencies patch
@storybook/addon-docs (source) 10.4.010.4.2 age confidence devDependencies patch
@storybook/addon-themes (source) 10.4.010.4.2 age confidence devDependencies patch
@storybook/addon-vitest (source) 10.4.010.4.2 age confidence devDependencies patch
@storybook/react-vite (source) 10.4.010.4.2 age confidence devDependencies patch
@tanstack/react-virtual (source) ^3.13.24^3.14.2 age confidence dependencies minor
@tanstack/react-virtual (source) 3.13.243.14.2 age confidence dependencies minor
@types/react (source) 19.2.1419.2.16 age confidence devDependencies patch 19.2.17
@types/react (source) 18.3.2818.3.30 age confidence devDependencies patch 18.3.31
@vitest/browser (source) 4.1.64.1.8 age confidence devDependencies patch
@vitest/browser-playwright (source) 4.1.64.1.8 age confidence devDependencies patch
@vitest/coverage-v8 (source) 4.1.64.1.8 age confidence devDependencies patch
morgan 1.10.11.11.0 age confidence dependencies minor
node (source) >=24.15.0>=24.16.0 age confidence engines minor
pnpm (source) 10.33.4+sha512.1c67b3b359b2d408119ba1ed289f34b8fc3c6873412bec6fd264fbdc82489e510fcbecb9ce9d22dae7f3b76269d8441046014bdca53b9979cd7a561ad631b80010.34.1 age confidence packageManager minor
postcss (source) 8.5.148.5.15 age confidence devDependencies patch
postcss (source) ^8.5.14^8.5.15 age confidence dependencies patch
react (source) 19.2.619.2.7 age confidence devDependencies patch
react (source) 19.2.619.2.7 age confidence dependencies patch
react (source) ^19.2.6^19.2.7 age confidence dependencies patch
react-dom (source) 19.2.619.2.7 age confidence devDependencies patch
react-dom (source) 19.2.619.2.7 age confidence dependencies patch
react-dom (source) ^19.2.6^19.2.7 age confidence dependencies patch
react-router (source) 7.15.17.16.0 age confidence dependencies minor 7.17.0
rolldown (source) 1.0.11.0.3 age confidence devDependencies patch 1.1.0
rollup (source) 4.60.44.61.0 age confidence devDependencies minor 4.61.1
storybook (source) 10.4.010.4.2 age confidence devDependencies patch
storybook-addon-pseudo-states (source) 10.4.010.4.2 age confidence devDependencies patch
style-dictionary (source) ^5.4.0^5.4.3 age confidence dependencies patch
tsx (source) 4.22.14.22.4 age confidence devDependencies patch
vite (source) 7.3.37.3.5 age confidence devDependencies patch
vitest (source) 4.1.64.1.8 age confidence devDependencies patch

Warning

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


Release Notes

biomejs/biome (@​biomejs/biome)

v2.4.16

Compare Source

Patch Changes
  • #​10329 ef764d5 Thanks @​Conaclos! - Fixed an issue where diagnostics showed an incorrect location in Astro files.

  • #​10363 50aa415 Thanks @​dyc3! - Fixed HTML formatting for a case where comments could cause the formatter to split up a closing tag, which would cause the resulting HTML to be syntactically invalid.

    Input:

    <span
      ><!-- 1
    --><span>a</span
      ><!-- 2
    --><span>b</span
      ><!-- 3
    --></span>

    Output:

      <span
    	  ><!-- 1
    - --> <span>a</span<!-- 2
    - --> ><span>b</span><!-- 3
    + --><span>a</span><!-- 2
    + --><span>b</span><!-- 3
      --></span
      >
  • #​10465 0c718da Thanks @​dfedoryshchev! - Fixed diagnostics emitted by the noUntrustedLicenses rule.

  • #​10358 05c2617 Thanks @​dyc3! - Fixed #​10356: biome rage --linter now displays rules enabled through linter domains in the enabled rules list.

  • #​10300 950247c Thanks @​dyc3! - Fixed #​10265: Svelte function bindings such as bind:value={get, set} are now parsed more precisely, so noCommaOperator won't emit false positives for that syntax anymore.

  • #​9786 e71f584 Thanks @​MeGaNeKoS! - Fixed #​8480: useDestructuring now provides variableDeclarator and assignmentExpression options to control which contexts enforce destructuring, matching ESLint's prefer-destructuring configuration. Both default to {array: true, object: true}. The diagnostic for object destructuring in assignment expressions now instructs users to wrap the assignment in parentheses.

  • #​10425 1948b72 Thanks @​sjh9714! - Fixed #​10244: The useOptionalChain rule now detects negated guard inequality chains like !foo || foo.bar !== "x".

  • #​10442 001f94f Thanks @​ematipico! - Fixed #​10411: noMisusedPromises no longer causes a stack overflow when a nested function returns an object with shorthand properties that shadow destructured variables from an outer scope.

  • #​10318 9b1577f Thanks @​dyc3! - Added support for formatter.trailingCommas in overrides. This option was previously available in the top-level formatter configuration but missing from formatter overrides.

  • #​10319 2e37709 Thanks @​dyc3! - Fixed Vue and Svelte formatting for standalone interpolations in inline elements. Biome now preserves existing newlines in cases like:

    - <span> {{ value }} </span>
    + <span>
    +   {{ value }}
    + </span>
  • #​10365 0a58eb0 Thanks @​Netail! - Fixed #​10361: noUnusedFunctionParameters now mentions the parameter name in the diagnostic.

  • #​10439 df6b867 Thanks @​denbezrukov! - Fixed CSS and SCSS formatting for comments around declaration colons so comments between property names, colons, and values stay at the same boundary as Prettier.

     .selector {
    -  color: /* red, */
    -    blue;
    +  color: /* red, */ blue;
     }
  • #​10344 b30208c Thanks @​siketyan! - Fixed #10123: Corrected the noReactNativeDeepImports source rule to point to the proper upstream rule, so users can migrate from the original rule correctly.

  • #​10328 b59133f Thanks @​dyc3! - Fixed #​10309: Biome no longer adds newlines to Astro frontmatter when linter or assist --write mode is enabled.

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

v8.11.1

Compare Source

v8.11.0

Compare Source

Minor Changes
  • Icons: New icon Newsletter and NewsletterFill (#​4887)

v8.10.6

Compare Source

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

v7.16.0

Compare Source

Minor Changes
  • Stabilize future.unstable_trailingSlashAwareDataRequests as future.v8_trailingSlashAwareDataRequests (#​15098)

    • The unstable flag is no longer supported and will error during config resolution
  • Log future flag warnings for upcoming React Router v8 flags (#​15029)

    • v8_middleware, v8_splitRouteModules, v8_viteEnvironmentApi, v8_passThroughRequests, v8_trailingSlashAwareDataRequests
Patch Changes
remix-run/react-router (@​react-router/express)

v7.16.0

Compare Source

Patch Changes
remix-run/react-router (@​react-router/node)

v7.16.0

Compare Source

Patch Changes
  • Honor Node writable backpressure in writeReadableStreamToWritable and writeAsyncIterableToWritable (#​15071)

    • Await 'drain' when writable.write() returns false instead of letting chunks accumulate in the writable's internal buffer.
    • Reject (rather than hang) if the writable errors or closes mid-stream.
  • Updated dependencies:

rollup/plugins (@​rollup/plugin-commonjs)

v29.0.3

2026-05-29

Bugfixes
storybookjs/storybook (@​storybook/addon-a11y)

v10.4.2

Compare Source

v10.4.1

Compare Source

TanStack/virtual (@​tanstack/react-virtual)

v3.14.2

Compare Source

Patch Changes

v3.14.1

Compare Source

Patch Changes

v3.14.0

Compare Source

Minor Changes
  • Add opt-in direct DOM updates for scroll positioning with directDomUpdates, directDomUpdatesMode, and containerRef. (#​1180)

v3.13.26

Compare Source

Patch Changes

v3.13.25

Compare Source

Patch Changes
  • Replace the useReducer(() => ({}), {}) force-rerender pattern with an (#​1168)
    incrementing number counter. Same semantics (every dispatch changes the
    reducer state, forcing a render); zero per-dispatch object allocation.
    Trivial individual cost, but eliminates one steady-state GC source on
    scroll-heavy apps.
  • Updated dependencies [99355ad, 99355ad, 99355ad, 99355ad, 99355ad, 99355ad, 99355ad]:
vitest-dev/vitest (@​vitest/browser)

v4.1.8

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v4.1.7

Compare Source

   🐞 Bug Fixes
    View changes on GitHub
expressjs/morgan (morgan)

v1.11.0

Compare Source

===================

  • add :pid token

Security Fix:

nodejs/node (node)

v24.16.0: 2026-05-21, Version 24.16.0 'Krypton' (LTS), @​aduh95

Compare Source

Notable Changes
  • [b267f6bca3] - (SEMVER-MINOR) crypto: implement randomUUIDv7() (nabeel378) #​62553
  • [ec2451b9cd] - (SEMVER-MINOR) debugger: add edit-free runtime expression probes to node inspect (Joyee Cheung) #​62713
  • [9705f628d9] - (SEMVER-MINOR) fs: add signal option to fs.stat() (Mert Can Altin) #​57775
  • [40ccfdecf9] - (SEMVER-MINOR) fs: expose frsize field in statfs (Jinho Jang) #​62277
  • [d7188af5c9] - (SEMVER-MINOR) http: harden ClientRequest options merge (Matteo Collina) #​63082
  • [aa1d8a9afc] - (SEMVER-MINOR) http: add req.signal to IncomingMessage (Akshat) #​62541
  • [6f37f7e240] - (SEMVER-MINOR) stream: propagate destruction in duplexPair (Ahmed Elhor) #​61098
  • [d14029be7f] - (SEMVER-MINOR) test_runner: support test order randomization (Pietro Marchini) #​61747
  • [d142c584cd] - (SEMVER-MINOR) test_runner: align mock timeout api (sangwook) #​62820
  • [01a9552585] - (SEMVER-MINOR) test_runner: add mock-timers support for AbortSignal.timeout (DeveloperViraj) #​60751
  • [00705a459a] - (SEMVER-MINOR) util: colorize text with hex colors (Guilherme Araújo) #​61556
Commits

Note

PR body was truncated to here.


Configuration

📅 Schedule: (in timezone Europe/Oslo)

  • Branch creation
    • "before 07:00 on Thursday"
  • 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.

@renovate renovate Bot requested review from Barsnes, eirikbacker and mimarz as code owners June 3, 2026 23:06
@changeset-bot
Copy link
Copy Markdown

changeset-bot Bot commented Jun 3, 2026

⚠️ No Changeset found

Latest commit: f33a3ab

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@github-actions
Copy link
Copy Markdown
Contributor

github-actions Bot commented Jun 3, 2026

Preview deployments for this pull request:

storybook - 6. Jun 2026 - 00:02

themebuilder - 6. Jun 2026 - 00:02

@renovate renovate Bot force-pushed the renovate/npm-minor-patch branch 7 times, most recently from 0386f9e to 10438c3 Compare June 5, 2026 17:44
@renovate renovate Bot force-pushed the renovate/npm-minor-patch branch from 10438c3 to f33a3ab Compare June 5, 2026 21:59
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.

0 participants