Skip to content

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

Merged
Barsnes merged 2 commits intomainfrom
renovate/npm-minor-patch
Dec 18, 2025
Merged

fix(deps): update npm non-major dependencies#4336
Barsnes merged 2 commits intomainfrom
renovate/npm-minor-patch

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Dec 18, 2025

This PR contains the following updates:

Package Change Age Confidence
@navikt/aksel-icons (source) ^7.35.1 -> ^7.35.2 age confidence
@tanstack/react-virtual (source) ^3.13.12 -> ^3.13.13 age confidence
@types/node (source) ^22.19.1 -> ^22.19.3 age confidence
autoprefixer ^10.4.22 -> ^10.4.23 age confidence
i18next (source) ^25.7.1 -> ^25.7.3 age confidence
pnpm (source) 10.24.0+sha512.01ff8ae71b4419903b65c60fb2dc9d34cf8bb6e06d03bde112ef38f7a34d6904c424ba66bea5cdcf12890230bf39f9580473140ed9c946fef328b6e5238a345a -> 10.25.0 age confidence
react (source) ^19.2.1 -> ^19.2.3 age confidence
react-dom (source) ^19.2.1 -> ^19.2.3 age confidence
react-i18next ^16.4.0 -> ^16.5.0 age confidence
tsx (source) ^4.20.2 -> ^4.21.0 age confidence
vite (source) ^7.2.7 -> ^7.3.0 age confidence
zod (source) ^4.1.13 -> ^4.2.0 age confidence

Warning

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


Release Notes

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

v7.35.2

Compare Source

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

v3.13.13

Compare Source

Patch Changes
  • Fix: Notify framework when count changes to update getTotalSize() (#​1085)

    Fixed an issue where getTotalSize() would return stale values when the count option changed (e.g., during filtering or search operations). The virtualizer now automatically notifies the framework when measurement-affecting options change, ensuring the UI updates correctly without requiring manual useMemo workarounds.

    Before: When filtering items, the list container would maintain its previous height, causing excessive blank space (when count decreased) or inaccessible items (when count increased).

    After: Height updates automatically when count changes, providing the correct user experience.

    This fix applies to all framework adapters and has minimal performance impact (< 0.1ms per change).

  • Updated dependencies [2542c5a, 96e32a6]:

postcss/autoprefixer (autoprefixer)

v10.4.23

Compare Source

i18next/i18next (i18next)

v25.7.3

Compare Source

pnpm/pnpm (pnpm)

v10.25.0

Compare Source

facebook/react (react)

v19.2.3: 19.2.3 (December 11th, 2025)

Compare Source

React Server Components

v19.2.2: 19.2.2 (December 11th, 2025)

Compare Source

React Server Components
i18next/react-i18next (react-i18next)

v16.5.0

Compare Source

  • Add configuration option transDefaultProps to set default props for the Trans component (e.g. tOptions, shouldUnescape, values) 1895

v16.4.1

Compare Source

  • fix(Trans): prevent double-escaping of interpolated values in component props (e.g. title). Unescape HTML entities before passing prop values to React to avoid rendered output like &amp;quot; / &amp;#&#8203;39;. #​1893
vitejs/vite (vite)

v7.3.0

Compare Source

Please refer to CHANGELOG.md for details.

colinhacks/zod (zod)

v4.2.0

Compare Source

Features

Implement Standard JSON Schema

standard-schema/standard-schema#134

Implement z.fromJSONSchema()
const jsonSchema = {
  type: "object",
  properties: {
    name: { type: "string" },
    age: { type: "number" }
  },
  required: ["name"]
};

const schema = z.fromJSONSchema(jsonSchema);
Implement z.xor()
const schema = z.xor(
  z.object({ type: "user", name: z.string() }),
  z.object({ type: "admin", role: z.string() })
);
// Exactly one of the schemas must match
Implement z.looseRecord()
const schema = z.looseRecord(z.string(), z.number());
// Allows additional properties beyond those defined

Commits:


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

changeset-bot bot commented Dec 18, 2025

🦋 Changeset detected

Latest commit: f8aef8d

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-react Patch
@digdir/designsystemet Patch
@digdir/designsystemet-css Patch
@digdir/designsystemet-theme 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
Contributor

github-actions bot commented Dec 18, 2025

Preview deployments for this pull request:

storybook - 18. Dec 2025 - 12:08

themebuilder - 18. Dec 2025 - 12:08

www - 18. Dec 2025 - 12:16

@renovate renovate bot force-pushed the renovate/npm-minor-patch branch 2 times, most recently from c63a328 to 54a7cab Compare December 18, 2025 07:23
@renovate renovate bot force-pushed the renovate/npm-minor-patch branch from 54a7cab to 9e8e5d3 Compare December 18, 2025 09:50
Copy link
Collaborator

@oddvernes oddvernes left a comment

Choose a reason for hiding this comment

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

LGTM altough a couple of actions are timing out, perhaps we should wait a bit and see if they stsart working again later

@Barsnes
Copy link
Member

Barsnes commented Dec 18, 2025

LGTM altough a couple of actions are timing out, perhaps we should wait a bit and see if they stsart working again later

I think it's fine. It's just infra network errors.

Edit: I can't event run the CodeQL action again 🤷🏻

@Barsnes Barsnes merged commit f9aa410 into main Dec 18, 2025
25 of 27 checks passed
@Barsnes Barsnes deleted the renovate/npm-minor-patch branch December 18, 2025 11:18
@github-actions github-actions bot mentioned this pull request Dec 18, 2025
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