Skip to content

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

Merged
Barsnes merged 3 commits intomainfrom
renovate/npm-minor-patch
Nov 14, 2025
Merged

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

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Nov 13, 2025

This PR contains the following updates:

Package Change Age Confidence
@biomejs/biome (source) 2.3.2 -> 2.3.4 age confidence
@navikt/aksel-icons (source) ^7.32.5 -> ^7.33.1 age confidence
@radix-ui/react-slot (source) ^1.2.3 -> ^1.2.4 age confidence
@vitejs/plugin-react-swc (source) ^4.2.0 -> ^4.2.1 age confidence
@vitest/browser (source) 4.0.7 -> 4.0.8 age confidence
@vitest/browser-playwright (source) 4.0.7 -> 4.0.8 age confidence
@vitest/coverage-v8 (source) 4.0.7 -> 4.0.8 age confidence
@vitest/ui (source) 4.0.7 -> 4.0.8 age confidence
i18next (source) ^25.6.0 -> ^25.6.1 age confidence
isbot (source) ^5.1.31 -> ^5.1.32 age confidence
pnpm (source) 10.20.0+sha512.cf9998222162dd85864d0a8102e7892e7ba4ceadebbf5a31f9c2fce48dfce317a9c53b9f6464d1ef9042cba2e02ae02a9f7c143a2b438cd93c91840f0192b9dd -> 10.21.0 age confidence
react-i18next ^16.2.3 -> ^16.2.4 age confidence
rollup (source) ^4.52.5 -> ^4.53.1 age confidence
rollup (source) 4.52.5 -> 4.53.1 age confidence
vite (source) ^7.1.12 -> ^7.2.2 age confidence
vitest (source) 4.0.7 -> 4.0.8 age confidence

Warning

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


Release Notes

biomejs/biome (@​biomejs/biome)

v2.3.4

Compare Source

Patch Changes
  • #​7989 4855c4a Thanks @​alissonlauffer! - Fixed a regression in Astro frontmatter parsing where comments inside quoted strings were incorrectly detected as actual comments. This caused the parser to prematurely terminate frontmatter parsing when encountering strings like const test = "//";.
    For example, the following Astro frontmatter now parses correctly:

    ---
    const test = "// not a real comment";
    ---
  • #​7968 0b28f5f Thanks @​denbezrukov! - Refactored formatter to use strict Token element for better performance. The new Token variant is optimized for static, ASCII-only text (keywords, operators, punctuation) with the following constraints:

    • ASCII only (no Unicode characters)
    • No newlines (\n, \r)
    • No tab characters (\t)

    This enables faster printing and fitting logic by using bulk string operations (push_str, len()) instead of character-by-character iteration with Unicode width calculations.

  • #​7941 19b8280 Thanks @​Conaclos! - Fixed #​7943. Rules' options are now properly merged with the inherited options from a shared configuration.

    This means that you can now override a specific option from a rule without resetting the other options to their default.

    Given the following shared configuration:

    {
      "linter": {
        "rules": {
          "style": {
            "useNamingConvention": {
              "level": "on",
              "options": {
                "strictCase": false,
                "conventions": [
                  {
                    "selector": { "kind": "variable", "scope": "global" },
                    "formats": ["CONSTANT_CASE"]
                  }
                ]
              }
            }
          }
        }
      }
    }

    And the user configuration that extends this shared configuration:

    {
      "extends": ["shared.json"],
      "linter": {
        "rules": {
          "style": {
            "useNamingConvention": {
              "level": "on",
              "options": { "strictCase": true }
            }
          }
        }
      }
    }

    The obtained merged configuration is now as follows:

    {
      "extends": ["shared.json"],
      "linter": {
        "rules": {
          "style": {
            "useNamingConvention": {
              "level": "on",
              "options": {
                "strictCase": true,
                "conventions": [
                  {
                    "selector": { "kind": "variable", "scope": "global" },
                    "formats": ["CONSTANT_CASE"]
                  }
                ]
              }
            }
          }
        }
      }
    }
  • #​7969 425963d Thanks @​ematipico! - Added support for the Svelte syntax {@​debug}. The Biome HTML parser is now able to parse and format the blocks:

    -{@​debug     foo,bar,    something}
    +{@​debug foo, bar, something}
  • #​7986 3256f82 Thanks @​lisiur! - Fixed #​7981. Now Biome correctly detects and parses lang='tsx' and lang='jsx' languages when used inside in .vue files, when .experimentalFullSupportEnabled is enabled.

  • #​7921 547c2da Thanks @​dyc3! - Fixed #​7854: The CSS parser, with tailwindDirectives enabled, will now parse @source inline("underline");.

  • #​7856 c9e20c3 Thanks @​Netail! - Added the nursery rule noContinue. Disallowing the usage of the continue statement, structured control flow statements such as if should be used instead.

    Invalid:

    let sum = 0,
      i;
    
    for (i = 0; i < 10; i++) {
      if (i >= 5) {
        continue;
      }
    
      sum += i;
    }

    Valid:

    let sum = 0,
      i;
    
    for (i = 0; i < 10; i++) {
      if (i < 5) {
        sum += i;
      }
    }

