这是indexloc提供的服务,不要输入任何密码
Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jul 16, 2025

This PR contains the following updates:

Package Change Age Confidence
@biomejs/biome (source) 2.1.1 -> 2.2.0 age confidence
@biomejs/biome (source) 2.1.1 -> 2.2.0 age confidence
@changesets/cli (source) ^2.29.5 -> ^2.29.6 age confidence
@clerk/elements (source) ^0.23.40 -> ^0.23.54 age confidence
@clerk/nextjs (source) ^6.25.1 -> ^6.31.1 age confidence
@hookform/resolvers (source) ^5.1.1 -> ^5.2.1 age confidence
@radix-ui/react-accordion (source) ^1.2.11 -> ^1.2.12 age confidence
@radix-ui/react-alert-dialog (source) ^1.1.14 -> ^1.1.15 age confidence
@radix-ui/react-checkbox (source) ^1.3.2 -> ^1.3.3 age confidence
@radix-ui/react-collapsible (source) ^1.1.11 -> ^1.1.12 age confidence
@radix-ui/react-context-menu (source) ^2.2.15 -> ^2.2.16 age confidence
@radix-ui/react-dialog (source) ^1.1.14 -> ^1.1.15 age confidence
@radix-ui/react-dropdown-menu (source) ^2.1.15 -> ^2.1.16 age confidence
@radix-ui/react-hover-card (source) ^1.1.14 -> ^1.1.15 age confidence
@radix-ui/react-menubar (source) ^1.1.15 -> ^1.1.16 age confidence
@radix-ui/react-navigation-menu (source) ^1.2.13 -> ^1.2.14 age confidence
@radix-ui/react-popover (source) ^1.1.14 -> ^1.1.15 age confidence
@radix-ui/react-radio-group (source) ^1.3.7 -> ^1.3.8 age confidence
@radix-ui/react-scroll-area (source) ^1.2.9 -> ^1.2.10 age confidence
@radix-ui/react-select (source) ^2.2.5 -> ^2.2.6 age confidence
@radix-ui/react-slider (source) ^1.3.5 -> ^1.3.6 age confidence
@radix-ui/react-switch (source) ^1.2.5 -> ^1.2.6 age confidence
@radix-ui/react-tabs (source) ^1.1.12 -> ^1.1.13 age confidence
@radix-ui/react-toggle (source) ^1.1.9 -> ^1.1.10 age confidence
@radix-ui/react-toggle-group (source) ^1.1.10 -> ^1.1.11 age confidence
@radix-ui/react-tooltip (source) ^1.2.7 -> ^1.2.8 age confidence
@storybook/addon-docs (source) ^9.0.17 -> ^9.1.2 age confidence
@storybook/addon-themes (source) 9.0.17 -> 9.1.2 age confidence
@storybook/nextjs (source) 9.0.17 -> 9.1.2 age confidence
@tailwindcss/postcss (source) ^4.1.11 -> ^4.1.12 age confidence
@types/node (source) ^22.16.4 -> ^22.17.2 age confidence
@types/react (source) ^19.1.8 -> ^19.1.10 age confidence
@types/react-dom (source) ^19.1.6 -> ^19.1.7 age confidence
dotenv ^17.2.0 -> ^17.2.1 age confidence
drizzle-orm (source) ^0.44.3 -> ^0.44.4 age confidence
lucide-react (source) ^0.525.0 -> ^0.539.0 age confidence
next (source) 15.4.1 -> 15.4.6 age confidence
react (source) ^19.1.0 -> ^19.1.1 age confidence
react-day-picker (source) ^9.8.0 -> ^9.8.1 age confidence
react-dom (source) ^19.1.0 -> ^19.1.1 age confidence
react-hook-form (source) ^7.60.0 -> ^7.62.0 age confidence
react-resizable-panels ^3.0.3 -> ^3.0.4 age confidence
sonner (source) ^2.0.6 -> ^2.0.7 age confidence
storybook (source) 9.0.17 -> 9.1.2 age confidence
tailwindcss (source) ^4.1.11 -> ^4.1.12 age confidence
turbo (source) ^2.5.4 -> ^2.5.6 age confidence
tw-animate-css ^1.3.5 -> ^1.3.7 age confidence
typescript (source) ^5.8.3 -> ^5.9.2 age confidence
ultracite 5.0.36 -> 5.2.4 age confidence
zod (source) ^4.0.5 -> ^4.0.17 age confidence

Release Notes

biomejs/biome (@​biomejs/biome)

v2.2.0

Compare Source

