Skip to content

Update dependencies (patch) - #289

Merged
mkobayashime merged 1 commit into
mainfrom
renovate/dependencies-(patch)
Aug 4, 2025
Merged

Update dependencies (patch)#289
mkobayashime merged 1 commit into
mainfrom
renovate/dependencies-(patch)

Conversation

@renovate

@renovate renovate Bot commented May 27, 2025

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
@biomejs/biome (source) 2.1.2 -> 2.1.3 age confidence
bookmarklets-cli 1.1.4 -> 1.1.5 age confidence
glob 11.0.2 -> 11.0.3 age confidence
tsx (source) 4.20.0 -> 4.20.3 age confidence
vitest (source) 3.2.2 -> 3.2.4 age confidence

Release Notes

biomejs/biome (@​biomejs/biome)

v2.1.3

Compare Source

Patch Changes
  • #​7057 634a667 Thanks @​mdevils! - Added the rule noVueReservedKeys, which prevents the use of reserved Vue keys.

    It prevents the use of Vue reserved keys such as those starting with # @​biomejs/biome (like $el, $data, $props) and keys starting with _` in data properties, which can cause conflicts and unexpected behavior in Vue components.

    Invalid example
    <script>
    export default {
      data: {
        $el: "",
        _foo: "bar",
      },
    };
    </script>
    <script>
    export default {
      computed: {
        $data() {
          return this.someData;
        },
      },
    };
    </script>
    Valid examples
    <script>
    export default {
      data() {
        return {
          message: "Hello Vue!",
          count: 0,
        };
      },
    };
    </script>
    <script>
    export default {
      computed: {
        displayMessage() {
          return this.message;
        },
      },
    };
    </script>
  • #​6941 734d708 Thanks @​JamBalaya56562! - Added @eslint-react/no-nested-component-definitions as a rule source for noNestedComponentDefinitions. Now it will get picked up by biome migrate --eslint.

  • #​6463 0a16d54 Thanks @​JamBalaya56562! - Fixed a website link for the useComponentExportOnlyModules linter rule to point to the correct URL.

  • #​6944 e53f2fe Thanks @​sterliakov! - Fixed #​6910: Biome now ignores type casts and assertions when evaluating numbers for noMagicNumbers rule.

  • #​6991 476cd55 Thanks @​denbezrukov! - Fixed #​6973: Add support for parsing the :active-view-transition-type() pseudo-class

    :active-view-transition-type(first second) {
    }
  • #​6992 0b1e194 Thanks @​ematipico! - Added a new JSON rule called noQuickfixBiome, which disallow the use of code action quickfix.biome inside code editor settings.

  • #​6943 249306d Thanks @​JamBalaya56562! - Fixed @vitest/eslint-plugin source url.

  • #​6947 4c7ed0f Thanks @​JamBalaya56562! - Fixed ESLint migration for the rule prefer-for from eslint-plugin-solid to Biome's useForComponent.

  • #​6976 72ebadc Thanks @​siketyan! - Fixed #​6692: The rules noUnusedVariables and noUnusedFunctionParameters no longer cause an infinite loop when the suggested name is not applicable (e.g. the suggested name is already declared in the scope).

  • #​6990 333f5d0 Thanks @​rvanlaarhoven! - Fixed the documentation URL for lint/correctness/noUnknownPseudoClass

  • #​7000 4021165 Thanks @​harxki! - Fixed #​6795: noUnassignedVariables now correctly recognizes variables used in JSX ref attributes.

  • #​7044 b091ddf Thanks @​ematipico! - Fixed #​6622, now the rule useSemanticElements works for JSX self-closing elements too.

  • #​7014 c4864e8 Thanks @​siketyan! - Fixed #​6516: The biome migrate command no longer break the member list with trailing comments.

  • #​6979 29cb6da Thanks @​unvalley! - Fixed #​6767: useSortedClasses now correctly removes leading and trailing whitespace in className.

    Previously, trailing spaces in className were not fully removed.

    // Think we have this code:
    <div className="text-sm font-bold            " />
    
    // Before: applied fix, but a trailing space was preserved
    <div className="font-bold text-sm " />
    
    // After: applied fix, trailing spaces removed
    <div className="font-bold text-sm" />
  • #​7055 ee4828d Thanks @​dyc3! - Added the nursery rule useReactFunctionComponents. This rule enforces the preference to use function components instead of class components.

    Valid:

    function Foo() {
      return <div>Hello, world!</div>;
    }

    Invalid:

    class Foo extends React.Component {
      render() {
        return <div>Hello, world!</div>;
      }
    }
  • #​6924 2d21be9 Thanks @​ematipico! - Fixed #​113, where the Biome Language Server didn't correctly update the diagnostics when the configuration file is modified in the editor. Now the diagnostics are correctly updated every time the configuration file is modified and saved.

  • #​6931 e6b2380 Thanks @​arendjr! - Fixed #​6915: useHookAtTopLevel no longer hangs when rules call themselves recursively.

  • #​7012 01c0ab4 Thanks @​siketyan! - Fixed #​5837: Invalid suppression comments such as biome-ignore-all-start or biome-ignore-all-end no longer causes a panic.

  • #​6949 48462f8 Thanks @​fireairforce! - Support parse import defer(which is a stage3 proposal). The syntax look like this:

    import defer * as foo from "<specifier>";
  • #​6938 5feb5a6 Thanks @​vladimir-ivanov! - Fixed #​6919 and #​6920:
    useReadonlyClassProperties now does checks for mutations in async class methods.

    Example:

    class Counter3 {
      private counter: number;
      async count() {
        this.counter = 1;
        const counterString = `${this.counter++}`;
      }
    }
  • #​6942 cfda528 Thanks @​sterliakov! - Fixed #​6939. Biome now understands this binding in classes outside of methods.