v2.3.3

Compare Source

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

v7.33.1

Compare Source

radix-ui/primitives (@​radix-ui/react-slot)

v1.2.4

vitejs/vite-plugin-react (@​vitejs/plugin-react-swc)

v4.2.1

Compare Source

Fix @vitejs/plugin-react-swc/preamble on build (#​962)
vitest-dev/vitest (@​vitest/browser)

v4.0.8

Compare Source

   🐞 Bug Fixes
    View changes on GitHub
i18next/i18next (i18next)

v25.6.1

Compare Source

  • fix: createInstance does not exist on an instance #​2366
omrilotan/isbot (isbot)

v5.1.32

Compare Source

  • [Pattern] Pattern updates
pnpm/pnpm (pnpm)

v10.21.0

Compare Source

rollup/rollup (rollup)

v4.53.1

Compare Source

2025-11-07

Bug Fixes
Pull Requests

v4.53.0

Compare Source

2025-11-07

Features
  • Improve rendering performance by caching generated variable names (#​5947)
Pull Requests
vitejs/vite (vite)

v7.2.2

Compare Source

Bug Fixes

v7.2.1

Compare Source

Bug Fixes
Code Refactoring

v7.2.0

Compare Source

Bug Fixes
  • css: fallback to sass when sass-embedded platform binary is missing (#​21002) (b1fd616)
  • module-runner: make getBuiltins response JSON serializable (#​21029) (ad5b3bf)
  • types: add undefined to optional properties for exactOptionalProperties type compatibility (#​21040) (2833c55)
Miscellaneous Chores

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 Nov 13, 2025

🦋 Changeset detected

Latest commit: b6a1f0d

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

This PR includes changesets to release 4 packages
Name Type
@digdir/designsystemet-react Patch
@digdir/designsystemet Patch
@digdir/designsystemet-css Patch
@digdir/designsystemet-theme 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 Nov 13, 2025

Preview deployments for this pull request:

storybook - 13. Nov 2025 - 09:12

themebuilder - 13. Nov 2025 - 09:12

www - 13. Nov 2025 - 09:14

@renovate
Copy link
Contributor Author

renovate bot commented Nov 13, 2025

Edited/Blocked Notification

Renovate 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.

⚠️ Warning: custom changes will be lost.

Copy link
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

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.

Test job failed because of some missing json file, but it worked when I re-ran the job so probably a random action issue

@Barsnes
Copy link
Member

Barsnes commented Nov 13, 2025

Test job failed because of some missing json file, but it worked when I re-ran the job so probably a random action issue

Yeah we need to look into that test job, it seems like 5% (guessed estimate) of the time it randomly fails.

@Barsnes
Copy link
Member

Barsnes commented Nov 13, 2025

Test job failed because of some missing json file, but it worked when I re-ran the job so probably a random action issue

Yeah we need to look into that test job, it seems like 5% (guessed estimate) of the time it randomly fails.

And as a sidenote, we should split it into multiple jobs, since some of them can run in parallel

@Barsnes Barsnes merged commit f6bf5a2 into main Nov 14, 2025
25 of 26 checks passed
@Barsnes Barsnes deleted the renovate/npm-minor-patch branch November 14, 2025 08:01
@github-actions github-actions bot mentioned this pull request Nov 14, 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