Minor Changes
  • #​5506 1f8755b Thanks @​sakai-ast! - The noRestrictedImports rule has been enhanced with a new patterns option. This option allows for more flexible and powerful import restrictions using gitignore-style patterns.

    You can now define patterns to restrict entire groups of modules. For example, you can disallow imports from any path under import-foo/ except for import-foo/baz.

    {
      "options": {
        "patterns": [
          {
            "group": ["import-foo/*", "!import-foo/baz"],
            "message": "import-foo is deprecated, except for modules in import-foo/baz."
          }
        ]
      }
    }

    Invalid examples

    import foo from "import-foo/foo";
    import bar from "import-foo/bar";

    Valid examples

    import baz from "import-foo/baz";

    Additionally, the patterns option introduces importNamePattern to restrict specific import names using regular expressions.
    The following example restricts the import names that match x , y or z letters from modules under import-foo/.

    {
      "options": {
        "patterns": [
          {
            "group": ["import-foo/*"],
            "importNamePattern": "[xyz]"
          }
        ]
      }
    }

    Invalid examples

    import { x } from "import-foo/foo";

    Valid examples

    import { foo } from "import-foo/foo";

    Furthermore, you can use the invertImportNamePattern boolean option to reverse this logic. When set to true, only the import names that match the importNamePattern will be allowed. The following configuration only allows the import names that match x , y or z letters from modules under import-foo/.

    {
      "options": {
        "patterns": [
          {
            "group": ["import-foo/*"],
            "importNamePattern": "[xyz]",
            "invertImportNamePattern": true
          }
        ]
      }
    }

    Invalid examples

    import { foo } from "import-foo/foo";

    Valid examples

    import { x } from "import-foo/foo";
  • #​6506 90c5d6b Thanks @​nazarhussain! - Allow customization of the sort order for different sorting actions. These actions now support a sort option:

    For each of these options, the supported values are the same:

    1. natural. Compares two strings using a natural ASCII order. Uppercase letters come first (e.g. A < a < B < b) and number are compared in a human way (e.g. 9 < 10). This is the default value.
    2. lexicographic. Strings are ordered lexicographically by their byte values. This orders Unicode code points based on their positions in the code charts. This is not necessarily the same as “alphabetical” order, which varies by language and locale.
  • #​7159 df3afdf Thanks @​ematipico! - Added the new rule useBiomeIgnoreFolder. Since v2.2, Biome correctly prevents the indexing and crawling of folders.

    However, the correct pattern has changed. This rule attempts to detect incorrect usage, and promote the new pattern:

    // biome.json
    {
      "files": {
        "includes": [
    -      "!dist/**",
    -      "!**/fixtures/**",
    +      "!dist",
    +      "!**/fixtures",
        ]
      }
    }
  • #​6989 85b1128 Thanks @​arendjr! - Fixed minor inconsistencies in how files.includes was being handled.

    Previously, Biome sometimes failed to properly ignore the contents of a folder if you didn't specify the /** at the end of a glob pattern. This was unfortunate, because it meant we still had to traverse the folder and then apply the glob to every entry inside it.

    This is no longer an issue and we now recommend to ignore folders without using the /** suffix.

  • #​7118 a78e878 Thanks @​avshalomt2! - Added support for .graphqls files. Biome can now format and lint GraphQL files that have the extension .graphqls

  • #​6159 f02a296 Thanks @​bavalpey! - Added a new option to Biome's JavaScript formatter, javascript.formatter.operatorLinebreak, to configure whether long lines should be broken before or after binary operators.

    For example, the following configuration:

    {
      formatter: {
        javascript: {
          operatorLinebreak: "before", // defaults to "after"
        },
      },
    }

    Will cause this JavaScript file:

    const VERY_LONG_CONDITION_1234123412341234123412341234 = false;
    
    if (
      VERY_LONG_CONDITION_1234123412341234123412341234 &&
      VERY_LONG_CONDITION_1234123412341234123412341234 &&
      VERY_LONG_CONDITION_1234123412341234123412341234 &&
      VERY_LONG_CONDITION_1234123412341234123412341234
    ) {
      console.log("DONE");
    }

    to be formatted like this:

    const VERY_LONG_CONDITION_1234123412341234123412341234 = false;
    if (
      VERY_LONG_CONDITION_1234123412341234123412341234 &&
      VERY_LONG_CONDITION_1234123412341234123412341234 &&
      VERY_LONG_CONDITION_1234123412341234123412341234 &&
      VERY_LONG_CONDITION_1234123412341234123412341234
    ) {
      console.log("DONE");
    }
  • #​7137 a653a0f Thanks @​ematipico! - Promoted multiple lint rules from nursery to stable groups and renamed several rules for consistency.

Promoted rules

The following rules have been promoted from nursery to stable groups:

CSS
GraphQL
JavaScript/TypeScript
Renamed rules

The following rules have been renamed during promotion. The migration tool will automatically update your configuration:

Configuration files using the old rule names will need to be updated. Use the migration tool to automatically update your configuration:

biome migrate --write
  • #​7159 df3afdf Thanks @​ematipico! - Added the new rule noBiomeFirstException. This rule prevents the incorrect usage of patterns inside files.includes.

    This rule catches if the first element of the array contains !. This mistake will cause Biome to analyze no files:

    // biome.json
    {
      files: {
        includes: ["!dist/**"], // this is an error
      },
    }
  • #​6923 0589f08 Thanks @​ptkagori! - Added Qwik Domain to Biome

    This release introduces Qwik domain support in Biome, enabling Qwik developers to use Biome as a linter and formatter for their projects.

  • #​6989 85b1128 Thanks @​arendjr! - Fixed #​6965: Implemented smarter scanner for project rules.

    Previously, if project rules were enabled, Biome's scanner would scan all dependencies regardless of whether they were used by/reachable from source files or not. While this worked for a first version, it was far from optimal.

    The new scanner first scans everything listed under the files.includes setting, and then descends into the dependencies that were discovered there, including transitive dependencies. This has three main advantages:

    • Dependencies that are not reachable from your source files don't get indexed.
    • Dependencies that have multiple type definitions, such as those with separate definitions for CommonJS and ESM imports, only have the relevant definitions indexed.
    • If vcs.useIgnoreFile is enabled, .gitignore gets respected as well. Assuming you have folders such as build/ or dist/ configured there, those will be automatically ignored by the scanner.

    The change in the scanner also has a more nuanced impact: Previously, if you used files.includes to ignore a file in an included folder, the scanner would still index this file. Now the file is fully ignored, unless you import it.

    As a user you should notice better scanner performance (if you have project rules enabled), and hopefully you need to worry less about configuring files.experimentalScannerIgnores. Eventually our goal is still to deprecate that setting, so if you're using it today, we encourage you to see which ignores are still necessary there, and whether you can achieve the same effect by ignoring paths using files.includes instead.

    None of these changes affect the scanner if no project rules are enabled.

  • #​6731 d6a05b5 Thanks @​ematipico! - The --reporter=summary has been greatly enhanced. It now shows the list of files that contains violations, the files shown are clickable and can be opened from the editor.

    Below an example of the new version:

    reporter/parse ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
    
      i The following files have parsing errors.
    
      - index.css
    
    reporter/format ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
    
      i The following files needs to be formatted.
    
      - index.css
      - index.ts
      - main.ts
    
    reporter/violations ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
    
      i Some lint rules or assist actions reported some violations.
    
      Rule Name                                        Diagnostics
    
      lint/correctness/noUnknownFunction               14 (2 error(s), 12 warning(s), 0 info(s))
      lint/suspicious/noImplicitAnyLet                 16 (12 error(s), 4 warning(s), 0 info(s))
      lint/suspicious/noDoubleEquals                   8 (8 error(s), 0 warning(s), 0 info(s))
      assist/source/organizeImports                    2 (2 error(s), 0 warning(s), 0 info(s))
      lint/suspicious/noRedeclare                      12 (12 error(s), 0 warning(s), 0 info(s))
      lint/suspicious/noDebugger                       8 (8 error(s), 0 warning(s), 0 info(s))
    
    
  • #​6896 527db7f Thanks @​ematipico! - Added new functions to the @biomejs/wasm-* packages:

    • fileExists: returns whether the input file exists in the workspace.
    • isPathIgnored: returns whether the input path is ignored.
    • updateModuleGraph: updates the internal module graph of the input path.
    • getModuleGraph: it returns a serialized version of the internal module graph.
    • scanProject: scans the files and directories in the project to build the internal module graph.
  • #​6398 d1a315d Thanks @​josh-! - Added support for tracking stable results in user-provided React hooks that return objects to useExhaustiveDependencies to compliment existing support for array return values. For example:

    // biome.json
    {
      // rule options
      useExhaustiveDependencies: {
        level: "error",
        options: {
          hooks: [
            {
              name: "useCustomHook",
              stableResult: ["setMyState"],
            },
          ],
        },
      },
    }

    This will allow the following to be validated:

    const { myState, setMyState } = useCustomHook();
    const toggleMyState = useCallback(() => {
      setMyState(!myState);
    }, [myState]); // Only `myState` needs to be specified here.
  • #​7201 2afaa49 Thanks @​Conaclos! - Implemented #​7174. useConst no longer reports variables that are read before being written.

    Previously, useConst reported uninitialised variables that were read in an inner function before being written, as shown in the following example:

    let v;
    function f() {
      return v;
    }
    v = 0;

    This can produce false positives in the case where f is called before v has been written, as in the following code:

    let v;
    function f() {
      return v;
    }
    console.log(f()); // print `undefined`
    v = 0;

    Although this is an expected behavior of the original implementation, we consider it problematic since the rule’s fix is marked as safe.
    To avoid false positives like this, the rule now ignores the previous examples.
    However, this has the disadvantage of resulting in false negatives, such as not reporting the first example.

Patch Changes
  • #​7156 137d111 Thanks @​ematipico! - Fixed #​7152. Now the rule noDuplicateFontNames correctly detects font names with spaces e.g. Liberation Mono. The diagnostic of the rule now points to the first instances of the repeated font.

    The following example doesn't trigger the rule anymore:

    c {
      font-family:
        SF Mono,
        Liberation Mono,
        sans-serif;
    }
    d {
      font:
        1em SF Mono,
        Liberation Mono,
        sans-serif;
    }
  • #​6907 7331bb9 Thanks @​ematipico! - Added a new experimental option that allows parsing of .html files that contain interpolation syntax.

    // biome.json
    {
      html: {
        // This is the new, experimental option.
        parser: {
          interpolation: true,
        },
      },
    }
    <h1>{{ $title }}</h1>
  • #​7124 3f436b8 Thanks @​Jayllyz! - Added the rule useMaxParams.

    This rule enforces a maximum number of parameters for functions to improve code readability and maintainability. Functions with many parameters are difficult to read, understand, and maintain because they require memorizing parameter order and types.

    // Invalid - too many parameters (default max: 4)
    function processData(
      name,
      age,
      email,
      phone,
      address,
      city,
      country,
      zipCode,
    ) {
      // ...
    }
    
    // Valid - within parameter limit
    function processData(userData) {
      const { name, age, email, phone, address, city, country, zipCode } =
        userData;
      // ...
    }
    
    function calculateSum(a, b, c) {
      return a + b + c;
    }
  • #​7161 1a14a59 Thanks @​ematipico! - Fixed #​7160. Now Biome correctly computes ignored files when using formatter.includes, linter.includes and assist.includes inside nested configurations that use "extends": "//".

  • #​7081 a081bbe Thanks @​Jayllyz! - Added the rule noNextAsyncClientComponent.

    This rule prevents the use of async functions for client components in Next.js applications. Client components marked with "use client" directive should not be async as this can cause hydration mismatches, break component rendering lifecycle, and lead to unexpected behavior with React's concurrent features.

    "use client";
    
    // Invalid - async client component
    export default async function MyComponent() {
      return <div>Hello</div>;
    }
    
    // Valid - synchronous client component
    export default function MyComponent() {
      return <div>Hello</div>;
    }
  • #​7171 5241690 Thanks @​siketyan! - Fixed #​7162: The noUndeclaredDependencies rule now considers a type-only import as a dev dependency.

    For example, the following code is no longer reported:

    package.json:

    {
      "devDependencies": {
        "type-fest": "*"
      }
    }

    foo.ts:

    import type { SetRequired } from "type-fest";

    Note that you still need to declare the package in the devDependencies section in package.json.

v2.1.4

Compare Source

Patch Changes
  • #​7121 b9642ab Thanks @​arendjr! - Fixed #​7111: Imported symbols using aliases are now correctly recognised.

  • #​7103 80515ec Thanks @​omasakun! - Fixed #​6933 and #​6994.

    When the values of private member assignment expressions, increment expressions, etc. are used, those private members are no longer marked as unused.

  • #​6887 0cc38f5 Thanks @​ptkagori! - Added the noQwikUseVisibleTask rule to Qwik.

    This rule is intended for use in Qwik applications to warn about the use of useVisibleTask$() functions which require careful consideration before use.

    Invalid:

    useVisibleTask$(() => {
      console.log("Component is visible");
    });

    Valid:

    useTask$(() => {
      console.log("Task executed");
    });
  • #​7084 50ca155 Thanks @​ematipico! - Added the new nursery rule noUnnecessararyConditions, which detects whenever some conditions don't
    change during the life cycle of the program, and truthy or false, hence deemed redundant.

    For example, the following snippets will trigger the rule:

    // Always truthy literal conditions
    if (true) {
      console.log("always runs");
    }
    // Unnecessary condition on constrained string type
    function foo(arg: "bar" | "baz") {
      if (arg) {
        // This check is unnecessary
      }
    }
  • #​6887 0cc38f5 Thanks @​ptkagori! - Added the useImageSize rule to Biome.

    The useImageSize rule enforces the use of width and height attributes on <img> elements for performance reasons. This rule is intended to prevent layout shifts and improve Core Web Vitals by ensuring images have explicit dimensions.

    Invalid:

    <img src="/image.png" />
    <img src="https://example.com/image.png" />
    <img src="/image.png" width="200" />
    <img src="/image.png" height="200" />

    Valid:

    <img width="200" height="600" src="/static/images/portrait-01.webp" />
    <img width="100" height="100" src="https://example.com/image.png" />
  • #​6887 0cc38f5 Tha


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) in timezone Europe/Amsterdam.

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, 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 added the dependencies Pull requests that update a dependency file label Jul 16, 2025
@netlify
Copy link

netlify bot commented Jul 16, 2025

Deploy Preview for northware-cockpit failed.

Name Link
🔨 Latest commit 5c9127b
🔍 Latest deploy log https://app.netlify.com/projects/northware-cockpit/deploys/6877b82250dea000083e09da

@netlify
Copy link

netlify bot commented Jul 16, 2025

Deploy Preview for northware-cockpit ready!

Name Link
🔨 Latest commit 548c640
🔍 Latest deploy log https://app.netlify.com/projects/northware-cockpit/deploys/68a160a82fc0c50008ac8d7b
😎 Deploy Preview https://deploy-preview-543--northware-cockpit.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify project configuration.

@netlify
Copy link

netlify bot commented Jul 16, 2025

Deploy Preview for northware-storybook failed.

Name Link
🔨 Latest commit 5c9127b
🔍 Latest deploy log https://app.netlify.com/projects/northware-storybook/deploys/6877b822bd123100085f3168

@changeset-bot
Copy link

changeset-bot bot commented Jul 16, 2025

⚠️ No Changeset found

Latest commit: 548c640

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

@netlify
Copy link

netlify bot commented Jul 16, 2025

Deploy Preview for northware-storybook ready!

Name Link
🔨 Latest commit 548c640
🔍 Latest deploy log https://app.netlify.com/projects/northware-storybook/deploys/68a160a84f8c860008c2497b
😎 Deploy Preview https://deploy-preview-543--northware-storybook.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify project configuration.

@github-actions github-actions bot added packages/auth Anything related to the @northware/auth package packages/ui Anything related to the @northware/ui package labels Jul 16, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from b46ec59 to c524a12 Compare July 18, 2025 22:56
@github-actions github-actions bot added apps/cockpit Anything related to Northware Cockpit apps/storybook Improovements, additions or technical updates of the storybook docs labels Jul 18, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 9 times, most recently from 5389c1a to cf03eda Compare July 25, 2025 04:14
@github-actions github-actions bot added the packages/database and api Anything related to the @northware/database package or the API label Jul 25, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from d0ffa82 to 84b6882 Compare July 26, 2025 02:46
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 11 times, most recently from 870d3e3 to 8bfac12 Compare August 1, 2025 00:44
@github-actions github-actions bot added the apps/docs Improovements or additions to the documentation or a technical update of the docs label Aug 1, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 9 times, most recently from 9706f89 to cb50534 Compare August 7, 2025 17:15
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from c8d300f to adfeb3c Compare August 17, 2025 01:51
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from adfeb3c to 548c640 Compare August 17, 2025 04:55
@onissen
Copy link
Collaborator

onissen commented Aug 17, 2025

Linting Errors will be fixed in #550

@onissen onissen merged commit 065f336 into main Aug 17, 2025
14 of 16 checks passed
@onissen onissen deleted the renovate/all-minor-patch branch August 17, 2025 11:12
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

apps/cockpit Anything related to Northware Cockpit apps/docs Improovements or additions to the documentation or a technical update of the docs apps/storybook Improovements, additions or technical updates of the storybook docs dependencies Pull requests that update a dependency file packages/auth Anything related to the @northware/auth package packages/database and api Anything related to the @northware/database package or the API packages/ui Anything related to the @northware/ui package

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants