Skip to content

Bump @biomejs/wasm-nodejs from 2.1.2 to 2.1.3 #254

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jul 29, 2025

Bumps @biomejs/wasm-nodejs from 2.1.2 to 2.1.3.

Release notes

Sourced from @​biomejs/wasm-nodejs's releases.

Biome CLI v2.1.3

2.1.3

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>

... (truncated)

Changelog

Sourced from @​biomejs/wasm-nodejs's changelog.

12.1.3

CLI

Other changes

  • rome lsp-proxy should accept the global CLI options #4505
  • Enhance help descriptions
  • Accept the environment variable 'ROME_BINARY' to override the Rome binary

Configuration

Other changes

  • Fix an issue where all the nursery were enabled when the "nursery": {} object was defined #4479

Formatter

Linter

Other changes

Parser

Other changes

Commits
  • 018d188 ci: release (#6927)
  • ee4828d feat(analyze/js): add useReactFunctionComponents rule (#7055)
  • 634a667 feat(lint): implement noVueReservedKeys rule (#7057)
  • f75fea2 refactor(format): use specialised tokens (#7052)
  • c8f7838 docs: update analyzer CONTRIBUTING.md (#7056)
  • e5745c3 ci: make it so windows devs don't get lints that don't show up on linux/macos...
  • 8b24337 chore(deps): update rust:1.88.0-bullseye docker digest to b315f98 (#7043)
  • b091ddf fix(lint): useSemanticElements self-closing elements (#7044)
  • 3fd5f73 Revert "ci: use depot cargo in the PR workflow" (#7046)
  • d0975f8 ci: use depot cargo in the PR workflow (#7045)
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [@biomejs/wasm-nodejs](https://github.com/biomejs/biome) from 2.1.2 to 2.1.3.
- [Release notes](https://github.com/biomejs/biome/releases)
- [Changelog](https://github.com/biomejs/biome/blob/main/ROME_CHANGELOG.md)
- [Commits](https://github.com/biomejs/biome/compare/@biomejs/biome@2.1.2...@biomejs/biome@2.1.3)

---
updated-dependencies:
- dependency-name: "@biomejs/wasm-nodejs"
  dependency-version: 2.1.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Jul 29, 2025
@github-actions github-actions bot requested a review from NikolaRHristov July 29, 2025 18:43
@github-actions github-actions bot merged commit 050cc71 into Current Jul 29, 2025
8 checks passed
@github-actions github-actions bot deleted the dependabot/npm_and_yarn/biomejs/wasm-nodejs-2.1.3 branch July 29, 2025 18:43
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code
Development

Successfully merging this pull request may close these issues.

1 participant