mkobayashime/bookmarklets-cli (bookmarklets-cli)

v1.1.5

Compare Source

What's Changed

No user-visible changes

Full Changelog: mkobayashime/bookmarklets-cli@v1.1.4...v1.1.5

isaacs/node-glob (glob)

v11.0.3

Compare Source

privatenumber/tsx (tsx)

v4.20.3

Compare Source

v4.20.2

Compare Source

v4.20.1

Compare Source

vitest-dev/vitest (vitest)

v3.2.4

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v3.2.3

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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 changed the title Update dependency @types/node to v22.15.23 Update dependency @types/node to v22.15.24 May 28, 2025
@renovate
renovate Bot force-pushed the renovate/dependencies-(patch) branch from 67f9506 to 575731e Compare May 28, 2025 20:41
@renovate renovate Bot changed the title Update dependency @types/node to v22.15.24 Update dependency @types/node to v22.15.26 May 30, 2025
@renovate
renovate Bot force-pushed the renovate/dependencies-(patch) branch from 575731e to c5a3aec Compare May 30, 2025 03:02
@renovate renovate Bot changed the title Update dependency @types/node to v22.15.26 Update dependency @types/node to v22.15.27 May 30, 2025
@renovate
renovate Bot force-pushed the renovate/dependencies-(patch) branch from c5a3aec to cdb293d Compare May 30, 2025 05:35
@renovate renovate Bot changed the title Update dependency @types/node to v22.15.27 Update dependency @types/node to v22.15.28 May 30, 2025
@renovate
renovate Bot force-pushed the renovate/dependencies-(patch) branch from cdb293d to a27d5f9 Compare May 30, 2025 16:24
@renovate renovate Bot changed the title Update dependency @types/node to v22.15.28 Update dependency @types/node to v22.15.29 May 30, 2025
@renovate
renovate Bot force-pushed the renovate/dependencies-(patch) branch from a27d5f9 to a626cb0 Compare May 30, 2025 23:31
@renovate renovate Bot changed the title Update dependency @types/node to v22.15.29 Update dependency @types/node to v22.15.30 Jun 6, 2025
@renovate
renovate Bot force-pushed the renovate/dependencies-(patch) branch from a626cb0 to 9c47574 Compare June 6, 2025 11:08
@renovate renovate Bot changed the title Update dependency @types/node to v22.15.30 Update dependencies (patch) Jun 9, 2025
@renovate
renovate Bot force-pushed the renovate/dependencies-(patch) branch 9 times, most recently from ab3f007 to 6e8575c Compare June 16, 2025 12:13
@renovate
renovate Bot force-pushed the renovate/dependencies-(patch) branch 2 times, most recently from b99e7b1 to 267b33c Compare June 24, 2025 17:53
@renovate
renovate Bot force-pushed the renovate/dependencies-(patch) branch 5 times, most recently from e94ac66 to 62d9103 Compare July 1, 2025 22:29
@renovate
renovate Bot force-pushed the renovate/dependencies-(patch) branch 4 times, most recently from e90661a to 7b37381 Compare July 9, 2025 00:05
@renovate
renovate Bot force-pushed the renovate/dependencies-(patch) branch 2 times, most recently from 615ec80 to 448f8b0 Compare July 15, 2025 15:13
@renovate
renovate Bot force-pushed the renovate/dependencies-(patch) branch 4 times, most recently from 3e1bf30 to 3687212 Compare July 22, 2025 20:36
@renovate
renovate Bot force-pushed the renovate/dependencies-(patch) branch 2 times, most recently from 657b8e2 to d56476f Compare August 3, 2025 19:43
@renovate
renovate Bot force-pushed the renovate/dependencies-(patch) branch from d56476f to 2a6a37b Compare August 4, 2025 06:05
@mkobayashime
mkobayashime merged commit f07abd8 into main Aug 4, 2025
2 checks passed
@mkobayashime
mkobayashime deleted the renovate/dependencies-(patch) branch August 4, 2025 09:03
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant