PackageTrack

npm · #4650 most downloaded on npm

@biomejs/cli-linux-x64-musl

2.5.11biomejs/biome

Release timeline

119 releases since 2023
20232026

One column per month.

Releases

  1. 2.0.321 Jun 2025
    Release notes

    2.0.3

    Patch Changes

    • #6785 085e3c7 Thanks @siketyan! - Fixed #6722: Missing dist/ files are now included in the @biomejs/js-api package. The previous release haven't fixed the issue properly.

    What's Changed

    • ci: use name instead of pattern for downloading artifact by @siketyan in https://github.com/biomejs/biome/pull/6785
    • ci: release by @github-actions in https://github.com/biomejs/biome/pull/6786

    Full Changelog: https://github.com/biomejs/biome/compare/@biomejs/[email protected]...@biomejs/[email protected]

    Open source →
  2. 2.0.220 Jun 2025
    Release notes

    2.0.2

    [!WARNING] Due to a CI problem, this version is broken and not includes necessary files in the package.

    Patch Changes

    What's Changed

    • ci: correct restore path of the artifact by @siketyan in https://github.com/biomejs/biome/pull/6780
    • fix(wasm): serialize map as a plain object by @siketyan in https://github.com/biomejs/biome/pull/6781
    • ci: release by @github-actions in https://github.com/biomejs/biome/pull/6779
    • docs: update contribution guide and pull request template by @ematipico in https://github.com/biomejs/biome/pull/6664

    Full Changelog: https://github.com/biomejs/biome/compare/@biomejs/[email protected]...@biomejs/[email protected]

    Open source →
  3. 2.0.120 Jun 2025
    Release notes

    2.0.1

    [!WARNING] Due to a CI problem, this version is broken and not includes necessary files in the package.

    Patch Changes

    What's Changed

    • ci: download js-api artifacts before publish by @siketyan in https://github.com/biomejs/biome/pull/6776
    • ci: release by @github-actions in https://github.com/biomejs/biome/pull/6778
    • fix(noFocusedTests): fix fit false positive by @dyc3 in https://github.com/biomejs/biome/pull/6761

    Full Changelog: https://github.com/biomejs/biome/compare/@biomejs/[email protected]...@biomejs/[email protected]

    Open source →
    Additional notes

    [!WARNING] Biome v2.0.1 and v2.0.2 are currently broken, please use v2.0.0 in the meantime. See #6435 for details.

    Patch Changes

    • #6425 00e97ad Thanks @siketyan! - Fixed #6391: the rule noUselessFragments no longer reports a fragment that contains whitespaces which aren't trimmed by the runtime.

    • #6417 dd88565 Thanks @ematipico! - Fixed #6360: The following pseudo classes and elements are no longer reported by noUnknownPseudoClass or noUnknownPseudoElement rules.

      • :open
      • ::details-content
      • ::prefix
      • ::search-text
      • ::suffix
    • #6417 dd88565 Thanks @ematipico! - Fixed #6357, where the boolean values weren't correctly merged when using the extends functionality. Now Biome correctly merges the values.

    • #6417 dd88565 Thanks @ematipico! - Fixed #6341: Fixed an issue where Biome would throw an error for the language tags nb and nn.

    • #6385 94142dd Thanks @siketyan! - Fixed #6377: The rule noSelfCompare now correctly compares two function calls with different arguments.

    • #6417 dd88565 Thanks @ematipico! - Fixed #6278: useExhaustiveDependencies no longer adds duplicated dependencies into the list.

    • #6417 dd88565 Thanks @ematipico! - Fix #6396, where vi.useFakeTimers() and vi.useRealTimers() incorrectly triggered React Hooks-related rules

    • #6417 dd88565 Thanks @ematipico! - Fixed a bug where Biome didn't correctly discover nested configuration files when using the lint command and the linter is disabled in the root configuration.

    • #6422 594ec50 Thanks @ematipico! - Removed the experimental rename feature from Biome LSP, which caused some issues inside existing editors such as Zed.

    • #6388 c6942d2 Thanks @siketyan! - Fixed #6375: the formatter no longer inserts an extra empty line before a semicolon when it has leading comments.

    Open source →
  4. 2.0.017 Jun 2025
    Release notes

    2.0.0

    [!WARNING] Due to a CI problem, this version is broken and not includes necessary files in the package.

    Minor Changes

    • #6535 d8c08e1 Thanks @regseb! - Biome's JavaScript Bindings now have specific subpath exports for the three packages:

      • import { Biome } from "@biomejs/js-api/bundler";
      • import { Biome } from "@biomejs/js-api/nodejs";
      • import { Biome } from "@biomejs/js-api/web";

      These new subpath exports load only TypeScript declarations, whereas the default export loads declarations for all three packages. This was a problem if you checked your code with tsc.

      • Old usage with default export (no subpath):

        import { Biome, Distribution } from "@biomejs/js-api";
        
        const biome = await Biome.create({ distribution: Distribution.NODE });
        
      • New usage with a specific subpath export:

        import { Biome } from "@biomejs/js-api/nodejs";
        
        const biome = new Biome();
        

    Patch Changes

    What's Changed

    • feat(core): support import namespaces by @arendjr in https://github.com/biomejs/biome/pull/6303
    • feat(core): support export * syntax by @arendjr in https://github.com/biomejs/biome/pull/6311
    • fix(linter): prevent false positives in noMisusedPromises by @arendjr in https://github.com/biomejs/biome/pull/6315
    • perf: use TypeStore in global resolver by @arendjr in https://github.com/biomejs/biome/pull/6318
    • perf: resolve and map types in single pass by @arendjr in https://github.com/biomejs/biome/pull/6319
    • perf: deduplicate types by @arendjr in https://github.com/biomejs/biome/pull/6324
    • chore: add swr fixtures by @arendjr in https://github.com/biomejs/biome/pull/6339
    • fix(resolver): resolve type definitions for JavaScript files by @arendjr in https://github.com/biomejs/biome/pull/6343
    • feat(core): flatten intersections + call signatures by @arendjr in https://github.com/biomejs/biome/pull/6404
    • perf: preallocate type store by @arendjr in https://github.com/biomejs/biome/pull/6421
    • perf: store types behind Arcs by @arendjr in https://github.com/biomejs/biome/pull/6442
    • feat: add nx.json project.json to Well-known files by @ianzone in https://github.com/biomejs/biome/pull/6488
    • feat(linter): handle arrays of Promises in noFloatingPromises by @arendjr in https://github.com/biomejs/biome/pull/6512
    • fix(core): handle ternary in type alias by @arendjr in https://github.com/biomejs/biome/pull/6520
    • fix(core): infer method return types by @arendjr in https://github.com/biomejs/biome/pull/6525
    • fix(core): infer types of properties with getters by @arendjr in https://github.com/biomejs/biome/pull/6531
    • chore: add test case by @arendjr in https://github.com/biomejs/biome/pull/6532
    • feat(core): handle logical operators by @arendjr in https://github.com/biomejs/biome/pull/6550
    • ci: fix JSON payload release dispatch by @ematipico in https://github.com/biomejs/biome/pull/6580
    • chore: remove disclaimer on noFloatingPromises by @arendjr in https://github.com/biomejs/biome/pull/6579
    • chore: update next by @arendjr in https://github.com/biomejs/biome/pull/6581
    • feat(biome_js_analyse): added new rule noMagicNumbers by @vladimir-ivanov in https://github.com/biomejs/biome/pull/6562
    • chore(justfile): adjust indentation and remove extra blank lines in justfile by @paulo9mv in https://github.com/biomejs/biome/pull/6568
    • refactor(useSortedKeys): transfer trailing separator upon sorting by @Conaclos in https://github.com/biomejs/biome/pull/6587
    • fix(lsp): fix all should check for embedded languages by @ematipico in https://github.com/biomejs/biome/pull/6594
    • feat(core): implement conditional handling by @arendjr in https://github.com/biomejs/biome/pull/6593
    • chore: update contribution guide to include vladimir ivanov as a maintainer by @vladimir-ivanov in https://github.com/biomejs/biome/pull/6564
    • fix(biome_js_analyze): fix JsDocTypeCollectorVisitior to also walk on JsStaticMemberAssignment by @daivinhtran in https://github.com/biomejs/biome/pull/6600
    • docs: add mdevils to maintainers by @mdevils in https://github.com/biomejs/biome/pull/6612
    • chore(lint): fix document of the noMagicNumbers rule that produces invalid MDX by @siketyan in https://github.com/biomejs/biome/pull/6598
    • refactor: extract out a biome_line_index crate by @DavisVaughan in https://github.com/biomejs/biome/pull/6222
    • fix(biome-js-analyze): fixed the diagnostic message for noFocusedTests to display the offending fn name by @vladimir-ivanov in https://github.com/biomejs/biome/pull/6599
    • chore: add syntax parser directive to Dockerfile by @JamBalaya56562 in https://github.com/biomejs/biome/pull/6619
    • feat(core): port SyntaxNodePtr and AstPtr from rowan by @rmehri01 in https://github.com/biomejs/biome/pull/6534
    • fix(biome-js-analyze): detect json import attribute with trimmed text value instead of plain text value by @Shinyaigeek in https://github.com/biomejs/biome/pull/6618
    • feat(core): targeted file scanner by @arendjr in https://github.com/biomejs/biome/pull/6614
    • fix(core): fix extending configs with root field by @arendjr in https://github.com/biomejs/biome/pull/6625
    • chore(deps): pin docker/dockerfile docker tag to 9857836 by @renovate in https://github.com/biomejs/biome/pull/6626
    • chore(deps): update dependency @types/node to v22.15.34 by @renovate in https://github.com/biomejs/biome/pull/6627
    • fix(deps): update @biomejs packages by @renovate in https://github.com/biomejs/biome/pull/6632
    • chore(deps): update rust crate papaya to 0.2.3 by @renovate in https://github.com/biomejs/biome/pull/6630
    • chore(deps): update rust crate ureq to 3.0.12 by @renovate in https://github.com/biomejs/biome/pull/6631
    • fix(cli): lax stdin strictness by @ematipico in https://github.com/biomejs/biome/pull/6596
    • feat(core): infer sequence operator and update operators by @arendjr in https://github.com/biomejs/biome/pull/6637
    • feat(yaml): overhauling YAML lexer by @vohoanglong0107 in https://github.com/biomejs/biome/pull/6481
    • feat(wasm): expose MemoryFileSystem via WASM API by @siketyan in https://github.com/biomejs/biome/pull/6428
    • fix(core): fix inference for boolean that must be truthy by @arendjr in https://github.com/biomejs/biome/pull/6641
    • fix(biome-js-analyze): update changes by @vladimir-ivanov in https://github.com/biomejs/biome/pull/6636
    • fix(lsp): add missing checks for capability dynamic registration support by @skewb1k in https://github.com/biomejs/biome/pull/6643
    • fix(js-api): don't use types of others modules by @regseb in https://github.com/biomejs/biome/pull/6535
    • refactor: share lint rule options by @ematipico in https://github.com/biomejs/biome/pull/5543
    • perf: optimise ignore checking by @arendjr in https://github.com/biomejs/biome/pull/6659
    • chore: merge next into main by @arendjr in https://github.com/biomejs/biome/pull/6583
    • feat(core): offset parsing by @ematipico in https://github.com/biomejs/biome/pull/6652
    • fix(formatter): void elements with slash by @ematipico in https://github.com/biomejs/biome/pull/6663
    • fix(lint/noSecrets): calculate entropy with entropyThreshold option by @unvalley in https://github.com/biomejs/biome/pull/6642
    • fix(biome-js-analyze): move no_secrets options inside biome-rules-opt… by @vladimir-ivanov in https://github.com/biomejs/biome/pull/6672
    • fix(core): css assist by @ematipico in https://github.com/biomejs/biome/pull/6682
    • fix(format/html): fix mangling of embedded language tags if whitespaceSensitivity is strict by @dyc3 in https://github.com/biomejs/biome/pull/6673
    • feat(parser): parse Astro frontmatter by @ematipico in https://github.com/biomejs/biome/pull/6689
    • chore(core): add resource to diagnostic by @ematipico in https://github.com/biomejs/biome/pull/6685
    • fix(parse/html): make . a valid char in tag names by @dyc3 in https://github.com/biomejs/biome/pull/6693
    • fix(formatter): trailing commas in json files by @ematipico in https://github.com/biomejs/biome/pull/6683
    • feat: make enum can be transform in scope by @cqh963852 in https://github.com/biomejs/biome/pull/6678
    • fix(biome-js-analyze): useReadonlyClassProperties check class getters… by @vladimir-ivanov in https://github.com/biomejs/biome/pull/6671
    • feat(biome_js_analyse): added new option to rule to ignore unused function parameters by @vladimir-ivanov in https://github.com/biomejs/biome/pull/6405
    • fix(core): ignore nested configs by @arendjr in https://github.com/biomejs/biome/pull/6662
    • fix(lint/noImplicitCoercion): false positive for 1 / value by @unvalley in https://github.com/biomejs/biome/pull/6696
    • fix(css_formatter): correct spacing in container style queries by @denbezrukov in https://github.com/biomejs/biome/pull/6700
    • fix(biome_analyze): stop squashing multiple line suppression comments. by @sterliakov in https://github.com/biomejs/biome/pull/6650
    • fix(noShadow): fix a false positive related to function parameters inside type definitions by @dyc3 in https://github.com/biomejs/biome/pull/6709
    • fix(biome_js_analyze): correct text range of suppression reason by @sterliakov in https://github.com/biomejs/biome/pull/6711
    • fix(service): biome/file_features still should return a map instead of an array by @siketyan in https://github.com/biomejs/biome/pull/6718
    • fix(lint/complexity/useDateNow): improve error message by @wojtekmaj in https://github.com/biomejs/biome/pull/6413
    • docs: fix typos in CHANGELOG & CONTRIBUTING by @noritaka1166 in https://github.com/biomejs/biome/pull/6721
    • docs: update analyzer contribution guide by @ematipico in https://github.com/biomejs/biome/pull/6651
    • fix(lsp): do not response error on pulling actions from GritQL files by @siketyan in https://github.com/biomejs/biome/pull/6716
    • feat(linter): add $ to organize imports :ALIAS: group by @minht11 in https://github.com/biomejs/biome/pull/6720
    • fix(biome-service): override all formatter options with user configured overrides by @marko-hologram in https://github.com/biomejs/biome/pull/6679
    • chore(deps): update dependency dprint to v0.50.1 by @renovate in https://github.com/biomejs/biome/pull/6734
    • chore(deps): update dependency @types/node to v22.16.0 by @renovate in https://github.com/biomejs/biome/pull/6735
    • chore(deps): update dependency eslint to v9.30.1 by @renovate in https://github.com/biomejs/biome/pull/6738
    • chore(deps): update dependency @types/node to v22.16.0 by @renovate in https://github.com/biomejs/biome/pull/6737
    • chore(deps): update github-actions by @renovate in https://github.com/biomejs/biome/pull/6741
    • chore(deps): update dependency rust to v1.88.0 by @renovate in https://github.com/biomejs/biome/pull/6740
    • chore(deps): update rust crate indexmap to 2.10.0 by @renovate in https://github.com/biomejs/biome/pull/6742
    • chore(deps): update rust crate rust-lapper to 1.2.0 by @renovate in https://github.com/biomejs/biome/pull/6743
    • chore: update contribution and changesets by @ematipico in https://github.com/biomejs/biome/pull/6748
    • chore: remove style rule migration by @arendjr in https://github.com/biomejs/biome/pull/6746
    • feat(biome_analyzer): support shebang together with // biome-ignore-all file-level suppressions by @sterliakov in https://github.com/biomejs/biome/pull/6712
    • perf(biome_package): improve performance of biome_package by @vladimir-ivanov in https://github.com/biomejs/biome/pull/6732
    • fix(core): .gitignore is discovered in more scenarios by @arendjr in https://github.com/biomejs/biome/pull/6752
    • fix(lint/noUselessFragments): apply the same logic for shorthand fragments and Fragment elements by @siketyan in https://github.com/biomejs/biome/pull/6717
    • chore: reduce PackageJson size by @arendjr in https://github.com/biomejs/biome/pull/6754
    • fix(grit): match bare imports by @arendjr in https://github.com/biomejs/biome/pull/6758
    • fix(cli): improve error messages when given incompatible arguments by @dyc3 in https://github.com/biomejs/biome/pull/6753
    • fix(noUnusedImports): formally make an exception for type augmentation imports by @dyc3 in https://github.com/biomejs/biome/pull/6756
    • perf(biome_package): updated incorrect generic passed to deserialize_… by @vladimir-ivanov in https://github.com/biomejs/biome/pull/6760
    • chore: clean up changesets by @arendjr in https://github.com/biomejs/biome/pull/6768
    • chore: set versions for new rules by @arendjr in https://github.com/biomejs/biome/pull/6769
    • chore: don't break up paragraphs in changesets by @arendjr in https://github.com/biomejs/biome/pull/6770
    • ci: release by @github-actions in https://github.com/biomejs/biome/pull/6582

    New Contributors

    • @paulo9mv made their first contribution in https://github.com/biomejs/biome/pull/6568
    • @DavisVaughan made their first contribution in https://github.com/biomejs/biome/pull/6222
    • @Shinyaigeek made their first contribution in https://github.com/biomejs/biome/pull/6618
    • @skewb1k made their first contribution in https://github.com/biomejs/biome/pull/6643
    • @cqh963852 made their first contribution in https://github.com/biomejs/biome/pull/6678
    • @marko-hologram made their first contribution in https://github.com/biomejs/biome/pull/6679

    Full Changelog: https://github.com/biomejs/biome/compare/@biomejs/[email protected]...@biomejs/[email protected]

    Open source →
    Additional notes

    Major Changes

    • Biome now resolves globs and paths from the configuration. Before, paths and globs were resolved from the working directory.

    • Biome now raises a warning diagnostic for suppression comments that have <explanation> as reason.

      <explanation> is provided as a placeholder when applying the suppression code fix from LSP editors.

    • Removed the --config-path argument from the biome lsp-proxy and biome start commands.

      The option was overriding the configuration path for all workspaces opened in the Biome daemon, which led to a configuration mismatch problem when multiple projects are opened in some editors or IDEs.

      If you are using one of our official plugins for IDEs or editors, it is recommended to update it to the latest version of the plugin, or you will get unexpected behavior.

      If you are a developer of a plugin, please update your plugin to use the workspace/configuration response instead of using the --config-path argument. Biome's LSP will resolve a configuration in the workspace automatically, so it is recommended to keep it empty unless you are using a custom configuration path.

    • Downgraded some code fixes to unsafe which were previously safe.

      The following rules have now a unsafe fix:

      If you want to keep applying these fixes automatically, configure the rule fix as safe:

      {
        "linter": {
          "rules": {
            "correctness": {
              "noFlatMapIdentity": {
                "level": "error",
                "fix": "safe"
              },
              "noUnusedImports": {
                "level": "error",
                "fix": "safe"
              }
            }
          }
        }
      }
      
    • Previously the lint rules noControlCharactersInRegex and noMisleadingCharacterClass checked both regular expression literals like /regex/ and dynamically built regular expressions like new RegExp("regex").

      Checking dynamically built regular expressions has many limitations, edge cases, and complexities. In addition, other rules that lint regular expressions don't check dynamically built regular expressions.

      Rather than add support for other rules and have half-baked checking, we decided to remove support for dynamically built regular expressions.

      Now the lint rules noControlCharactersInRegex and noMisleadingCharacterClass only check literals of regular expressions.

    • The lint rule noRestrictedGlobals now supports customizing message for each global name.

      For example, the following configuration:

      {
        "options": {
          "deniedGlobals": {
            "$": "jQuery is not allowed. Use native DOM manipulation instead."
          }
        }
      }
      

      emits a diagnostic:

      index.js:1:13 lint/style/noRestrictedGlobals ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
      
        ⚠ Do not use the global variable $.
      
        > 1 │ console.log($)
            │             ^
          2 │
      
        ℹ jQuery is not allowed. Use native DOM manipulation instead.
      

      Breaking Change: The option deniedGlobals is now a record instead of an array. Run biome migrate to migrate the configuration automatically.

    • Removed include and ignore fields in favor of the new field includes.

      The Biome configuration file allows users to specify which files should be processed using glob patterns. Prior to Biome 2.0, this was done using the include and ignore fields. In Biome 2.0, include and ignore are removed and replaced by includes. You can run biome migrate to convert include and ignore into includes automatically.

      includes uses a different glob pattern format that fixes many issues and many other limitations that Biome users reported.

      includes accepts an array of glob patterns. A glob pattern starting with a ! is a negated pattern also called exception. This replaces ignore patterns and allows users to create chains of include and ignore patterns. Thus, it is now possible to include again a file previously ignored. This was not possible with include and ignore, because ignore has priority over include.

      The semantics of * and **/* have changed too. Before, with include and ignore, the glob * was interpreted as **/*. Now, with includes, the globs * and **/* are interpreted differently. The first pattern matches all files that are inside a folder. The second pattern recursively matches all files and sub-folders inside a folder.

      Let's take an example. Given the following file hierarchy of a project...

      ├── biome.json
      ├── src
      │   ├── file.js
      │   ├── file.ts
      │   ├── out.gen.js
      │   ├── file.test.js
      │   └── test
      │       └── special.test.js
      └── test ...
      

      ...we want:

      1. Ignore all files ending with .test.js, except special.test.ts.
      2. Ignore all files of the test directory. The test directory is located at the root of the project.
      3. Execute the linter on files in the src directory, that don't end with .gen.js. The src directory is located at the root of the project.
      4. Enable the noDefaultExport lint rule on files ending with .ts.

      Prior to Biome 2.0, the configuration might look like:

      {
        "files": {
          "ignore": ["*.test.js", "test"]
        },
        "linter": {
          "include": ["src/**"],
          "ignore": ["*.gen.js"],
          "enabled": true
        },
        "overrides": [
          {
            "include": ["*.ts"],
            "linter": { "rules": { "style": { "noDefaultExport": "on" } } }
          }
        ]
      }
      

      Unfortunately, the configuration doesn't quite fit what we want:

      1. There is no way to ignore files and unignore one of them. Thus, we ignore all files ending with .test.js, including special.test.ts.
      2. The configuration ignores all directories named test, including src/test.
      3. The linter is executed on all files of all directories named src

      All these issues and limitations are fixed with includes. Here the migrated configuration:

      {
        "files": {
          "includes": ["**", "!**/*.test.js", "**/special.test.ts", "!test"]
        },
        "linter": {
          "includes": ["src/**", "!**/*.gen.js"],
          "enabled": true
        },
        "overrides": [
          {
            "includes": ["**/*.ts"],
            "linter": { "rules": { "style": { "noDefaultExport": "on" } } }
          }
        ]
      }
      
      1. All files named special.test.ts are unignored because the pattern appear after the pattern that ignore files ending with .test.js.
      2. Only the test directory at the project's root is ignored because the pattern doesn't start with **/.
      3. The linter is executed on the src directory at the project's root only.

      Because includes pattern have a different pattern format than include and ignore we made some adjustments:

      • We added the pattern ** in files.includes to ensure that all files are included before ignoring some of them.
      • We added the prefix **/ for patterns that must match at any level of the file hierarchy.
    • noUndeclaredVariables no longer reports TypeScript types.

      In TypeScript projects, developers often use global declaration files to declare global types. Biome is currently unable to detect these global types. This creates many false positives for noUndeclaredVariables.

      TypeScript is better suited to perform this kind of check. As proof of this, TypeScript ESLint doesn't provide any rule that extends the no-undef ESLint rule.

      This is why Biome 1.9 introduced a new option checkTypes which, when it is set to false, ignores undeclared type references. The option was set to true by default.

      This option is now set to false by default. To get the previous behavior, you have to set checkTypes to true:

      {
        "linter": {
          "rules": {
            "correctness": {
              "noUndeclaredVariables": {
                "level": "on",
                "options": { "checkTypes": true }
              }
            }
          }
        }
      }
      
    • The rule noUnusedVariables no longer reports unused function parameters. Use noUnusedFunctionParameters.

    • Fixed #5564. noTypeOnlyImportAttributes now ignores files ending with the extension .ts when the type field of package.json is set to commonjs.

    • The Biome formatter no longer adds a trailing comma in .json files, even when json.formatter.trailingCommas is set to true.

    • Prettier 3.4 introduced a change in their normalization process of string literals: it no longer unescapes useless escape sequences. Biome now matches the new behavior of Prettier when formatting code. This affects the JSON and JavaScript formatters.

    • Reduced accepted values for formatter options:

      • The option --quote-style doesn't accept Single and Double anymore.
      • The option --quote-properties doesn't accept AsNeeded and Preserve anymore.
      • The option --semicolons doesn't accept AsNeeded and Always anymore.
      • The option --arrow-parenthesis doesn't accept AsNeeded and Always anymore.
      • The option --trailing-commas doesn't accept ES5, All and None anymore.
      • The option --attribute-position doesn't accept Single and Multiline anymore.
    • Removed the option enumMemberCase from the lint rule useNamingConvention.

      enumMemberCase is an option that allows to customize the enforced case for TypeScript's enum members. The option was introduced prior to the conventions option that allows to do the same thing.

      The following configuration...

      {
        "linter": {
          "rules": {
            "style": {
              "useNamingConvention": {
                "level": "on",
                "options": {
                  "enumMemberCase": "PascalCase"
                }
              }
            }
          }
        }
      }
      

      ...must be rewritten as:

      {
        "linter": {
          "rules": {
            "style": {
              "useNamingConvention": {
                "level": "on",
                "options": {
                  "conventions": [
                    {
                      "selector": { "kind": "enumMember" },
                      "formats": ["PascalCase"]
                    }
                  ]
                }
              }
            }
          }
        }
      }
      

      Run biome migrate --write to turn enumMemberCase into conventions automatically.

    • Removed support for BIOME_LOG_DIR.

      The environment variable BIOME_LOG_DIR isn't supported anymore.

      Use BIOME_LOG_PATH instead.

    • Remove deprecated rules.

      The following deprecated rules have been deleted:

      • noInvalidNewBuiltin
      • noNewSymbol
      • useShorthandArrayType
      • useSingleCaseStatement
      • noConsoleLog

      Run the command biome migrate --write to update the configuration.

    • Removed the deprecated indentSize option.

      The deprecated option indentSize, and its relative CLI options, has been removed:

      • Configuration file: formatter.indentSize
      • Configuration file: javascript.formatter.indentSize
      • Configuration file: json.formatter.indentSize
      • CLI option --indent-size
      • CLI option --javascript-formatter-indent-size
      • CLI option --json-formatter-indent-size

      Use indentWidth and its relative CLI options instead.

    • Removed ROME_BINARY. Use BIOME_BINARY instead.

    • Removed support for legacy suppressions.

      Biome used to support "legacy suppressions" that looked like this:

      // biome-ignore lint(complexity/useWhile): reason
      

      This format is no longer supported.

    • Removed support for max_line_length from .editorconfig, as it isn't part of the official spec anymore.

    • Removed support for rome-ignore suppression comments.

      Use biome-ignore suppression comments instead.

    • Removed support for rome.json.

      Use biome.json or biome.jsonc instead.

    • Removed the option all from the linter.

      The options linter.rules.all and linter.rules.<group>.all has been removed.

      The number of rules in Biome have increased in scope and use cases, and sometimes some of them can conflict with each other.

      The option was useful at the beginning, but now it's deemed harmful, because it can unexpected behaviours in users projects.

      To automatically remove it, run the following command:

      biome migrate --write
      
    • Removed the option trailingComma from the configuration and the CLI. Use the option trailingCommas instead:

      {
        "javascript": {
          "formatter": {
      -      "trailingComma": "es5"
      +      "trailingCommas": "es5"
          }
        }
      }
      
      -biome format --trailing-comma=es5
      +biome format --trailing-commas=es5
      
    • Removed --apply and --apply-unsafe.

      The CLI options --apply and --apply-unasfe aren't accepted anymore. Use --write and --write --unafe instead:

      -biome check --apply-unsafe
      +biome check --write --unsafe
      
      -biome check --apply
      +biome check --write
      
    • Removed support for assert syntax.

      Biome now longer supports the assert syntax, use the new with syntax instead

      -import {test} from "foo.json" assert { for: "for" }
      -export * from "mod" assert { type: "json" }
      +import {test} from "foo.json" with { for: "for" }
      +export * from "mod" with { type: "json" }
      
    • Fixed #5495: The rule noBlankTarget has been updated to accept the rel="noopener" in addition to rel="noreferrer". In addition, an option has been added that allows rel="noreferrer" to be disabled.

      The rule has been moved from the a11y group to the security group.

    • The rule useImportRestrictions has been renamed to noPrivateImports, and its functionality has been significantly upgraded.

      Previously, the rule would assume that any direct imports from modules inside other directories should be forbidden due to their package private visibility.

      The updated rule allows configuring the default visibility of exports, and recognises JSDoc comments to override this visibility. The default visibility is now **public**, but can be set to **package**, or even **private**. Refer to the documentation of the rule to understand how to leverage the JSDoc comments.

      noPrivateImports is now recommended by default.

    • The Biome daemon now reuses its workspace across connections. This allows multiple clients to reuse the same documents and other cached data that we extract from them.

      This primarily affects our IDE extensions: If you open multiple IDEs/windows for the same project, they'll connect to the same daemon and reuse each other's workspace.

      The Biome CLI is unaffected unless you opt in with the --use-server argument.

    • Biome no longer treats too large files as errors.

      Previously, files that exceed the configured size limit would throw an error, and the CLI would exit with an error code.

      Now, the CLI ignores the file, emits an information diagnostic and doesn't exit with an error code.

    • Change the group of some rules, promote nursery rules and update the recommended rule set.

      The following rules have been moved to a new group:

      New rules are incubated in the nursery group. Once stable, we promote them to a stable group. Use the biome migrate command to automatically migrate nursery rules that have been promoted.

      The following CSS rules have been promoted:

      The following GraphQL rules have been promoted:

      The following JavaScript rules have been promoted:

      Moreover, the following JavaScript rules are now recommended:

      And the following style rules are no longer recommended:

    • Update the default severity level of lint rules.

      Every diagnostic emitted by Biome has a severity level set to error, warn, or info. Previously, all recommended lint rules had a default severity level set to error. All other lint rules had a default severity level set to warn.

      We have adjusted the default severity level of every rule, whether recommended or not, to better communicate the severity that a diagnostic highlights.

      • Rules that report hard errors, likely erroneous code, dangerous code, or accessibility issues now have a default severity level of error.
      • Rules that report possibly erroneous codes, or code that could be cleaner if rewritten in another way now have a default severity level of warn.
      • Rules that reports stylistic suggestions now have a default severity level of info.

      You can use the CLI option --diagnostic-level=error to display only errors, or --diagnostic-level=warning to display both errors and warnings. By default, all diagnostics are shown. You can also use the CLI option --error-on-warnings to make the command fail when warnings are emitted.

    • Reworked some recommended rules recommended to be less pedantic and blocking. This is a breaking change if your project relied on those rules to block the CI in case of violations; if that's the case, you should raise their severity level to error.

      Some rules aren't recommended anymore, and some others return a different severity.

      The following rules return a warning diagnostic:

      • noDelete
      • noForEach
      • noSuspiciousSemicolonInJsx
      • noThisInStatic
      • noUnusedLabels

      The following rules return an information diagnostic:

      • noUselessCatch
      • noUselessConstructor
      • noUselessEmptyExport
      • noUselessFragments
      • noUselessLabel
      • noUselessLoneBlockStatements
      • noUselessSwitchCase
      • noUselessTernary
      • noUselessThisAlias
      • noUselessTypeConstraint
      • noFlatMapIdentity

      The following rules aren't recommended anymore:

      • noDelete
      • noForEach

      The rule noRenderReturnValue and useExhaustiveDependencies are only recommended when the react domain is enabled.

    • Renamed the global option --skip-errors to --skip-parse-errors.

    • Remove the code action quickfix.suppressRule.

      The code action quickfix.suppressRule was removed in favour of two new code actions:

      • quickfix.suppressRule.inline.biome: a code action that adds a suppression comment for each violation.
      • quickfix.suppressRule.topLevel.biome: a code action that adds a suppression comment at the top of the file which suppresses a rule for the whole file.

      Given the following code

      let foo = "one";
      debugger;
      

      The code action quickfix.suppressRule.inline.biome will result in the following code:

      // biome-ignore lint/style/useConst: <explanation>
      let foo = "one";
      // biome-ignore lint/suspicious/noDebugger: <explanation>
      debugger;
      

      The code action quickfix.suppressRule.topLevel.biome, instead, will result in the following code:

      /** biome-ignore lint/suspicious/noDebugger: <explanation> */
      /** biome-ignore lint/style/useConst: <explanation> */
      
      let foo = "one";
      debugger;
      
    • Changed default formatting of package.json.

      When Biome encounters a file called package.json, by default it will format the file with all objects and arrays expanded.

      - { "name": "project", "dependencies": { "foo": "latest" } }
      + {
      +  "projectName": "project",
      +  "dependencies": {
      +    "foo": "^1.0.0"
      +  }
      + }
      
    • The organizeImports is now part of Biome Assist.

    • The rule noVar now belongs to the suspicious group

    • The rule useWhile now belongs to the complexity group.

    • The rule useImportExtensions has been updated to suggest actual file extensions instead of guesses based on hueristics.

      As part of this, the suggestedExtensions option has been removed. A simpler, new option called forceJsExtensions has been introduced for those who use tsc's "module": "node16" setting.

      The rule also no longer reports diagnostics to add an extension when the path doesn't exist at all, with or without extension.

    • Fixed #4545: useNamingConvention now correctly ignores declarations inside TypeScript's external modules.

      The following interface name is no longer reported by the rule:

      declare module "myExternalModule" {
        export interface my_INTERFACE {}
      }
      
    • The rule useAltText no longer checks the element's attributes containing object spread.

      The following code doesn't trigger the rule anymore:

      <img src="test.png" alt={alt} {...restProps}></img>
      
    • The rule useNamingConvention no longer accepts non-ASCII characters by default.

      Prior to Biome 2.0, non-ASCII names were accepted by default. They are now rejected.

      For example, the following code is now reported as invalid by the useNamingConvention rule.

      let johnCafé;
      

      If you want to allow non ASCII filenames and non-ASCII identifiers, you need to set the requireAscii options in your Biome configuration file to false:

      {
          "linter": {
              "rules": {
                  "style": {
                      "useFilenamingConvention": {
                          "level": "on",
                          "options": {
                              "requireAscii": false
                          }
                      }
                      "useFilenamingConvention": {
                          "level": "on",
                          "options": {
                              "requireAscii": false
                          }
                      }
                  }
              }
          }
      }
      
    • Renamed the rule noUnnecessaryContinue to noUselessContinue. Run the command biome migrate to update your configuration.

    • Renamed the rule noMultipleSpacesInRegularExpressionLiterals to noAdjacentSpacesInRegex. Run the command biome migrate to update your configuration.

    Minor Changes

    • An option called allowNoReferrer has been added to the noBlankTarget rule.

      By default, noBlankTarget accepts both rel="noopener" and rel="noreferrer" with links that have target="_blank". This is because the latter implies the former, so either one is sufficient to mitigate the security risk.

      However, allowing rel="noreferrer" may still be undesirable, because it can break tracking, which may be an undesirable side-effect. As such, you can set allowNoReferrer: false to only accept rel="noopener".

    • Added new option javascript.parser.jsxEverywhere. This new option allows to control whether Biome should expect JSX syntax in .js/.mjs/.cjs files.

      When jsxEverywhere is set to false, having JSX syntax like <div></div> inside .js/.mjs/.cjs files will result in a parsing error.

      Despite the name of the option, JSX is never supported inside .ts files. This is because TypeScript generics syntax may conflict with JSX in such files.

      This option defaults to true.

    • Add a new JS assist rule - useSortedKeys which enforces ordering of a JS object properties. This rule will consider spread/calculated keys e.g [k]: 1 as non-sortable. Instead, whenever it encounters a non-sortable key, it will sort all the previous sortable keys up until the nearest non-sortable key, if one exist. This prevents breaking the override of certain keys using spread keys.

      Source: https://perfectionist.dev/rules/sort-objects

      // Base
      // from
      const obj = {
        b: 1,
        a: 1,
        ...g,
        ba: 2,
        ab: 1,
        set aab(v) {
          this._aab = v;
        },
        [getProp()]: 2,
        aba: 2,
        abc: 3,
        abb: 3,
        get aaa() {
          return "";
        },
      };
      // to
      const obj = {
        a: 1,
        b: 1,
        ...g,
        set aab(v) {
          this._aab = v;
        },
        ab: 1,
        ba: 2,
        [getProp()]: 2,
        get aaa() {
          return "";
        },
        aba: 2,
        abb: 3,
        abc: 3,
      };
      
    • Added the new rule noFloatingPromises.

    • Added the new rule noImportCycles.

    • Added the new rule noTsIgnore.

    • Added the new rule noUnwantedPolyfillio.

    • Added a format option expand for Javascript and JSON formatters. The option allows to enforce the formatting of arrays and objects on multiple lines, regardless of their length. It has three options:

      When set to auto (default), objects are expanded if the first property has a leading newline. Arrays are collapsed when they fit to a single line. For example, both styles below are considered as already formatted:

      const obj = {
        foo: "bar",
      };
      
      const obj = { foo: "bar" };
      

      When set to always, objects and arrays are always expanded.

      When set to never, objects and arrays are never expanded when they fit in a single line. It is equivalent to Prettier's Object Wrap option with collapse.

    • The nursery rule noUnresolvedImports has been added.

      Importing a non-existing export is an error at runtime or build time. With this rule, Biome can detect such incorrect imports and report errors for them.

      Note that if you use TypeScript, you probably don't want to use this rule, since TypeScript already performs such checks for you.

    • The rule noFocusedTests can now detect the usage of focused tests inside loops.

      // invalid
      describe.only.each([["a"], ["b"]])("%s", (a) => {});
      it.only.each([["a"], ["b"]])("%s", (a) => {});
      test.only.each([["a"], ["b"]])("%s", (a) => {});
      
      // valid
      describe.each([["a"], ["b"]])("%s", (a) => {});
      it.each([["a"], ["b"]])("%s", (a) => {});
      test.each([["a"], ["b"]])("%s", (a) => {});
      
    • Linter groups now accept new options to enable/disable all rules that belong to a group, and control the severity of the rules that belong to those groups.

      For example, you can downgrade the severity of rules that belong to "style" to emit "info" diagnostics:

      {
        "linter": {
          "rules": {
            "style": "info"
          }
        }
      }
      

      You can also enable all rules that belong to a group using the default severity of the rule using the "on" option:

      {
        "linter": {
          "rules": {
            "complexity": "on"
          }
        }
      }
      
    • Biome assist is a new feature of the Biome analyzer. The assist is meant to provide actions. Actions differ from linter rules in that they aren't meant to signal errors.

      The assist will provide code actions that users can opt into via configuration or via IDEs/editors, using the Language Server Protocol.

      The assist is enabled by default. However, you can turn if off via configuration:

      {
        "assist": {
          "enabled": false
        }
      }
      

      You can turn on the actions that you want to use in your configuration. For example, you can enable the useSortedKeys action like this:

      {
        "assist": {
          "actions": {
            "source": {
              "useSortedKeys": "on"
            }
          }
        }
      }
      

      Alternatively, IDE/editor users can decide which action to apply on save directly from the editor settings, as long as the assist is enabled.

      For example, in VS Code you can apply the useSortedKeys action when saving a file by adding the following snippet in settings.json:

      {
        "editor.codeActionsOnSave": {
          "source.biome.useSortedKeys": "explicit"
        }
      }
      

      In Zed, you can achieve the same by adding the following snippet in ~/.config/zed/settings.json:

      {
        "code_actions_on_format": {
          "source.biome.useSortedKeys": true
        }
      }
      
    • Biome migrate eslint outputs a better overriding behavior.

      A Biome rule can have multiple ESLint equivalent rules. For example, useLiteralKeys has two ESLint equivalent rules: dot-notation and @typescript-eslint/dot-notation.

      Previously, Biome wouldn't always enable a Biome rule even if one of its equivalent rules was enabled. Now Biome uses the higher severity level of all the equivalent ESLint rules to set the severity level of the Biome rule.

      The following ESLint configuration...

      {
        "rules": {
          "@typescript-eslint/dot-notation": "error",
          "dot-notation": "off"
        }
      }
      

      ...is now migrated to...

      {
        "linter": {
          "rules": {
            "complexity": {
              "useLiteralKeys": "error"
            }
          }
        }
      }
      

      ...because error is higher than off.

    • Add useSymbolDescription.

    • Enhanced the command migrate eslint. Now the command shows which ESLint rules were migrated, and which rules aren't supported yet.

      ./eslint.config.js migrate ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
      
        ℹ 42% (3/7) of the rules have been migrated.
      
        ℹ Migrated rules:
      
        - getter-return
        - prefer-const
        - @typescript-eslint/require-await
      
        ℹ Rules that can be migrated to an inspired rule using --include-inspired:
      
        - @typescript-eslint/parameter-properties
      
        ℹ Rules that can be migrated to a nursery rule using --include-nursery:
      
        - @typescript-eslint/switch-exhaustiveness-check
      
        ℹ Stylistic rules that the formatter may support (manual migration required):
      
        - semi
      
        ℹ Unsupported rules:
      
        - block-scoped-var
      
      configuration ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
      
        ℹ Migration results:
      
        - ./biome.json: configuration successfully migrated.
      
    • Suppression of syntax rules

      Added support for suppressing syntax rules. Syntax rules are particular rules meant to complement the parser, hence they can't be configured.

      Biome now allows to suppress those rules. This can, for example, be useful in case the rule is affected by a bug. However, this is more an escape hatch, so if a syntax rule requires a suppression, please file an issue.

      Example:

      // biome-ignore syntax/correctness/noTypeOnlyImportAttributes: bug
      import type { MyType } from "my-esm-pkg" with { "resolution-mode": "import" };
      

      Biome now requires all biome-ignore-start suppressions to have an equivalent biome-ignore-end comment.

    • Add a new lint rule noConstantBinaryExpression. This rule is inspired from ESLint's no-constant-binary-expression rule.

    • The CLI options --only and --skip now accept rule and action names without prefixing the group name.

      Previously --only=noDebugger was rejected. You had to add the group name: --only=suspicious/noDebugger.

    • Fixed #3574: noUnusedImports now reports empty named imports and suggests their removal.

      The rule now suggests the removal of empty named imports such as:

      - import {} from "mod";
      
    • Added the new rule useAdjacentGetterSetter, which enforces getters and setters for the same property to be adjacent in class and object definitions.

      Example (Invalid): Name getter and setter are not adjacent:

      class User {
        get name() {
          return this._name;
        }
        constructor() {}
        set name(value) {
          this._name = value;
        }
      }
      

      **Example (Invalid): Getter should go before the setter.

      const user = {
        set name(value) {
          this._name = value;
        },
        get name() {
          return this._name;
        },
      };
      

      Example (Valid): Name getter and setter are adjacent:

      class User {
        get name() {
          return this._name;
        }
        set name(value) {
          this._name = value;
        }
        get age() {
          return this._age;
        }
        set age(age) {
          this._age = age;
        }
      }
      
    • Added new rule useConsistentResponse which suggests to use static Response.json() and Response.redirect() methods instead of new Response when possible.

      Example:

      new Response(JSON.stringify({ value: 1 }));
      Response.json({ value: 1 });
      
    • Biome users can now configure code actions from linter rules as well as assist actions directly in the settings of their IDE/editor.

      For example, let's consider the lint rule noSwitchDeclarations, which has an unsafe fix. Previously, if you wanted to use this rule, you were "forced" to enable it via configuration, and if you wanted to apply its fix when you saved a file, you were forced to mark the fix as safe:

      {
        "linter": {
          "rules": {
            "correctness": {
              "noSwitchDeclarations": {
                "level": "error",
                "fix": "safe"
              }
            }
          }
        }
      }
      

      Now, you can benefit from the code action without making the fix safe for the entire project. IDEs and editors that are LSP compatible allow to list a series of "filters" or code actions that can be applied on save. In the case of VS Code, you will need to add the following snippet in the settings.json:

      {
        "editor.codeActionsOnSave": {
          "quickfix.biome.correctness.noSwitchDeclarations": "explicit"
        }
      }
      

      Upon save, Biome will inform the editor the apply the code action of the rule noSwitchDeclarations.

    • Fixed #3401: noUnusedImports now keeps comments separated from the import with a blank line.

      For example:

        // Orphan comment
      
      - // Header comment
      - import {} from "mod";
      
    • Added a new propertyAssignment option to the noParameterAssign rule. This option allows to configure whether property assignments on function parameters are permitted. By default, propertyAssignment is set to allow. Setting it to deny enforces stricter immutability by disallowing property mutations on function parameters.

    • The formatter option bracketSpacing is now also supported in JSON files.

    • useValidTypeof now accepts comparisons with variables.

      Previously, the rule required to compare a typeof expression against another typeof expression or a valid string literal. We now accept more cases, notably comparison against a variable:

      if (typeof foo === bar) {
        // ...
      }
      
    • Added the new rule noNestedComponentDefinitions, which disallows nested component definitions in React components.

      This rule is useful for preventing potential performance issues and improving code readability by ensuring that components are defined at the top level.

      Example (Invalid):

      function ParentComponent() {
        function ChildComponent() {
          return <div>Hello</div>;
        }
        return <ChildComponent />;
      }
      

      Example (Valid):

      function ChildComponent() {
        return <div>Hello</div>;
      }
      function ParentComponent() {
        return <ChildComponent />;
      }
      
    • Added the new rule noDestructuredProps, which disallow the use of destructured props in Solid projects.

    • You can now enable lint rules using the default severity suggested by Biome using the new variant "on", when enabling a rule.

      For example, the default severity of the rule style.noVar is error, so you would use "on", and then linting a code that uses var, will result in an error:

      {
        "linter": {
          "recommended": false,
          "rules": {
            "style": {
              "noVar": "on"
            }
          }
        }
      }
      
      // main.js
      var name = "tobias";
      

      The command biome lint main.js will result in an error due to the default severity assigned to noVar.

      Refer to the documentation page of each rule to know their suggested diagnostic severity, or use the command biome explain <RULE_NAME>:

      biome explain noVar
      
    • Biome VCS integration now supports nested ignore files.

      For git, if a .gitignore is found in a nested folder root/packages/foo/, and it contains the pattern dist/, only files and directories inside root/packages/foo/dist are matched.

    • Added the rule useUniqueElementIds. This rule disallows the use of static IDs in React components. It encourages to generate unique IDs for accessibility purposes using useId.

      The following code is now reported as invalid:

      function App() {
        return <div id="static-id" />;
      }
      

      The following code is now reported as valid:

      import { useId } from "react";
      function App() {
        const id = useId();
        return <div id={id} />;
      }
      
    • Added the new JavaScript rule useConsistentObjectDefinition rule. The rule enforces a consistent style for the definition of objects:

      By default, the rule enforces a shorthand style:

      const validShorthand = {
        // Property shorthand
        foo,
      
        // Method shorthand
        method() {
          return "method";
        },
      };
      

      Alternatively, the rule can be configured to enforce an explicit style:

      const invalidExplicit = {
        // Basic property shorthand violations
        foo: foo,
      
        // Method shorthand violations
        method: function () {
          return "method";
        },
      };
      
    • Introduced more advanced logging capabilities:

      Every Biome CLI command can now be passed a --log-file=<path> argument, which will write all log messages for that invocation to the given path instead of stdout.

      In addition, the --log-level parameter now also accepts a tracing value. When --log-level=tracing is used, Biome also prints timing information from tracing spans to the log.

      Combined with Biome's ability to print logs in JSON format, and the jq command line utility, this allows you to perform advanced analysis on Biome's internal performance.

      For example, if you want to figure out which paths take the longest when building the module graph, you can use the following commands:

      biome lint --log-level=tracing --log-kind=json --log-file=tracing.json
      cat tracing.json | jq '. | select(.span.name == "update_module_graph") | { path: .span.path, time_busy: .["time.busy"], time_idle: .["time.idle"] }' > filtered.json
      

      Now you will have a file called filtered.json with all the relevant timings, together with the paths used during the invocations.

    • Added options to suspicious/noConfusingLabels to allow specific labels.

    • Fixed #4549: noUnknownProperty now accepts more known CSS properties.

      - ['anchor-default', 'anchor-scroll', 'inset-area', 'position-animation', 'position-fallback', 'position-fallback-bounds', 'position-try-options']
      + ['anchor-scope', 'interpolate-size', 'line-fit-edge', 'masonry', 'masonry-auto-tracks', 'masonry-direction', 'masonry-fill', 'masonry-flow', 'masonry-slack', 'masonry-template-areas', 'masonry-template-tracks', 'position-anchor', 'position-area', 'position-try-fallbacks', 'position-visibility', 'scroll-start-target', 'text-box', 'view-transition-class', 'view-transition-group']
      

      This change replaces deprecated properties, improving CSS validation.

    • LSP clients can now override the configuration path for each workspace, by responding to workspace/configuration requests.

    • Added the new CSS rule noImportantStyles, which prevents the use of !important inside CSS declarations.

    • Biome now emits a warning diagnostic if the configuration contains an out-of-sync schema URL.

    • Introduced a new configuration setting files.experimentalScannerIgnores.

      This setting may be used to configure a set of file and folder names that should be unconditionally ignored by Biome's scanner.

      Biome maintains an internal list of default ignore entries, which is based on user feedback and which may change in any release. This setting allows overriding this internal list completely.

      This is considered an advanced feature that users should not need to tweak themselves, but they can as a last resort. This setting can only be configured in root configurations, and is ignored in nested configs.

      Entries must be file or folder names. Specific paths and globs are not supported.

      Examples where this may be useful:

      {
        "files": {
          "experimentalScannerIgnores": [
            // You almost certainly don't want to scan your `.git` folder, which
            // is why it's already ignored by default:
            ".git",
      
            // But the scanner does scan `node_modules` by default. If you
            // *really* don't want this, you can ignore it like this:
            "node_modules",
      
            // But it's probably better to ignore a specific dependency.
            // For instance, one that happens to be particularly slow to scan:
            "RedisCommander.d.ts",
          ],
        },
      }
      

      Please be aware that rules relying on the module graph or type inference information may be negatively affected if dependencies of your project aren't (fully) scanned.

    • Added the new rule useSingleJsDocAsterisk which enforces JSDoc comment lines to start with a single asterisk.

      // Invalid
      /**
       ** Description
       */
      
      // Valid
      /**
       * Description
       */
      
    • The CLI flag --javascript-attribute-position was renamed to --javascript-formatter-attribute-position for consistency.

    • Introduced the domains linter feature. The Biome linter now has a new way to opt-in rules, with a concept called domains.

      Domains can be seen as concepts shared by different rules.

      You can enable and disable multiple rules that belong to a domain. When you assign "all", Biome will enable all the rules, when you assign "none", Biome will disable the rules, when you assign "recommended", Biome will enable all rules of the domain that are recommended.

      // biome.jsonc
      {
        linter: {
          domains: {
            test: "all", // all rules that belong to this domain are enabled
            react: "recommended", // only the recommended rules from this domain are enabled
            solid: "none", // rules related to Solid are disabled
          },
        },
      }
      

      New domains introduced:

      • test: it will enable rules:
        • noExportsInTest
        • noExcessiveNestedTestSuites
        • noDuplicateTestHooks
        • noFocusedTests And it will inject the following globals:
        • after
        • afterAll
        • afterEach
        • before
        • beforeEach
        • beforeAll
        • describe
        • it
        • expect
        • test
      • next: it will enable rules for Next.js projects:
        • useExhaustiveDependencies
        • useHookAtTopLevel
        • noImgElement
        • noHeadImportInDocument
        • noHeadImportInDocument
      • react: it will enable rules for React projects:
        • useExhaustiveDependencies
        • useHookAtTopLevel
      • solid: it will enable rules for Solid projects:
        • noReactSpecificProps

      For more information regarding how Biome enables rules via domains, please refer to the documentation page of each rule.

    • Biome now prints diagnostics sorted by their severity. The order is the following:

      1. information
      2. warning
      3. error

      This means that error diagnostics are printed last, so users can see them first.

    • Added the new rule useIterableCallbackReturn, which enforces consistent return values in iterable callbacks.

      The following methods require a return value in their callback:

      • every
      • filter
      • find
      • findIndex
      • findLast
      • findLastIndex
      • flatMap
      • map
      • reduce
      • reduceRight
      • some
      • sort
      • toSortedfrom (when called on Array)

      The rule disallows a return value inside the callback of the method forEach.

      Examples:

      [].map(() => {
        // Missing return value
      });
      
      [].forEach(() => {
        return 1; // Disallowed
      });
      
    • Added the new rule noReactPropAssign, based on the react-hooks rule react-hooks/react-compiler

      The following code is now reported as invalid:

      function Foo(props) {
        props.bar = `Hello ${props.bar}`;
        return <div>{props.bar}</div>;
      }
      

      The following code is now reported as valid:

      function Foo({ bar }) {
        bar = `Hello ${bar}`;
        return <div>{bar}</div>;
      }
      
    • Added new rule noBitwiseOperators, which disallows bitwise operators.

    • The Biome analyzer now supports a new top-level suppression. These suppression have to be placed at the top of the file, and they must be followed by two newlines (\n\n\).

      The analyzer rules specified inside the block comment will be suppressed for the whole file.

      In the example, we suppress the rules lint/style/useConst and lint/suspicious/noDebugger for the whole file:

      // main.js
      /**
       * biome-ignore-all lint/style/useConst: i like let
       * biome-ignore-all lint/suspicious/noDebugger: needed now
       */
      
      let path = "/path";
      let _tmp = undefined;
      debugger;
      

      In this other example, we suppress lint/suspicious/noEmptyBlock for a whole CSS file:

      /**
      /* biome-ignore-all lint/suspicious/noEmptyBlock: it's fine to have empty blocks
      */
      
      a {
      }
      span {
      }
      

      A new diagnostic is emitted if biome-ignore-all suppression isn't placed at the top of the file:

      file.js:3:1 suppressions/incorrect ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
      
        ! Top level suppressions can only be used at the beginning of the file.
      
          2 │ let foo = 2;
        > 3 │ /**
            │ ^^^
        > 4 │ * biome-ignore-all lint/style/useConst: reason
        > 5 │ */
            │ ^^
          6 │ let bar = 33;
      
        i Rename this to biome-ignore
      
          2 │ let foo = 2;
          3 │ /**
        > 4 │ * biome-ignore-all lint/style/useConst: reason
            │   ^^^^^^^^^^^^^^^^
          5 │ */
          6 │ let bar = 33;
      
      
      
    • Added the new rule useNumericSeparators, which encourages the use of numeric separators to improve readability.

    • useImportExtensions now checks imports with sub extensions.

      - import 'styles.css'
      + import 'styles.css.ts'
      
    • It's possible to override the option files.maxSize. This option is helpful if you need to process specific files that exceed the default maxSize:

      {
      	"overrides": [{
      		"includes": ["dist/**"]
      		"files": {
      			"maxSize": 20000
      		}
      	}]
      }
      
    • Added the new CLI option called --threads to the ci command. It allows to control the numbers of threads that can be used when using the Biome CLI.

      It's possible to use the environment variable BIOME_THREADS as an alternatives.

      This feature is useful when running the CLI in environments that have limited resources, for example CI/CD.

      biome ci --threads=1
      BIOME_THREADS=1 biome ci
      
    • Added the new rule useObjectSpread, which prefers object spread syntax over Object.assign() when constructing new objects.

      Example (Invalid): Using Object.assign with an empty object:

      Object.assign({}, foo);
      Object.assign({}, { foo: "bar" });
      

      Example (Invalid): Using Object.assign with object literal as first argument:

      Object.assign({ foo: "bar" }, baz);
      Object.assign({}, baz, { foo: "bar" });
      

      Example (Valid): Using object spread syntax:

      ({ ...foo });
      ({ ...baz, foo: "bar" });
      

      Example (Valid): Modifying existing objects is allowed:

      Object.assign(foo, { bar: baz });
      Object.assign(foo, bar, baz);
      
    • Added an option to the lint command called --suppress. The new option suppresses a violation instead of applying a rule fix. The option accepts a string that is used as reason of the suppression comment.

      When running the following command, it will add the suppression comment:

      biome lint --write --suppress="Migration to Biome"
      
      debugger;
      foo == bar;
      
      + // biome-ignore lint/suspicious/noDebugger: Migration to Biome
      debugger;
      + // biome-ignore lint/suspicious/noDoubleEquals: Migration to Biome
      foo == bar;
      
    • Add an ignoreRestSiblings option into noUnusedVariables.

      When this option is set to false, the rule will not ignore variables that created using the rest pattern:

      {
        "linter": {
          "rules": {
            "correctness": {
              "noUnusedVariables": {
                "level": "error",
                "options": {
                  "ignoreRestSiblings": false
                }
              }
            }
          }
        }
      }
      
      const { lorem, ...test } = bar; // the variable "test" will trigger the rule
      console.log(lorem);
      
    • Upgraded some unsafe fixes to safe fixes.

      The following rules have now a safe fix:

    • Added support for monorepos. The feature will work out of the box for the majority of the users. If your project has nested configuration files, use the command biome migrate from the root of the project.

      Monorepo support in Biome is done in a single way. Create a biome.json at the root of the project. This configuration file is now called the root configuration. Then, each nested configuration file must specify the new field "root": false.

      We also introduced a new microsyntax for extending a nested configuration from the root configuration, which is "extends": "//". This new syntax means “this config extends from the root config”. When using this microsyntax, you may omit the "root": false field as it is implied.

      Note that nested configs are not required to extend from the root config, and you can still have independent nested configs, as well as nested configs that extend from other files. In those cases, "root": false must be specified explicitly.

    • Added support for formatting .html files. The formatting is considered experimental, and it's only opt-in via configuration:

      {
        "html": {
          "formatter": {
            "enabled": true
          }
        }
      }
      

      Biome formatter attempts to format as Prettier, however some default options might differ.

      An option html.formatter.selfCloseVoidElements allows to control whether the trailing / of void elements should be printed.

      By default, Biome formatter will remove the /:

      - <input />
      + <input>
      

      If you come from Prettier and you want to keep the same formatting behaviour, you should set the option to "always":

      {
        "html": {
          "formatter": {
            "selfCloseVoidElements": "always"
          }
        }
      }
      
      - <input>
      + <input />
      

      Use to the command biome migrate prettier to apply this change automatically.

    • Added an unsafe fix to the rule useExhaustiveDependencies.

      For example, this violation will provide the following code fix:

      import { useEffect } from "react";
      
      function MyComponent() {
        let a = 1;
        useEffect(() => {}, [a]);
      }
      
        × This hook specifies more dependencies than necessary: a
      
          3 │ function MyComponent() {
          4 │   let a = 1;
        > 5 │   useEffect(() => {}, [a]);
            │   ^^^^^^^^^
          6 │ }
          7 │
      
        i This dependency can be removed from the list.
      
          3 │ function MyComponent() {
          4 │   let a = 1;
        > 5 │   useEffect(() => {}, [a]);
            │                        ^
          6 │ }
          7 │
      
        i Unsafe fix: Remove the extra dependencies from the list.
      
          5 │ ··useEffect(()·=>·{},·[a]);
            │                        -
      
    • The rule useExhaustiveDependencies now reports a diagnostic when the dependency list is not an array literal.

    • Added the new rule useIndexOf, based on the unicorn rule prefer-array-index-of

    • Added a new rule useExhaustiveSwitchCases, which detects any missing cases for switch statements. Currently, it supports only literal union types.

      For example:

      type Day =
        | "Monday"
        | "Tuesday"
        | "Wednesday"
        | "Thursday"
        | "Friday"
        | "Saturday"
        | "Sunday";
      
      const day: Day = "Monday";
      let result = 0;
      
      switch (day) {
        case "Monday": {
          result = 1;
          break;
        }
      }
      

      The switch statement is missing other cases than 'Monday', which will cause a runtime error. To fix this issue, add missing cases or a default case to the statement.

    • Fixed #4416: The rules useExportType and useImportType now ignore TypeScript declaration files.

    • Added the new rule useForComponent.

      This rule enforces usage of Solid's <For /> component for mapping an array to JSX elements.

    • Added new lint rule noShadow, a port of eslint's no-shadow.

      This rule disallows variable declarations from shadowing variables declared in an outer scope. For example:

      const foo = 1;
      
      function bar() {
        const foo = 2; // This variable shadows the outer foo
      }
      
    • Add style option for the useImportType rule.

      The rule now allows enforcing an import style for importing types. See the rule documentation for more details.

    • Added the new rule useJsonImportAttribute to enforce the use of import attributes for JSON modules.

      This rule ensures that all imports of .json files include the with { type: "json" } assertion, which is required to inform the JavaScript runtime that the imported file should be parsed as JSON.

      - import jsonData from './data.json';
      + import jsonData from './data.json' with { type: "json" };
      
      - import jsonData from './data.json' with { someOtherAttribute: "value" };
      + import jsonData from './data.json' with { type: "json", someOtherAttribute: "value" };
      

      This rule is based on the proposal in issue #6043.

    • useLiteralKeys now handles numeric keys and is declared as being the same rule as the ESLint no-useless-computed-key rule.

    • useNamingConmvention now ignores unused variables prefixed with an underscore _.

      This avoids conflicts with the unsafe fix of noUnusedVariables. The following code is now accepted because the variable is unused and prefixed with an underscore.

      const _Unknown_Style = 0;
      
    • The package now requires v2 of the WebAssembly packages. The internal APIs of Workspace are now camelCase.

    • The rule useArrayLiterals now provides a code fix.

      - const xs = new Array();
      + const xs = [];
      

      The code fix is currently marked as unsafe. We plan to make it safe in a future release of Biome.

    • The command migrate is now able to migrate nested configuration files.

    • Added the new rule noRestrictedElements, which prevents use of the specified HTML elements and components.

    • Added the new lint rule noAwaitInLoop.

    Patch Changes

    • Fix #5001, where the CSS formatter removes whitespace from selector preceded by a comment

    • Fixed noUnusedVariables rule to suggest unsafe fix for unused function declarations.

    • Fixed a false positive of noUselessEscapeInRegex where \k was reported as useless in non-Unicode regular expressions.

    • Fixed an issue where the ordering of the diagnostics wasn't predictable.

    • Fixed a bug where the environment variable BIOME_CONFIG_PATH wasn't correctly picked up.

    • Biome logs a warning in case a folder contains biome.json and biome.jsonc, and it will use biome.json by default.

    • noUndeclaredVariables is now able to bind read of value to a type-only import in ambient contexts (#4526).

      In the following code, A is now correctly bound to the type-only import. Previously, A was reported as an undeclared variable.

      import type { A } from "mod";
      
      declare class B extends A {}
      
    • Fix #4317, setter parameter can contain a trailing comma, the following example will now parsed correctly:

      export class DummyClass {
        set input(value: string) {}
      }
      
    • Fix #4575, don't wrap selector indentation after css comments.

    • Fix #4258, where fixed css parse error with @-moz-document url-prefix().

    • Fixed #4391: Some files from the .vscode directory are no longer incorrectly parsed as JSON.

    • The biome format command now correctly handles the --skip-errors option, allowing it to skip files with syntax errors and continue formatting the remaining valid files. When this option is used, skipped syntax errors are reported as information, since the user is already aware of them.

    • biome migrate eslint now correctly resolves the scoped package named eslint-config.

    • Fixed #3836: The CSS parser will now correctly parse the following:

      .foo {
        color: red;
      }
      
    • Fixed a bug where the related diagnostics attached to the main diagnostics didn't have a correct message.

    • Fixed noAccumulatingSpread not reporting calls to Object.assign. The following code will now be reported:

      let a = [{ a: 1 }, { b: 2 }];
      a.reduce((acc, val) => Object.assign(acc, val), []);
      
    • The summary reporter doesn't take --max-diagnostics into account anymore.

    • Fixed #4553: noUselessFragments will now correctly fix JSX attributes:

      <Suspense
        fallback={
          <>
            <span>Loading...</span>
          </>
        }
      >
        {children}
      </Suspense>
      

      becomes:

      <Suspense fallback={<span>Loading...</span>}>{children}</Suspense>
      
    • Fixed #4528: biome migrate eslint now correctly handles shared ESLint configuration that don't follow the ESLint naming convention.

      ESLint recommends that a package that exports a shared configuration be prefixed with eslint-config- or simply named eslint-config. This is only a recommendation. Packages that export shared configurations can have arbitrary names. Biome is now able to load any package.

    • Fixed #4993: useAwait now correctly warn on functions with decorator with callback argument.

    • Fixed #4756: noDuplicateProperties now throws lint errors properly when we use @supports.

    • Fixed #5981, where noUnknownPseudoClass didn't take :global into consideration when cssModules is enabled.

    • Fixed #2406: Biome longer expands properties of object type annotations in the only function parameter to align with Prettier.

    • Fixed #4740: biome migrate eslint now correctly handles ESLint configuration with null values in file lists.

    • Fixed #4202: Align with Prettier in formatting test functions.

    • Fixed #342: The JavaScript parser now properly handles unterminated string literals, such as:

      function Comp() {
        return (
            <a rel="
      
    • Fixed a bug where syntax rules didn't provide an automatic way to suppress the rule. Now the LSP will show supression actions if a syntax rule is violated.

    • Fixed a CSS parser error: @-moz-document url-prefix(https://example.com) and @-moz-document domain(example.com) are now valid.

    • Fixed #4967: The fix for useArrowFunction no longer breaks function bodies starting with {.

    • Fixed #5998. The rule noUnknownPseudoElement now correctly cheks names of pseudo-element functions.

    • Fixed #5024: Added useJsxKeyInIterable rule to React domain.

    • Fixed #5410. Biome now correctly parse an .editorconfig that includes character classes in glob patterns.

    • Fixed #2260: The LSP server now returns correct text edits for the specified range in textDocument/rangeFormatting and textDocument/onTypeFormatting requests.

    • noUnusedVariables no longer reports top-level variables in a global declaration file as unused.

    • Type exports now support renaming types to default.

      The following code is now parsed successfully:

      export { type A as default } from "./b.ts";
      
    • Added proper support for arrow functions in the lint rule https://biomejs.dev/linter/rules/use-explicit-type/

    • The rule useNamingConvention no longer suggests renaming top-level variables in a global declaration file.

    • Improved context in error messages when migrating Prettier configurations

    • Allowed single spaces in useConsistentCurlyBraces rule.

    • Fixed #4413: The GraphQL formatter no longer adds a new line at the start of block comments on Windows.

    • Fixed #5407. Now the noUnusedImports code fix correctly keeps top-level comments that were attached to lone imports.

    • Fixed #3859: the --skip-parse-errors option is now applied to commands: lint, check, and ci.

    • The rage command now prints the configuration path relative to the working directory, if applicable.

    • Fixed #5606: We now correctly handle .mjs extensions in Node.js packages with "type": "commonjs".

    • Fixed #1597: useExhaustiveDependencies no longer gets confused about the stability of dependencies by parentheses or type assertions.

    • Fixed #4751 by checking fragments inside JSXElement and conditional expressions.

      For example, the following two cases will now be reported:

      <section>
        <>
          <div />
          <div />
        </>
      </section>
      
      showFullName ? <>{fullName}</> : <>{firstName}</>;
      
    • The rule noFallthroughSwitchCase no longer panics on some incomplete code snippets.

    • Fixed #5007: Resolved false positives in noMissingVarFunction for container-name.

    • Fixed #4841: Shebang and top leading comments in .cjs files are now handled correctly

      Example: shebang only (keep it as is)

      #!/usr/bin/env node
      

      Example: comments only (keep it as is)

      // comment
      

      Example: with shebang

      - #!/usr/bin/env node"use strict";
      + #!/usr/bin/env node
      + "use strict";
      let some_variable = "some value";
      

      Example: with comment

      - // comment
      - "use strict"; // comment
      + "use strict";
      + // comment
      let some_variable = "some value";
      

      Example: with shebang and comment

      - #!/usr/bin/env node"use strict";
      - // comment
      + #!/usr/bin/env node
      + "use strict";
      + // comment
      let some_variable = "some value";
      
    • Fixes useExhaustiveDependencies missing dependencies being defined after the hook itself failure.

      Example:

      import { useState, useEffect } from "react";
      
      function MyComponent() {
        useEffect(() => {
          console.log(a);
        }, []);
      
        let a = 1;
      }
      
    • Fixed #4714: Suppression comments no longer fail on functions that themselves contain suppression comments.

      This now works correctly:

      // biome-ignore lint/complexity/useArrowFunction: this suppression now works
      const foo0 = function (bar: string) {
        // biome-ignore lint/style/noParameterAssign: even if there are other suppressions inside
        bar = "baz";
      };
      
    • Add @vitest/eslint-plugin to list of Biome rule sources

    • Fixed useHookAtTopLevel rule to properly detect React components wrapped in memo and forwardRef, and correctly handle property accessors in control flow analysis.

      The rule now correctly identifies hooks in components like:

      const TestMemo = memo(
        forwardRef((props, ref) => {
          useEffect(() => {
            const [test, setTest] = useState(1); // now properly flagged
          }, []);
          return <div ref={ref}>test</div>;
        }),
      );
      

      And properly handles property accessors:

      function ReactComponent() {
        const testObj = {
          get print() {
            return "hello"; // no longer considered component return
          },
        };
        const callback = useCallback(() => {}, []);
        return <></>;
      }
      
    • noMisleadingCharacterClass no longer panics on malformed escape sequences that end with a multi-byte character (#4587).

    • Fixed the flag --bracket-spacing that was duplicated between the global configuration and the language-specific override for JavaScript.

    • Fixed #4715: The useJsxKeyInIterable rule now reports missing keys inside switch and if statements.

      const data = [
        { value: "a", type: "string" },
        { value: 9, type: "number" },
        { value: "c", type: "string" },
      ];
      
      const MyComponent = () => {
        return (
          <>
            {/* if statements */}
            {data.map((x) => {
              if (x.type === "string") {
                return <div>{x.value}</div>; // no key, emits diagnostic
              } else {
                return <div>{x.value}</div>; // no key, emits diagnostic
              }
            })}
      
            {/* switch statements */}
            {data.map((x) => {
              switch (x.type) {
                case "string":
                  return <div>{x.value}</div>; // no key, emits diagnostic
                case "number":
                  return <div>{x.value}</div>; // no key, emits diagnostic
                default:
                  return <div key={x.value}>{x.value}</div>;
              }
            })}
          </>
        );
      };
      
    • Fixed #4121: The CSS formatter no longer indents a selector when it has leading comments.

    • Fixed an issue where react lint rules could panic Biome when some incorrect code was analyzed.

    • Fixed [#4982](https://github.com/b

    Note truncated.

    Open source →
  5. 2.0.0-beta.62 Jun 2025pre-release
    Release notes

    <!-- Release notes generated using configuration in .github/release.yml at main -->

    What's Changed

    Other changes

    • docs: update contribution guides by @ematipico in https://github.com/biomejs/biome/pull/6087
    • refactor(lint): move noArguments and noCommaOperator to complexity by @Conaclos in https://github.com/biomejs/biome/pull/6090
    • fix(core): recommended and domains by @ematipico in https://github.com/biomejs/biome/pull/6094
    • refactor(lint/useLiteralKeys): handle numeric keys by @Conaclos in https://github.com/biomejs/biome/pull/6092
    • test: cover domains case by @ematipico in https://github.com/biomejs/biome/pull/6096
    • feat(core): resolve type definitions by @arendjr in https://github.com/biomejs/biome/pull/6097
    • fix(core): don't ignore required files by @arendjr in https://github.com/biomejs/biome/pull/6098
    • chore: rename spec_test.rs => spec_tests.rs by @arendjr in https://github.com/biomejs/biome/pull/6102
    • refactor: module type and type member refactoring by @arendjr in https://github.com/biomejs/biome/pull/6103
    • perf(lsp): scan project based on ScanKind by @ematipico in https://github.com/biomejs/biome/pull/6099
    • fix(core): process root ignore first by @ematipico in https://github.com/biomejs/biome/pull/6109
    • fix(analyzer): provide syntax rule suppression actions by @ematipico in https://github.com/biomejs/biome/pull/6113
    • fix(cli): diagnostic category in explain by @ematipico in https://github.com/biomejs/biome/pull/6114
    • feat(core): improve inference on .d.ts files by @arendjr in https://github.com/biomejs/biome/pull/6115
    • feat(lint): implement useUniqueElementIds by @mehm8128 in https://github.com/biomejs/biome/pull/6082
    • feat(core): populate members of namespaces and modules by @arendjr in https://github.com/biomejs/biome/pull/6120
    • refactor: abstract/reuse react component detection logic by @mdevils in https://github.com/biomejs/biome/pull/6124
    • feat(linter): implement useConsistentResponse by @minht11 in https://github.com/biomejs/biome/pull/5960
    • docs: fix typos in RELEASES & ROME_CHANGELOG by @noritaka1166 in https://github.com/biomejs/biome/pull/6126
    • docs(useNamingConvention): improve description of conventions by @Conaclos in https://github.com/biomejs/biome/pull/6123
    • fix(linter): change default syntax from explicit to shorthand for useConsistentObjectDefinition by @minht11 in https://github.com/biomejs/biome/pull/6127
    • chore(deps): update @biomejs packages by @renovate in https://github.com/biomejs/biome/pull/6137
    • chore(deps): update rust:1.87.0-bullseye docker digest to eb80936 by @renovate in https://github.com/biomejs/biome/pull/6136
    • chore(deps): update rust crate tokio to 1.45.1 by @renovate in https://github.com/biomejs/biome/pull/6139
    • chore(deps): update rust crate bpaf to 0.9.20 by @renovate in https://github.com/biomejs/biome/pull/6138
    • fix(useArrayLiterals): preserve array type by @simon-paris in https://github.com/biomejs/biome/pull/6116
    • fix(analyzer): useSortedProperties should skip unknown properties by @fireairforce in https://github.com/biomejs/biome/pull/6132
    • fix(lsp): custom configuration path should not override the working directory by @siketyan in https://github.com/biomejs/biome/pull/6125
    • feat(core): resolve nested type qualifiers + improve type/value duality handling by @arendjr in https://github.com/biomejs/biome/pull/6143
    • chore: add React test case by @arendjr in https://github.com/biomejs/biome/pull/6149
    • fix: mark noFlatMapIdentity fix as unsafe by @ethanniser in https://github.com/biomejs/biome/pull/6146
    • feat(cli): add __where_am_i command by @nhedger in https://github.com/biomejs/biome/pull/6151
    • refactor: avoid unnecessary document retrieval by @arendjr in https://github.com/biomejs/biome/pull/6155
    • feat(biome_js_analyze): useIndexOf by @vladimir-ivanov in https://github.com/biomejs/biome/pull/6121
    • perf: don't call update_service_data() unnecessarily by @arendjr in https://github.com/biomejs/biome/pull/6156
    • feat(lint): implement useObjectSpread rule by @mdevils in https://github.com/biomejs/biome/pull/6129
    • perf(core): don't save content of d.ts files by @ematipico in https://github.com/biomejs/biome/pull/6154
    • feat: add plugins to override config by @wanghaoPolar in https://github.com/biomejs/biome/pull/6117
    • fix(js-semantic): don't bind the parameter to its parameter by @Conaclos in https://github.com/biomejs/biome/pull/6158
    • feat: monorepo support by @ematipico in https://github.com/biomejs/biome/pull/6164
    • chore(format/html): remove dead code around comment formatting by @dyc3 in https://github.com/biomejs/biome/pull/6169
    • chore: tweak monorepo changelog by @arendjr in https://github.com/biomejs/biome/pull/6170
    • feat(core): infer interfaces by @arendjr in https://github.com/biomejs/biome/pull/6153
    • chore: upgrade to rust 1.87.0 by @ematipico in https://github.com/biomejs/biome/pull/6168
    • fix(core): use single ignore list for scanner by @arendjr in https://github.com/biomejs/biome/pull/6174
    • fix: resolve settings based on path by @ematipico in https://github.com/biomejs/biome/pull/6175
    • refactor(js_type_info): avoid allocating a String upon number parsing by @Conaclos in https://github.com/biomejs/biome/pull/6176
    • feat(core): allowing overriding scanner ignore entries by @arendjr in https://github.com/biomejs/biome/pull/6177
    • fix(core): fix extending nested configs by @arendjr in https://github.com/biomejs/biome/pull/6179
    • perf: perform fewer clones for ignore checks by @arendjr in https://github.com/biomejs/biome/pull/6180
    • fix(cli): pick up BIOME_CONFIG_PATH by @ematipico in https://github.com/biomejs/biome/pull/6181
    • fix(useExplicitType): rewrite top-level variables checking by @sterliakov in https://github.com/biomejs/biome/pull/5935
    • fix: accumulate spread performance linting with object.assign by @emilyinure in https://github.com/biomejs/biome/pull/6171
    • feat(core): improved namespace merging by @arendjr in https://github.com/biomejs/biome/pull/6173
    • feat(biome_js_analyze): noReactPropAssign by @vladimir-ivanov in https://github.com/biomejs/biome/pull/6157
    • fix: rule useHookAtTopLevel issues, improve react components detection by @mdevils in https://github.com/biomejs/biome/pull/6185
    • docs(contributing): biome.lspBin to biome.lsp.bin by @Conaclos in https://github.com/biomejs/biome/pull/6190
    • fix(lsp): always identify .cjs files as CommonJS by @Conaclos in https://github.com/biomejs/biome/pull/6189
    • fix(deps): update @biomejs packages by @renovate in https://github.com/biomejs/biome/pull/6194
    • chore(deps): update dependency eslint to v9.28.0 by @renovate in https://github.com/biomejs/biome/pull/6196
    • fix(deps): update rust crates by @renovate in https://github.com/biomejs/biome/pull/6195
    • chore(deps): update rust crate hashbrown to 0.15.3 by @renovate in https://github.com/biomejs/biome/pull/6193
    • chore(deps): update rust docker tag to v1.87.0 by @renovate in https://github.com/biomejs/biome/pull/6198
    • feat(biome_js_analyze): useJsonImportAttribute by @Jordanh1996 in https://github.com/biomejs/biome/pull/6184
    • chore(deps): update taiki-e/install-action action to v2.52.4 by @renovate in https://github.com/biomejs/biome/pull/6199
    • chore(deps): update typescript-eslint monorepo to v8.33.0 by @renovate in https://github.com/biomejs/biome/pull/6200
    • fix(cli): prevent panic when searching across different file types by @unvalley in https://github.com/biomejs/biome/pull/6192

    New Contributors

    • @noritaka1166 made their first contribution in https://github.com/biomejs/biome/pull/6126
    • @ethanniser made their first contribution in https://github.com/biomejs/biome/pull/6146
    • @sterliakov made their first contribution in https://github.com/biomejs/biome/pull/5935
    • @emilyinure made their first contribution in https://github.com/biomejs/biome/pull/6171
    • @Jordanh1996 made their first contribution in https://github.com/biomejs/biome/pull/6184

    Full Changelog: https://github.com/biomejs/biome/compare/@biomejs/[email protected]...@biomejs/[email protected]

    Open source →
  6. 2.0.0-beta.519 May 2025pre-release
    Release notes

    <!-- Release notes generated using configuration in .github/release.yml at main -->

    What's Changed

    Other changes

    • fix(reporter): fixed paths are relative by @ematipico in https://github.com/biomejs/biome/pull/6015
    • feat(cli): support rule without group in --only and --skip by @Conaclos in https://github.com/biomejs/biome/pull/6004
    • fix(noDuplicateProperties): don't track @keyframes by @ematipico in https://github.com/biomejs/biome/pull/6024
    • refactor(migrate): handle assist actions in rule mover by @Conaclos in https://github.com/biomejs/biome/pull/6027
    • feat: added an option to files - maxSize see [#5295](https://github.c… by @vladimir-ivanov in https://github.com/biomejs/biome/pull/6010
    • fix(core): only trigger on ServiceDataNotification per scan by @arendjr in https://github.com/biomejs/biome/pull/6032
    • feat(yaml): parse implicit block mapping by @vohoanglong0107 in https://github.com/biomejs/biome/pull/6000
    • fix(analyzer): fix plugin diagnostic suppression + resolve double diagnostics by @arendjr in https://github.com/biomejs/biome/pull/6035
    • chore: remove log by @ematipico in https://github.com/biomejs/biome/pull/6041
    • fix(lint/noUselessEscapeInString): avoid false positive for \${ escape in template literals by @lucasweng in https://github.com/biomejs/biome/pull/6042
    • feat(lint): implement useAdjacentGetterSetter rule by @mdevils in https://github.com/biomejs/biome/pull/5964
    • chore: change version of useAdjacentGetterSetter by @mdevils in https://github.com/biomejs/biome/pull/6046
    • fix(lsp): scope workspace/configuration request to workspace folder by @nhedger in https://github.com/biomejs/biome/pull/6047
    • fix(lint/noUselessEscapeInString): flag useless escapes after skipping ${ in template literals by @lucasweng in https://github.com/biomejs/biome/pull/6044
    • fix(formatter): keep newline before semicolon in the previous statement by @siketyan in https://github.com/biomejs/biome/pull/6048
    • feat(yaml): allows omitting value in explicit mapping by @vohoanglong0107 in https://github.com/biomejs/biome/pull/6054
    • refactor(xtask): promote-rule to move-rule by @Conaclos in https://github.com/biomejs/biome/pull/6057
    • refactor(lint): move noFlatMapIdentity, useArrayLiterals, noWith by @Conaclos in https://github.com/biomejs/biome/pull/6059
    • refactor(lint): move useValidTypeof, noNamespaceImport, useNumericLiterals by @Conaclos in https://github.com/biomejs/biome/pull/6061
    • refactor(lint/useConst): recommend the rule by @Conaclos in https://github.com/biomejs/biome/pull/6062
    • refactor(lint): upgrade some unsafe fixes to safe fixes by @Conaclos in https://github.com/biomejs/biome/pull/6063
    • refactor(lint/noUselessContinue): move rule to complexity by @Conaclos in https://github.com/biomejs/biome/pull/6068
    • feat(lint): implement noNestedComponentDefinitions rule by @mdevils in https://github.com/biomejs/biome/pull/6053
    • chore(deps): update github-actions by @renovate in https://github.com/biomejs/biome/pull/6070
    • chore(deps): update dependency @changesets/cli to v2.29.4 by @renovate in https://github.com/biomejs/biome/pull/6069
    • fix(deps): update @biomejs packages by @renovate in https://github.com/biomejs/biome/pull/6071
    • chore(renovate): ignore rust in the github-actions group by @siketyan in https://github.com/biomejs/biome/pull/6073
    • fix(deps): update rust crate ascii_table to 4.0.7 by @renovate in https://github.com/biomejs/biome/pull/6072
    • chore(deps): update dependency dprint to v0.50.0 by @renovate in https://github.com/biomejs/biome/pull/6074
    • chore(deps): update dependency eslint to v9.27.0 by @renovate in https://github.com/biomejs/biome/pull/6075
    • fix(core/lsp): correctly compute ignored files by @ematipico in https://github.com/biomejs/biome/pull/6052
    • fix(linter): noFloatingPromises detects "maybe" Promises by @arendjr in https://github.com/biomejs/biome/pull/6080
    • chore: add test case for config extends in biome_cli by @arendjr in https://github.com/biomejs/biome/pull/6081

    New Contributors

    • @vladimir-ivanov made their first contribution in https://github.com/biomejs/biome/pull/6010

    Full Changelog: https://github.com/biomejs/biome/compare/@biomejs/[email protected]...@biomejs/[email protected]

    Open source →
  7. 2.0.0-beta.414 May 2025pre-release
    Release notes

    <!-- Release notes generated using configuration in .github/release.yml at main -->

    What's Changed

    Other changes

    • fix(deps): update @biomejs packages by @renovate in https://github.com/biomejs/biome/pull/5968
    • fix(deps): update rust crates by @renovate in https://github.com/biomejs/biome/pull/5969
    • chore(deps): update github-actions by @renovate in https://github.com/biomejs/biome/pull/5970
    • chore(deps): update dependency @changesets/cli to v2.29.3 by @renovate in https://github.com/biomejs/biome/pull/5967
    • chore(deps): update rust:1.86.0 docker digest to 300ec56 by @renovate in https://github.com/biomejs/biome/pull/5966
    • chore(deps): update rust crate tokio to 1.45.0 by @renovate in https://github.com/biomejs/biome/pull/5973
    • chore(deps): update rust crate quickcheck_macros to 1.1.0 - autoclosed by @renovate in https://github.com/biomejs/biome/pull/5972
    • fix(lint/useDateNow): add a missing space between words in diagnostic by @siketyan in https://github.com/biomejs/biome/pull/5974
    • docs: type architecture by @arendjr in https://github.com/biomejs/biome/pull/5978
    • refactor(migrate): handle already migrated rules by @Conaclos in https://github.com/biomejs/biome/pull/5965
    • fix(noUselessBackrefInRegex): avoid overflow by @Conaclos in https://github.com/biomejs/biome/pull/5992
    • refactor(migrate): don't unpromote useNamingConvention by @Conaclos in https://github.com/biomejs/biome/pull/5994
    • fix(organizeImports): merge default and named imports by @Conaclos in https://github.com/biomejs/biome/pull/5993
    • feat(migrate): migrate nested configuration files by @ematipico in https://github.com/biomejs/biome/pull/5986
    • fix(lint): take css modules into consideration by @ematipico in https://github.com/biomejs/biome/pull/5988
    • fix(cli): correct type for enforce-assist in ci by @ematipico in https://github.com/biomejs/biome/pull/5987
    • fix(lint): noUnknownPseudoElement selector check by @ematipico in https://github.com/biomejs/biome/pull/5999
    • docs: fix various typos by @uncenter in https://github.com/biomejs/biome/pull/6001
    • fix(lsp): compare only the formatted range on range formatting by @siketyan in https://github.com/biomejs/biome/pull/6006
    • refactor(css_parser): improved error handling for the supports at rule by @denbezrukov in https://github.com/biomejs/biome/pull/5782

    Full Changelog: https://github.com/biomejs/biome/compare/@biomejs/[email protected]...@biomejs/[email protected]

    Open source →
  8. 2.0.0-beta.311 May 2025pre-release
    Release notes

    <!-- Release notes generated using configuration in .github/release.yml at main -->

    What's Changed

    Other changes

    • feat(wasm): expose getTypeInfo by @ematipico in https://github.com/biomejs/biome/pull/5815
    • refactor(core): break down type info and registered types by @ematipico in https://github.com/biomejs/biome/pull/5816
    • fix(core): fix downgrading of project references by @arendjr in https://github.com/biomejs/biome/pull/5818
    • chore: fix Windows CI by @arendjr in https://github.com/biomejs/biome/pull/5824
    • fix(core): ignore node_modules during the traversal by @ematipico in https://github.com/biomejs/biome/pull/5825
    • feat(analyze/js): implement noShadow by @dyc3 in https://github.com/biomejs/biome/pull/5761
    • fix(core): don't scan node_modules when using the light scanner by @ematipico in https://github.com/biomejs/biome/pull/5827
    • fix(biome_migrate): use object-level syntax node as rule state for the organize_imports analyzer to do action mutation by @bushuai in https://github.com/biomejs/biome/pull/5828
    • feat(workspace): add semantic model debug printer by @dyc3 in https://github.com/biomejs/biome/pull/5821
    • fix(package_json): catch panic error when by @ematipico in https://github.com/biomejs/biome/pull/5829
    • feat(core): implement full (project-level) inference by @arendjr in https://github.com/biomejs/biome/pull/5830
    • chore(deps): update dependency vite to v6.3.4 [security] by @renovate in https://github.com/biomejs/biome/pull/5833
    • fix(lint/useNumericSeparators): avoid false positive on single-digit 0 by @lucasweng in https://github.com/biomejs/biome/pull/5834
    • perf(lint): use Arc<T> to share PackageJson among analyzer rules by @siketyan in https://github.com/biomejs/biome/pull/5839
    • feat(lint/noUselessBackrefInRegex): add rule by @Conaclos in https://github.com/biomejs/biome/pull/5813
    • perf(scanner): update type info in worker threads by @siketyan in https://github.com/biomejs/biome/pull/5840
    • fix(core): printed directories by @ematipico in https://github.com/biomejs/biome/pull/5841
    • fix(core): scanner should not descend into symlinked directories by @arendjr in https://github.com/biomejs/biome/pull/5853
    • fix(lint): mark whole fragment as incorrect if without key by @DerTimonius in https://github.com/biomejs/biome/pull/5773
    • feat(lint/noShadow): handle some cases from typescript-eslint by @dyc3 in https://github.com/biomejs/biome/pull/5843
    • fix(core): fix incorrect module ID in reexport by @arendjr in https://github.com/biomejs/biome/pull/5855
    • fix(core): don't load manifests inside node_modules for now by @arendjr in https://github.com/biomejs/biome/pull/5857
    • fix(yaml_parser): only allows maximum 2 properties per node by @vohoanglong0107 in https://github.com/biomejs/biome/pull/5864
    • fix(yaml_parser): add properties to yaml block scalars by @vohoanglong0107 in https://github.com/biomejs/biome/pull/5866
    • fix(schema): more precise type for organizeImports predfined groups by @Conaclos in https://github.com/biomejs/biome/pull/5869
    • docs: add @vitest/eslint-plugin as rule source by @drwpow in https://github.com/biomejs/biome/pull/5872
    • fix(organizeImports): fix Display impl by @Conaclos in https://github.com/biomejs/biome/pull/5878
    • perf(js_analyze): use Box<str> in more places to reduce memory by @minht11 in https://github.com/biomejs/biome/pull/5880
    • feat(yaml_parser): lex plain token by @vohoanglong0107 in https://github.com/biomejs/biome/pull/5870
    • fix(deps): update @biomejs packages by @renovate in https://github.com/biomejs/biome/pull/5887
    • chore(deps): update rust crate insta to 1.43.1 by @renovate in https://github.com/biomejs/biome/pull/5890
    • chore(deps): update dependency eslint to v9.26.0 by @renovate in https://github.com/biomejs/biome/pull/5888
    • chore(deps): update typescript-eslint monorepo to v8.31.1 by @renovate in https://github.com/biomejs/biome/pull/5892
    • chore(deps): update rust crate oxc_resolver to v5.3.0 by @renovate in https://github.com/biomejs/biome/pull/5891
    • chore(js_analyze): enforce usage of should not generate diagnostics comment for tests by @minht11 in https://github.com/biomejs/biome/pull/5883
    • chore(deps): update rust:1.86.0 docker digest to 640960f by @renovate in https://github.com/biomejs/biome/pull/5886
    • feat(yaml): implement BumpWithContext for YamlTokenSource by @vohoanglong0107 in https://github.com/biomejs/biome/pull/5895
    • feat(yaml): implement rewind and checkpoint for yaml parser by @vohoanglong0107 in https://github.com/biomejs/biome/pull/5894
    • fix(watcher): fix failing watcher tests on macOS by @siketyan in https://github.com/biomejs/biome/pull/5905
    • feat(cli): prettify ESLint config on loading for migration by @siketyan in https://github.com/biomejs/biome/pull/5902
    • feat(yaml): parse plain node by @vohoanglong0107 in https://github.com/biomejs/biome/pull/5904
    • perf(core): reusable scoped resolver by @arendjr in https://github.com/biomejs/biome/pull/5906
    • fix(cli): support nested files property in ESLint flat config by @siketyan in https://github.com/biomejs/biome/pull/5903
    • refactor(core): pull manifest on demand by @ematipico in https://github.com/biomejs/biome/pull/5910
    • feat(lint): handle jsdoc and tsdoc syntax in nounusedimports by @Danielku15 in https://github.com/biomejs/biome/pull/5698
    • fix(cli): format diagnostic location by @ematipico in https://github.com/biomejs/biome/pull/5911
    • feat(linter): useSingleJsDocAsterisk by @minht11 in https://github.com/biomejs/biome/pull/5844
    • fix(cli): apply --skip-parse-errors to lint, check and ci commands by @unvalley in https://github.com/biomejs/biome/pull/5780
    • fix(lint/useJsxKeyIterable): reports missing keys inside if and switch by @unvalley in https://github.com/biomejs/biome/pull/5909
    • fix(core): track resolver data by @arendjr in https://github.com/biomejs/biome/pull/5918
    • chore: upgrade to oxc-resolver 8 by @arendjr in https://github.com/biomejs/biome/pull/5922
    • fix(core): handle named reexports by @arendjr in https://github.com/biomejs/biome/pull/5921
    • perf: faster manifest handling by @arendjr in https://github.com/biomejs/biome/pull/5926
    • fix(analyzer): placeholder shouldn't block signals by @ematipico in https://github.com/biomejs/biome/pull/5923
    • chore: update rust-toolchain.toml on Renovate by @siketyan in https://github.com/biomejs/biome/pull/5928
    • chore(config): migrate renovate config by @renovate in https://github.com/biomejs/biome/pull/5929
    • ci: build GNU/Linux binaries in Docker by @siketyan in https://github.com/biomejs/biome/pull/5924
    • docs(readme): fix wrong translations by @hms5232 in https://github.com/biomejs/biome/pull/5927
    • feat(lint): implement useExhaustiveSwitchCases - typescript-eslint/switch-exhaustiveness-check by @siketyan in https://github.com/biomejs/biome/pull/5762
    • fix(core): infer type of dynamic import by @arendjr in https://github.com/biomejs/biome/pull/5933
    • chore(deps): update dependency rust to v1.86.0 by @renovate in https://github.com/biomejs/biome/pull/5931
    • fix(core): fix resolving of (relative) imports by @arendjr in https://github.com/biomejs/biome/pull/5934
    • refactor(lsp): use tower-lsp-server by @ematipico in https://github.com/biomejs/biome/pull/5930
    • feat(lint): promote rules by @Conaclos in https://github.com/biomejs/biome/pull/5899
    • docs(linter): add rule naming and severity choice guidelines by @Conaclos in https://github.com/biomejs/biome/pull/5937
    • fix(core): fix flattening issues by @arendjr in https://github.com/biomejs/biome/pull/5940
    • fix(js-api): regression of tests by @ematipico in https://github.com/biomejs/biome/pull/5943
    • fix(core): add guard for flattening depth by @arendjr in https://github.com/biomejs/biome/pull/5945
    • fix(core): update crossbeam channel due to CVE by @ematipico in https://github.com/biomejs/biome/pull/5946
    • fix(lint): ignore async and generator callbacks in useIterableCallbackReturn by @siketyan in https://github.com/biomejs/biome/pull/5951
    • chore(tests): add test utils for asserting valid snapshots did not generate diagnostics by @minht11 in https://github.com/biomejs/biome/pull/5912
    • fix(yaml): make indented block in mapping optional by @vohoanglong0107 in https://github.com/biomejs/biome/pull/5956
    • fix(js_analyze): suggest fix for unused JsFunctionDeclaration by @daivinhtran in https://github.com/biomejs/biome/pull/5955
    • fix(parser): should parse Fragment syntax correct by @fireairforce in https://github.com/biomejs/biome/pull/5938
    • chore(css_analyzer): add "should not generate diagnostics" to valid test snapshots by @minht11 in https://github.com/biomejs/biome/pull/5961
    • refactor(migrate): add rule mover migration by @Conaclos in https://github.com/biomejs/biome/pull/5959
    • fix(core): scanner tweak: mostly respect ignored dirs by @arendjr in https://github.com/biomejs/biome/pull/5952
    • feat(yaml_parser): parse explicit mapping by @vohoanglong0107 in https://github.com/biomejs/biome/pull/5957
    • refactor(migrate): improve organizeImports migration by @Conaclos in https://github.com/biomejs/biome/pull/5962
    • fix(cli): normalise config-path path by @ematipico in https://github.com/biomejs/biome/pull/5920

    New Contributors

    • @Danielku15 made their first contribution in https://github.com/biomejs/biome/pull/5698
    • @hms5232 made their first contribution in https://github.com/biomejs/biome/pull/5927
    • @daivinhtran made their first contribution in https://github.com/biomejs/biome/pull/5955

    Full Changelog: https://github.com/biomejs/biome/compare/@biomejs/[email protected]...@biomejs/[email protected]

    Open source →
  9. 2.0.0-beta.229 Apr 2025pre-release
    Release notes

    <!-- Release notes generated using configuration in .github/release.yml at main -->

    What's Changed

    Other changes

    • fix(lint): keep comments in noUnusedImports by @ematipico in https://github.com/biomejs/biome/pull/5468
    • fix(lint/noDestructuredProps): better check when inside a function by @ematipico in https://github.com/biomejs/biome/pull/5467
    • fix(migrate): push noVar member inside existing list by @ematipico in https://github.com/biomejs/biome/pull/5470
    • fix: report non array literal deps list in useExhaustiveDependencies by @siketyan in https://github.com/biomejs/biome/pull/5469
    • fix(analyzer): suppression for assist actions by @ematipico in https://github.com/biomejs/biome/pull/5482
    • fix(migrate): improve error messages when parsing Prettier configuration by @akx in https://github.com/biomejs/biome/pull/5479
    • fix(lsp): restore available code action by @ematipico in https://github.com/biomejs/biome/pull/5492
    • fix(core): push ignore matches using their directories by @ematipico in https://github.com/biomejs/biome/pull/5494
    • fix(migrate): style rules by @ematipico in https://github.com/biomejs/biome/pull/5491
    • refactor(css_parser): implement error handling for the container at rule by @denbezrukov in https://github.com/biomejs/biome/pull/5244
    • chore(deps): update @biomejs packages by @renovate in https://github.com/biomejs/biome/pull/5510
    • chore(deps): update rust docker tag to v1.85.1 by @renovate in https://github.com/biomejs/biome/pull/5511
    • chore(deps): update dependency eslint to v9.23.0 by @renovate in https://github.com/biomejs/biome/pull/5514
    • chore(deps): update pnpm to v10.7.0 by @renovate in https://github.com/biomejs/biome/pull/5515
    • chore(deps): update github-actions (major) by @renovate in https://github.com/biomejs/biome/pull/5519
    • chore(deps): update typescript-eslint monorepo to v8.28.0 by @renovate in https://github.com/biomejs/biome/pull/5517
    • chore(deps): update rust crate oxc_resolver to v5 by @renovate in https://github.com/biomejs/biome/pull/5520
    • fix(core): enhance error message of incorrect suppressions by @ematipico in https://github.com/biomejs/biome/pull/5497
    • fix: use await now warn function with decorator even if it has a call… by @Xstoudi in https://github.com/biomejs/biome/pull/5485
    • chore(deps): update rust crate getrandom to 0.3.2 by @renovate in https://github.com/biomejs/biome/pull/5516
    • fix(plugins): handle invalid spans by @arendjr in https://github.com/biomejs/biome/pull/5522
    • chore: fix warning in WASM build by @arendjr in https://github.com/biomejs/biome/pull/5524
    • chore: use dev builds in Node.js pull request check by @arendjr in https://github.com/biomejs/biome/pull/5525
    • feat(lint): update and move noBlankTarget by @arendjr in https://github.com/biomejs/biome/pull/5527
    • chore: set 2024 as default Rustfmt style edition by @jelly in https://github.com/biomejs/biome/pull/5528
    • feat(lint/useNamingConvention): ignore unused var prefixed with _ by @Conaclos in https://github.com/biomejs/biome/pull/5529
    • docs: minor typo by @thejackshelton in https://github.com/biomejs/biome/pull/5535
    • feat(linter): make useImportExtensions check imports with sub extensions by @minht11 in https://github.com/biomejs/biome/pull/5532
    • feat(linter): implement noUnresolvedImports by @arendjr in https://github.com/biomejs/biome/pull/5530
    • fix(assist/organizeImports): allow suppression comments by @Conaclos in https://github.com/biomejs/biome/pull/5504
    • docs: include how to use configuration in the js-api README by @bedros-p in https://github.com/biomejs/biome/pull/5509
    • refactor(migrate): escape squared braces by @Conaclos in https://github.com/biomejs/biome/pull/5531
    • chore: add ignore entries to scanner by @arendjr in https://github.com/biomejs/biome/pull/5546
    • chore: add Platinum sponsor by @arendjr in https://github.com/biomejs/biome/pull/5547
    • fix(docs): update quick test location by @thejackshelton in https://github.com/biomejs/biome/pull/5551
    • fix(cli): emit error when no extension exist by @ematipico in https://github.com/biomejs/biome/pull/5544
    • fix(lint/noNoninteractiveElementToInteractiveRole): fix mistakenly flagging <li role="treeitem"> by @dyc3 in https://github.com/biomejs/biome/pull/5548
    • chore: more ignore entries for the scanner by @arendjr in https://github.com/biomejs/biome/pull/5558
    • fix(lint/useRegexLiterals): correctly handle escaped anti-slashes by @Conaclos in https://github.com/biomejs/biome/pull/5549
    • fix(css): align CSS value list format with Prettier by @wanghaoPolar in https://github.com/biomejs/biome/pull/5334
    • feat(core): add data structures for type info by @arendjr in https://github.com/biomejs/biome/pull/5556
    • chore(deps): update dependency vite to v5.4.16 [security] by @renovate in https://github.com/biomejs/biome/pull/5560
    • fix(lint/noParameterAssign): handle unparenthesized arrow functions by @Conaclos in https://github.com/biomejs/biome/pull/5559
    • chore: rename DependencyGraph to ModuleGraph by @arendjr in https://github.com/biomejs/biome/pull/5561
    • fix(syntax/noTypeOnlyImportAttributes): ignore all commonjs files by @Conaclos in https://github.com/biomejs/biome/pull/5566
    • feat(css): add rule noImportantStyles by @ematipico in https://github.com/biomejs/biome/pull/5555
    • refactor: use type info in noFloatingPromises by @arendjr in https://github.com/biomejs/biome/pull/5576
    • fix(lint/noUselessFragments): fix case where code fix would remove more than just the fragment by @dyc3 in https://github.com/biomejs/biome/pull/5550
    • feat(lint): improve useKeyWithClickEvents by @unvalley in https://github.com/biomejs/biome/pull/5507
    • chore(deps): update pnpm to v10.7.1 by @renovate in https://github.com/biomejs/biome/pull/5583
    • chore(deps): update rust crate tokio to 1.44.2 by @renovate in https://github.com/biomejs/biome/pull/5584
    • chore(deps): update dependency vite to v5.4.17 [security] by @renovate in https://github.com/biomejs/biome/pull/5585
    • chore(deps): update @biomejs packages by @renovate in https://github.com/biomejs/biome/pull/5586
    • chore(deps): update dependency eslint to v9.24.0 by @renovate in https://github.com/biomejs/biome/pull/5587
    • chore(deps): update rust crate indexmap to 2.9.0 by @renovate in https://github.com/biomejs/biome/pull/5589
    • chore(deps): update rust crate oxc_resolver to 5.1.1 by @renovate in https://github.com/biomejs/biome/pull/5590
    • chore(deps): update rust crate smallvec to 1.15.0 by @renovate in https://github.com/biomejs/biome/pull/5591
    • chore(deps): update rust docker tag to v1.86.0 by @renovate in https://github.com/biomejs/biome/pull/5592
    • chore(deps): update typescript-eslint monorepo to v8.29.0 by @renovate in https://github.com/biomejs/biome/pull/5593
    • feat(core): add light version of the semantic model to scanner by @arendjr in https://github.com/biomejs/biome/pull/5599
    • feat(html/formatter): add option to control void elements by @ematipico in https://github.com/biomejs/biome/pull/5600
    • feat(assist/organizeImports): merge imports and exports by @Conaclos in https://github.com/biomejs/biome/pull/5579
    • feat(assist/organizeImports): add an option to separate types by @Conaclos in https://github.com/biomejs/biome/pull/5582
    • chore(html/formatter): better control over spacing by @ematipico in https://github.com/biomejs/biome/pull/5604
    • fix(assist/useSortedKeys): move comments with the associated key by @Conaclos in https://github.com/biomejs/biome/pull/5606
    • test(build): fix test build error by @Conaclos in https://github.com/biomejs/biome/pull/5607
    • chore: remove bronze sponsor by @ematipico in https://github.com/biomejs/biome/pull/5612
    • feat(linter): implement noRestrictedElements by @mdevils in https://github.com/biomejs/biome/pull/5578
    • chore: add new bronze sponsor by @ematipico in https://github.com/biomejs/biome/pull/5613
    • refactor: use biome_js_semantic::SemanticEventExtractor in biome_module_graph by @arendjr in https://github.com/biomejs/biome/pull/5616
    • fix(parser): allow excess tokens after expected EOF by @arendjr in https://github.com/biomejs/biome/pull/5621
    • fix(xtask/codegen): handle languages with no keywords by @vohoanglong0107 in https://github.com/biomejs/biome/pull/5625
    • chore: add EOF token validator by @arendjr in https://github.com/biomejs/biome/pull/5623
    • fix(analyzer): suppression by @ematipico in https://github.com/biomejs/biome/pull/5611
    • perf(lint): remove allocation of strings by @ematipico in https://github.com/biomejs/biome/pull/5626
    • chore: fix linting issues by @ematipico in https://github.com/biomejs/biome/pull/5628
    • fix(core): handle .mjs extension in CommonJS packages by @arendjr in https://github.com/biomejs/biome/pull/5630
    • feat(core): skip non-root configuration files by @arendjr in https://github.com/biomejs/biome/pull/5622
    • fix(editorconfig): parse char classes in globs by @Conaclos in https://github.com/biomejs/biome/pull/5627
    • chore(deps): update dependency vite to v5.4.18 [security] by @renovate in https://github.com/biomejs/biome/pull/5640
    • fix(analyzer): use binary search to find diagnostics by @ematipico in https://github.com/biomejs/biome/pull/5631
    • chore(deps): update dependency @types/node to v22.14.1 by @renovate in https://github.com/biomejs/biome/pull/5650
    • chore(deps): update rust crate anyhow to 1.0.98 by @renovate in https://github.com/biomejs/biome/pull/5651
    • chore(deps): update pnpm to v10.8.0 by @renovate in https://github.com/biomejs/biome/pull/5653
    • chore(deps): update typescript-eslint monorepo to v8.29.1 by @renovate in https://github.com/biomejs/biome/pull/5652
    • chore(deps): update actions/setup-node action to v4.4.0 by @renovate in https://github.com/biomejs/biome/pull/5655
    • fix(linter): useImportExtensions should not error on valid imports with sub extensions by @minht11 in https://github.com/biomejs/biome/pull/5647
    • fix(deps): update @biomejs packages (major) by @renovate in https://github.com/biomejs/biome/pull/5658
    • Revert "fix(deps): update @biomejs packages (major)" by @siketyan in https://github.com/biomejs/biome/pull/5659
    • ci: use depot runner by @ematipico in https://github.com/biomejs/biome/pull/5661
    • fix(lint): noConsole rule now correctly handles indirect console.log calls and references by @mdevils in https://github.com/biomejs/biome/pull/5648
    • ci(renovate): ignore rand by @ematipico in https://github.com/biomejs/biome/pull/5662
    • ci(workflow): use depot for all jobs by @ematipico in https://github.com/biomejs/biome/pull/5664
    • feat(organizeImports): add import matchers by @Conaclos in https://github.com/biomejs/biome/pull/5639
    • feat(core): implement "thin" type resolution by @arendjr in https://github.com/biomejs/biome/pull/5665
    • chore: use test for type size verification by @arendjr in https://github.com/biomejs/biome/pull/5666
    • chore: add gold sponsor by @ematipico in https://github.com/biomejs/biome/pull/5668
    • chore: fix type in ja translation by @ematipico in https://github.com/biomejs/biome/pull/5669
    • chore: disable bumping engines on Renovate by @siketyan in https://github.com/biomejs/biome/pull/5670
    • chore: update oxc_resolver by @ematipico in https://github.com/biomejs/biome/pull/5671
    • fix(deps): update @biomejs packages (major) by @renovate in https://github.com/biomejs/biome/pull/5660
    • refactor(organizeImports): remove the typePlacement option by @Conaclos in https://github.com/biomejs/biome/pull/5675
    • feat(yaml): update yaml grammar by @vohoanglong0107 in https://github.com/biomejs/biome/pull/5615
    • fix(lint/noDuplicateObjectKeys): transfer comments by @Conaclos in https://github.com/biomejs/biome/pull/5676
    • docs: add RELEASES.md document by @ematipico in https://github.com/biomejs/biome/pull/5674
    • fix(no_focused_tests): detect focused test loops in noFocusedTests rule by @amasotti in https://github.com/biomejs/biome/pull/5642
    • ci(benchmarks): add code and file to diagnostics by @ematipico in https://github.com/biomejs/biome/pull/5672
    • fix(yaml): remaining issues with Yaml grammar by @vohoanglong0107 in https://github.com/biomejs/biome/pull/5680
    • fix(lint): remove false-positives on hooks in a class method by @siketyan in https://github.com/biomejs/biome/pull/5681
    • fix(deps): update rust crates by @renovate in https://github.com/biomejs/biome/pull/5663
    • feat(suppression): syntax rules suppression by @hanseltime in https://github.com/biomejs/biome/pull/5619
    • feat(core): add Typed service and update noFloatingPromises by @arendjr in https://github.com/biomejs/biome/pull/5685
    • fix(lint): correct the source of the rule noTsIgnore by @lixiaoyan in https://github.com/biomejs/biome/pull/5690
    • chore: format module graph by @ematipico in https://github.com/biomejs/biome/pull/5689
    • refactor: light scanner for formatter by @ematipico in https://github.com/biomejs/biome/pull/5692
    • chore: use Self where appropriate by @arendjr in https://github.com/biomejs/biome/pull/5699
    • feat: pretty print for type info by @ematipico in https://github.com/biomejs/biome/pull/5694
    • chore: verbatim formatting by @ematipico in https://github.com/biomejs/biome/pull/5707
    • fix(formatter): do not break properties in object patterns with nested assignment pattern by @siketyan in https://github.com/biomejs/biome/pull/5695
    • fix(assist): skip sorting specifiers if it contains any bogus nodes by @siketyan in https://github.com/biomejs/biome/pull/5711
    • feat(yaml): initialize parser by @vohoanglong0107 in https://github.com/biomejs/biome/pull/5709
    • feat(cli): add advices to no files processed error by @siketyan in https://github.com/biomejs/biome/pull/5708
    • feat(lint): implement code action for useConsistentObjectDefinition by @siketyan in https://github.com/biomejs/biome/pull/5712
    • feat(lint): implement useNumericSeparators by @uncenter in https://github.com/biomejs/biome/pull/5635
    • feat(lint): project domain by @ematipico in https://github.com/biomejs/biome/pull/5705
    • chore(deps): update pnpm to v10.8.1 by @renovate in https://github.com/biomejs/biome/pull/5720
    • chore(deps): update softprops/action-gh-release action to v2.2.2 by @renovate in https://github.com/biomejs/biome/pull/5722
    • chore(deps): update rust crate proc-macro2 to 1.0.95 by @renovate in https://github.com/biomejs/biome/pull/5721
    • fix(deps): update @biomejs packages by @renovate in https://github.com/biomejs/biome/pull/5723
    • chore(deps): add engines field for pnpm by @fireairforce in https://github.com/biomejs/biome/pull/5718
    • chore(deps): update dependency eslint to v9.25.0 by @renovate in https://github.com/biomejs/biome/pull/5726
    • chore(deps): update dependency @changesets/cli to v2.29.2 by @renovate in https://github.com/biomejs/biome/pull/5725
    • fix(formatter): indent_size can set to tab in .editorconfig by @fireairforce in https://github.com/biomejs/biome/pull/5713
    • feat(lint/useImportType): add style option by @Conaclos in https://github.com/biomejs/biome/pull/5717
    • feat(core): implement type inference for destructuring by @arendjr in https://github.com/biomejs/biome/pull/5727
    • chore: move @siketyan to the Core Contributors team by @siketyan in https://github.com/biomejs/biome/pull/5730
    • revert: editorconfig not default by @ematipico in https://github.com/biomejs/biome/pull/5733
    • feat(lint)!: support custom messages in noRestrictedGlobals rule by @siketyan in https://github.com/biomejs/biome/pull/5714
    • chore: reduce duplication and add formating of object literals by @ematipico in https://github.com/biomejs/biome/pull/5735
    • chore: update preview runners by @arendjr in https://github.com/biomejs/biome/pull/5734
    • fix(lint/useRegexLiterals): handle useless escapes by @Conaclos in https://github.com/biomejs/biome/pull/5716
    • fix(lint/useNamingConvention): ignore declarations in external modules by @Conaclos in https://github.com/biomejs/biome/pull/5741
    • chore: add bronze sponsor and alt text by @ematipico in https://github.com/biomejs/biome/pull/5744
    • fix(cli): fix the link "Biome in IDE" docs in the "Setup an editor extension" CLI doc by @tyndria in https://github.com/biomejs/biome/pull/5746
    • feat(biome_glob): add NormalizedGlob by @Conaclos in https://github.com/biomejs/biome/pull/5742
    • chore: update panic error message by @ematipico in https://github.com/biomejs/biome/pull/5748
    • feat(type_info): parse literals to value for checking equality by @siketyan in https://github.com/biomejs/biome/pull/5737
    • chore: update contact method in CODE_OF_CONDUCT.md by @dyc3 in https://github.com/biomejs/biome/pull/5752
    • feat(noExplicitType): cover const exported variables by @ematipico in https://github.com/biomejs/biome/pull/5684
    • refactor(core): don't ignore node_modules by @ematipico in https://github.com/biomejs/biome/pull/5760
    • chore: fix rules check for actions by @ematipico in https://github.com/biomejs/biome/pull/5751
    • fix(cli): only format valid files and skip errors with --skip-errors by @unvalley in https://github.com/biomejs/biome/pull/5719
    • feat(useExplicitType): cover function parameters by @ematipico in https://github.com/biomejs/biome/pull/5757
    • feat(lint): implement useIterableCallbackReturn rule by @mdevils in https://github.com/biomejs/biome/pull/5754
    • test(lint): auto enable module graph for rules in the project domain by @siketyan in https://github.com/biomejs/biome/pull/5753
    • fix(lint): use correct node:process import by @nhedger in https://github.com/biomejs/biome/pull/5779
    • feat(core): suppression reason by @ematipico in https://github.com/biomejs/biome/pull/5776
    • fix(core): use deterministic ordering by @ematipico in https://github.com/biomejs/biome/pull/5775
    • fix(biome_string_case): don't compare numbers with non-numbers by @Conaclos in https://github.com/biomejs/biome/pull/5787
    • docs(assist/organizeImports): update docs with last changes by @Conaclos in https://github.com/biomejs/biome/pull/5602
    • chore(deps): update dependency eslint to v9.25.1 by @renovate in https://github.com/biomejs/biome/pull/5788
    • chore(deps): update @biomejs packages by @renovate in https://github.com/biomejs/biome/pull/5789
    • fix(lint): respect preferred JSX quote style and escape conflicting inner quotes in class attributes by @Hideyasu-Ozawa in https://github.com/biomejs/biome/pull/5781
    • chore(deps): update github-actions by @renovate in https://github.com/biomejs/biome/pull/5790
    • feat(workspace): add debug_type_info by @ematipico in https://github.com/biomejs/biome/pull/5786
    • refactor(biome_string_case): minor change of Collator abstraction by @Conaclos in https://github.com/biomejs/biome/pull/5791
    • feat(migrate-eslint): migrate useImportType ESLint option by @Conaclos in https://github.com/biomejs/biome/pull/5792
    • refactor: revisit type-related data structures by @arendjr in https://github.com/biomejs/biome/pull/5777
    • fix(core): fix incorrect JSDoc detection by @arendjr in https://github.com/biomejs/biome/pull/5793
    • fix(lsp): related diagnostics by @ematipico in https://github.com/biomejs/biome/pull/5769
    • chore: type formatting tweaks by @arendjr in https://github.com/biomejs/biome/pull/5800
    • ci: fix binary path when building on Windows by @siketyan in https://github.com/biomejs/biome/pull/5804
    • fix(biome_cli): use workspace API to update and format config files by @bushuai in https://github.com/biomejs/biome/pull/5795
    • chore: rename --skip-errors to --skip-parse-error by @unvalley in https://github.com/biomejs/biome/pull/5805
    • ci: use depot runners for windows by @ematipico in https://github.com/biomejs/biome/pull/5806
    • fix(core): diagnostics and scan kind by @ematipico in https://github.com/biomejs/biome/pull/5794
    • ci: use GitHub hosted runner for publish workflows by @siketyan in https://github.com/biomejs/biome/pull/5808
    • feat(core): add ModuleId to ResolvedTypeId by @arendjr in https://github.com/biomejs/biome/pull/5809

    New Contributors

    • @akx made their first contribution in https://github.com/biomejs/biome/pull/5479
    • @Xstoudi made their first contribution in https://github.com/biomejs/biome/pull/5485
    • @jelly made their first contribution in https://github.com/biomejs/biome/pull/5528
    • @thejackshelton made their first contribution in https://github.com/biomejs/biome/pull/5535
    • @bedros-p made their first contribution in https://github.com/biomejs/biome/pull/5509
    • @mdevils made their first contribution in https://github.com/biomejs/biome/pull/5578
    • @amasotti made their first contribution in https://github.com/biomejs/biome/pull/5642
    • @hanseltime made their first contribution in https://github.com/biomejs/biome/pull/5619
    • @lixiaoyan made their first contribution in https://github.com/biomejs/biome/pull/5690
    • @tyndria made their first contribution in https://github.com/biomejs/biome/pull/5746
    • @Hideyasu-Ozawa made their first contribution in https://github.com/biomejs/biome/pull/5781

    Full Changelog: https://github.com/biomejs/biome/compare/@biomejs/[email protected]...@biomejs/[email protected]

    Open source →
  10. 2.0.0-beta.124 Mar 2025pre-release
    Release notes

    <!-- Release notes generated using configuration in .github/release.yml at main -->

    Read our blog post announcement.

    What's Changed

    Other changes

    • chore: fix dependency versions by @arendjr in https://github.com/biomejs/biome/pull/5429

    Full Changelog: https://github.com/biomejs/biome/compare/@biomejs/[email protected]...@biomejs/[email protected]

    Open source →
  11. 2.0.0-beta24 Mar 2025pre-release
    Release notes

    <!-- Release notes generated using configuration in .github/release.yml at main -->

    Read our blog post announcement.

    What's Changed

    Other changes

    • chore: add zoomdong to member list by @fireairforce in https://github.com/biomejs/biome/pull/4644
    • chore: extract noPackagePrivateImports rule by @arendjr in https://github.com/biomejs/biome/pull/4651
    • feat(biome_glob): add dedicated crate for globs by @Conaclos in https://github.com/biomejs/biome/pull/4609
    • docs: how to write a changeset by @ematipico in https://github.com/biomejs/biome/pull/4654
    • feat(linter): rule noTsIgnore by @ematipico in https://github.com/biomejs/biome/pull/4650
    • refactor(glob): stricter validation by @Conaclos in https://github.com/biomejs/biome/pull/4659
    • feat: codegen crate utility by @ematipico in https://github.com/biomejs/biome/pull/4657
    • refactor: use papaya instead of DashMap for workspace documents by @arendjr in https://github.com/biomejs/biome/pull/4624
    • feat(linter): implement noLowerCaseEnum by @eMerzh in https://github.com/biomejs/biome/pull/4031
    • feat(analyzer): range suppressions by @ematipico in https://github.com/biomejs/biome/pull/4649
    • chore: use papaya in PathInterner by @arendjr in https://github.com/biomejs/biome/pull/4669
    • fix(deps): update rust crates by @renovate in https://github.com/biomejs/biome/pull/4675
    • chore(deps): update pnpm to v9.14.4 by @renovate in https://github.com/biomejs/biome/pull/4673
    • chore(deps): update dependency dprint to v0.47.6 - autoclosed by @renovate in https://github.com/biomejs/biome/pull/4672
    • chore(deps): update @biomejs packages by @renovate in https://github.com/biomejs/biome/pull/4671
    • chore(deps): update tokio-tracing monorepo by @renovate in https://github.com/biomejs/biome/pull/4674
    • chore(deps): update codspeedhq/action action to v3.2.0 by @renovate in https://github.com/biomejs/biome/pull/4676
    • chore(deps): update dependency eslint to v9.16.0 by @renovate in https://github.com/biomejs/biome/pull/4679
    • chore(deps): update dependency @typescript-eslint/eslint-plugin to v8.17.0 by @renovate in https://github.com/biomejs/biome/pull/4678
    • refactor: remove the all option by @ematipico in https://github.com/biomejs/biome/pull/4664
    • refactor: cleaned up workspaceError enum in biome_service/diagnostics.rs by @sikehish in https://github.com/biomejs/biome/pull/4681
    • refactor: get rule severity from metadata severity by @ematipico in https://github.com/biomejs/biome/pull/4687
    • chore: add some comments for selector list formatted by @fireairforce in https://github.com/biomejs/biome/pull/4691
    • feat(linter): add NoUnknownAtRule by @togami2864 in https://github.com/biomejs/biome/pull/4689
    • refactor: add Workspace scanner by @arendjr in https://github.com/biomejs/biome/pull/4682
    • chore: drop slotmap and simplify locking by @arendjr in https://github.com/biomejs/biome/pull/4696
    • chore(deps): update rust crate anyhow to 1.0.94 by @renovate in https://github.com/biomejs/biome/pull/4703
    • fix(deps): update rust crates by @renovate in https://github.com/biomejs/biome/pull/4705
    • chore(deps): update rust crate indexmap to 2.7.0 by @renovate in https://github.com/biomejs/biome/pull/4708
    • chore(deps): update rust crate tokio to 1.42.0 by @renovate in https://github.com/biomejs/biome/pull/4710
    • chore(deps): update actions/cache action to v4.2.0 by @renovate in https://github.com/biomejs/biome/pull/4706
    • chore(deps): update pnpm to v9.15.0 by @renovate in https://github.com/biomejs/biome/pull/4707
    • chore(deps): update rust crate rustc-hash to 2.1.0 - autoclosed by @renovate in https://github.com/biomejs/biome/pull/4709
    • fix(deps): update @biomejs packages by @renovate in https://github.com/biomejs/biome/pull/4704
    • feat(parser): better control on JSX parsing by @ematipico in https://github.com/biomejs/biome/pull/4718
    • feat(linter): domains and deps by @ematipico in https://github.com/biomejs/biome/pull/4713
    • feat(format/html): opt out of formatting for pre, script and style tags by @dyc3 in https://github.com/biomejs/biome/pull/4729
    • refactor: style recommendation and new recommended severity by @ematipico in https://github.com/biomejs/biome/pull/4730
    • fix(analyzer): don't use organize imports implicitly by @ematipico in https://github.com/biomejs/biome/pull/4724
    • refactor: protect scanned files against closing by LSP by @arendjr in https://github.com/biomejs/biome/pull/4735
    • feat: add translation of README.md into French by @webdevbynight in https://github.com/biomejs/biome/pull/4728
    • chore(deps): update rust crate serde to 1.0.216 by @renovate in https://github.com/biomejs/biome/pull/4741
    • chore(deps): update softprops/action-gh-release action to v2.2.0 by @renovate in https://github.com/biomejs/biome/pull/4745
    • chore(deps): update dependency eslint to v9.17.0 by @renovate in https://github.com/biomejs/biome/pull/4743
    • chore(deps): update dependency @typescript-eslint/eslint-plugin to v8.18.1 by @renovate in https://github.com/biomejs/biome/pull/4742
    • docs: add gold sponsor by @ematipico in https://github.com/biomejs/biome/pull/4752
    • feat(lint): add noProcessGlobal rule by @wanghaoPolar in https://github.com/biomejs/biome/pull/4694
    • feat: implement useParseIntRadix - eslint/radix (#3932) by @Jantje19 in https://github.com/biomejs/biome/pull/4524
    • refactor: track too large files inside workspace server by @arendjr in https://github.com/biomejs/biome/pull/4738
    • docs(noRestrictedImports): update version notice by @MaxtuneLee in https://github.com/biomejs/biome/pull/4758
    • fix(json): treat tsconfig.*.json files as well known, allow comments and trailing comments by default by @dyc3 in https://github.com/biomejs/biome/pull/4771
    • perf: use AppendOnlyVec for file_sources by @arendjr in https://github.com/biomejs/biome/pull/4772
    • ci: fix formatting by @janie314 in https://github.com/biomejs/biome/pull/4774
    • feat: add migration for styling rules by @ematipico in https://github.com/biomejs/biome/pull/4759
    • refactor: remove deprecated rules by @ematipico in https://github.com/biomejs/biome/pull/4766
    • chore(deps): update rust crate anyhow to 1.0.95 by @renovate in https://github.com/biomejs/biome/pull/4780
    • fix(deps): update rust crates by @renovate in https://github.com/biomejs/biome/pull/4785
    • chore(deps): update actions/upload-artifact action to v4.5.0 by @renovate in https://github.com/biomejs/biome/pull/4783
    • feat: move useWhile to complexity by @ematipico in https://github.com/biomejs/biome/pull/4777
    • chore(deps): update rust crate serde_json to 1.0.134 by @renovate in https://github.com/biomejs/biome/pull/4781
    • chore(deps): update rust crate oxc_resolver to v3 by @renovate in https://github.com/biomejs/biome/pull/4787
    • chore(deps): update dependency dprint to v0.48.0 by @renovate in https://github.com/biomejs/biome/pull/4784
    • feat(css_parser): parse @position-try and @view-transition at-rules by @kevinmingtarja in https://github.com/biomejs/biome/pull/4793
    • chore(deps): update rust docker tag to v1.83.0 by @renovate in https://github.com/biomejs/biome/pull/4744
    • refactor: remove organizeImports by @ematipico in https://github.com/biomejs/biome/pull/4788
    • chore(deps): update pnpm to v9.15.1 by @renovate in https://github.com/biomejs/biome/pull/4779
    • fix(deps): update dependency tailwindcss to ^3.4.17 by @renovate in https://github.com/biomejs/biome/pull/4782
    • refactor: use camino for paths by @ematipico in https://github.com/biomejs/biome/pull/4797
    • fix(biome_diagnostics_categories): fix incorrect URLs for linter rules by @ynishimura in https://github.com/biomejs/biome/pull/4800
    • feat(html): plumbing for new HTML options, make bracket_same_line global by @dyc3 in https://github.com/biomejs/biome/pull/4790
    • refactor: cargo features by @ematipico in https://github.com/biomejs/biome/pull/4801
    • refactor: convert clippy allows to clippy expects by @janie314 in https://github.com/biomejs/biome/pull/4791
    • chore(deps): update pnpm to v9.15.2 by @renovate in https://github.com/biomejs/biome/pull/4807
    • docs: redact incorrect docs by @ematipico in https://github.com/biomejs/biome/pull/4815
    • chore(deps): update rust crate serde to 1.0.217 by @renovate in https://github.com/biomejs/biome/pull/4809
    • chore(deps): update rust crate quote to 1.0.38 by @renovate in https://github.com/biomejs/biome/pull/4808
    • feat(cli): better header in diagnostics by @ematipico in https://github.com/biomejs/biome/pull/4814
    • refactor(formatter): no trailing commas in JSON files by @ematipico in https://github.com/biomejs/biome/pull/4803
    • refactor: resolve paths and globs from the configuration path by @ematipico in https://github.com/biomejs/biome/pull/4823
    • feat: add GritQL formatting options by @ematipico in https://github.com/biomejs/biome/pull/4824
    • feat(formatter): add expand by @ematipico in https://github.com/biomejs/biome/pull/4819
    • feat(linter): add noNoninteractiveElementInteractions rule by @tunamaguro in https://github.com/biomejs/biome/pull/4358
    • feat(html): set up HTML configuration by @dyc3 in https://github.com/biomejs/biome/pull/4831
    • refactor: drop "current" project from workspace and cleanup workspace methods by @arendjr in https://github.com/biomejs/biome/pull/4827
    • chore(deps): update rust crate insta to 1.42.0 by @renovate in https://github.com/biomejs/biome/pull/4839
    • chore(deps): update pnpm to v9.15.3 by @renovate in https://github.com/biomejs/biome/pull/4838
    • chore(deps): update dependency @types/node to v20.17.12 by @renovate in https://github.com/biomejs/biome/pull/4837
    • chore(deps): update dependency @typescript-eslint/eslint-plugin to v8.19.1 by @renovate in https://github.com/biomejs/biome/pull/4806
    • feat(format/html): implement whitespace sensitivity by @dyc3 in https://github.com/biomejs/biome/pull/4818
    • refactor(formatter): don't allocate strings, and use try operator early by @ematipico in https://github.com/biomejs/biome/pull/4850
    • refactor: initial project layout by @arendjr in https://github.com/biomejs/biome/pull/4846
    • refactor: expose ProjectLayout as service by @arendjr in https://github.com/biomejs/biome/pull/4851
    • refactor: remove ROME_BINARY by @SuperchupuDev in https://github.com/biomejs/biome/pull/4853
    • refactor(core): configuration, settings and capabilities by @ematipico in https://github.com/biomejs/biome/pull/4845
    • fix(js_parser): parse huge binary expressions by @arendjr in https://github.com/biomejs/biome/pull/4856
    • fix(parser/html): misc minor parsing fixes by @dyc3 in https://github.com/biomejs/biome/pull/4852
    • fix(core): scan files in order by @arendjr in https://github.com/biomejs/biome/pull/4860
    • fix(core): print diagnostic for scanner panics by @arendjr in https://github.com/biomejs/biome/pull/4861
    • fix(css_parser): don't panic on unexpected EOF by @arendjr in https://github.com/biomejs/biome/pull/4862
    • fix(lint): don't panic on incomplete code in noFallthroughSwitchClause by @arendjr in https://github.com/biomejs/biome/pull/4863
    • fix(lint): don't report missing dependency on incomplete statement by @arendjr in https://github.com/biomejs/biome/pull/4864
    • feat(parser,format/html): add CDATA sections by @dyc3 in https://github.com/biomejs/biome/pull/4859
    • chore: improve task comments for creating new lint rules by @bushuai in https://github.com/biomejs/biome/pull/4866
    • fix(parser/html): strictly detect tag starts, <pre> tag fixes by @dyc3 in https://github.com/biomejs/biome/pull/4869
    • feat(linter): assign severity to groups by @ematipico in https://github.com/biomejs/biome/pull/4867
    • chore: paid contracting proposal by @arendjr in https://github.com/biomejs/biome/pull/4843
    • chore(deps): update rust crate serde_json to 1.0.135 by @renovate in https://github.com/biomejs/biome/pull/4878
    • chore(deps): update rust crate tokio to 1.43.0 by @renovate in https://github.com/biomejs/biome/pull/4883
    • chore(deps): update github-actions by @renovate in https://github.com/biomejs/biome/pull/4881
    • chore(deps): update rust docker tag to v1.84.0 by @renovate in https://github.com/biomejs/biome/pull/4884
    • fix(noUselessFragments): check Fragment when it under JSX Element or Condition Expr by @fireairforce in https://github.com/biomejs/biome/pull/4882
    • fix(biome_diagnostics): fix JetBrains relative file URLs should be clickable when given line and column numbers by @Andrew-Chen-Wang in https://github.com/biomejs/biome/pull/4876
    • fix(js_parser): don't crash on malformed for statement by @arendjr in https://github.com/biomejs/biome/pull/4889
    • chore: remove postinstall script by @ekoeditaa in https://github.com/biomejs/biome/pull/4887
    • refactor(editorconfig): remove support for max_line_length by @ematipico in https://github.com/biomejs/biome/pull/4894
    • chore: commercial support request issue template by @arendjr in https://github.com/biomejs/biome/pull/4895
    • chore(core): better debug logging by @ematipico in https://github.com/biomejs/biome/pull/4891
    • chore(deps): update @biomejs packages by @renovate in https://github.com/biomejs/biome/pull/4877
    • chore: use issue types in templates by @ematipico in https://github.com/biomejs/biome/pull/4904
    • chore: remove unused workflow by @nhedger in https://github.com/biomejs/biome/pull/4909
    • build: upgrade rust v1.84.0 by @unvalley in https://github.com/biomejs/biome/pull/4912
    • refactor: replace some lines for readability by @hamirmahal in https://github.com/biomejs/biome/pull/4914
    • chore(deps): update pnpm to v9.15.4 by @renovate in https://github.com/biomejs/biome/pull/4916
    • chore(deps): update rust crate enumflags2 to 0.7.11 by @renovate in https://github.com/biomejs/biome/pull/4917
    • chore(deps): update dependency @typescript-eslint/eslint-plugin to v8.20.0 by @renovate in https://github.com/biomejs/biome/pull/4920
    • chore(deps): update rust crate serde_json to 1.0.137 by @renovate in https://github.com/biomejs/biome/pull/4919
    • chore(deps): update rust crate indexmap to 2.7.1 by @renovate in https://github.com/biomejs/biome/pull/4918
    • chore(deps): update rust crate similar to 2.7.0 by @renovate in https://github.com/biomejs/biome/pull/4922
    • fix(analyzer): suppression comment fails with inner comments in functions by @fireairforce in https://github.com/biomejs/biome/pull/4714
    • fix(parser): export_named_type should parse default as normal by @fireairforce in https://github.com/biomejs/biome/pull/4903
    • fix: add RegExpStringIterator to globals by @hrishikesh-k in https://github.com/biomejs/biome/pull/4923
    • chore(deps): update rust:1.84.0 docker digest to e6e40c0 by @renovate in https://github.com/biomejs/biome/pull/4915
    • chore(deps): update dependency vite to v5.4.12 [security] by @renovate in https://github.com/biomejs/biome/pull/4938
    • fix(grit): allow parsing alternative engine/language names by @morgante in https://github.com/biomejs/biome/pull/4937
    • fix(lint): don't crash on malformed JSX by @arendjr in https://github.com/biomejs/biome/pull/4939
    • chore: stabilize parser tests by @arendjr in https://github.com/biomejs/biome/pull/4940
    • feat(core): implement DependencyGraph by @arendjr in https://github.com/biomejs/biome/pull/4929
    • fix(core): raise an error when invalid config extension is passed by @ematipico in https://github.com/biomejs/biome/pull/4944
    • refactor(js_analyze): turn on requireAscii by @Conaclos in https://github.com/biomejs/biome/pull/4945
    • feat(lint): implement noFloatingPromises rule for reguler async function by @kaykdm in https://github.com/biomejs/biome/pull/4911
    • feat(lint): new rule: noImportCycles by @arendjr in https://github.com/biomejs/biome/pull/4948
    • feat(lint): support assigned functions in noFloatingPromises by @kaykdm in https://github.com/biomejs/biome/pull/4958
    • chore: add governance changes approval by @ematipico in https://github.com/biomejs/biome/pull/4943
    • chore: update Just install link by @kerolloz in https://github.com/biomejs/biome/pull/4960
    • chore: add Lokalise as silver sponsor by @ematipico in https://github.com/biomejs/biome/pull/4961
    • fix(core): fix symlink handling by @arendjr in https://github.com/biomejs/biome/pull/4954
    • fix(useStrictMode): strict directive insertion logic by @bushuai in https://github.com/biomejs/biome/pull/4901
    • chore: fix typos in CONTRIBUTING.md by @kerolloz in https://github.com/biomejs/biome/pull/4962
    • fix(core): don't build control flow graph inside bogus nodes by @arendjr in https://github.com/biomejs/biome/pull/4963
    • chore: add note to readme by @ematipico in https://github.com/biomejs/biome/pull/4965
    • fix(lint): support some of wrapped hook calls in useExhaustiveDependencies by @siketyan in https://github.com/biomejs/biome/pull/4964
    • fix(core): raise an error when invalid config extension is passed by @ematipico in https://github.com/biomejs/biome/pull/4949
    • feat(config): add the includes field by @Conaclos in https://github.com/biomejs/biome/pull/4899
    • refactor(noFloatingPromises): update functions to return Option by @kaykdm in https://github.com/biomejs/biome/pull/4970
    • refactor: replace map_or with is_ok_and and is_some_and by @unvalley in https://github.com/biomejs/biome/pull/4969
    • refactor: enable needless_lifetimes clippy rule by @unvalley in https://github.com/biomejs/biome/pull/4973
    • chore(deps): update @biomejs packages by @renovate in https://github.com/biomejs/biome/pull/4979
    • chore(deps): update rust crate bpaf to 0.9.16 by @renovate in https://github.com/biomejs/biome/pull/4975
    • chore(deps): update actions/setup-node action to v4.2.0 by @renovate in https://github.com/biomejs/biome/pull/4980
    • chore(deps): update rust crate insta to 1.42.1 by @renovate in https://github.com/biomejs/biome/pull/4976
    • feat(migrate): migrate to includes by @Conaclos in https://github.com/biomejs/biome/pull/4974
    • chore(migrate): remove version check by @ematipico in https://github.com/biomejs/biome/pull/4987
    • fix(migrate): fix a typo in organizeImports migration message by @dyc3 in https://github.com/biomejs/biome/pull/4985
    • feat(format/html): apply line break with multiple attributes in multiline configuration by @Geun-Oh in https://github.com/biomejs/biome/pull/4984
    • chore(migrate): remove version check by @ematipico in https://github.com/biomejs/biome/pull/4990
    • feat(lint): make useSelfClosingElements safe and improve error message by @mehm8128 in https://github.com/biomejs/biome/pull/4998
    • feat(lint): support promise expression in noFloatingPromises by @kaykdm in https://github.com/biomejs/biome/pull/4977
    • feat(biome_css_analyze): add rule useSortedProperties by @simon-paris in https://github.com/biomejs/biome/pull/4063
    • fix(deps): update rust crates (major) by @renovate in https://github.com/biomejs/biome/pull/4886
    • fix(deps): update dependency prettier to v3.4.2 by @renovate in https://github.com/biomejs/biome/pull/4746
    • fix(deps): update rust crates by @renovate in https://github.com/biomejs/biome/pull/4885
    • chore: gen-tw description by @bushuai in https://github.com/biomejs/biome/pull/5010
    • fix(css): fix css codegen by @dyc3 in https://github.com/biomejs/biome/pull/5011
    • fix(css): fix css lint/assist registry codegen by @dyc3 in https://github.com/biomejs/biome/pull/5013
    • fix(biome_css_analyze): false positive of container name in noMissingVarFunction by @bushuai in https://github.com/biomejs/biome/pull/5008
    • refactor(migrate): use includes when migrating from eslint and prettier by @Conaclos in https://github.com/biomejs/biome/pull/5012
    • feat(format/html): implement bracketSameLine by @dyc3 in https://github.com/biomejs/biome/pull/4968
    • chore(deps): pin dependency @types/node to 22.13.0 by @renovate in https://github.com/biomejs/biome/pull/5018
    • feat(format/html): add css option for whitespace sensitivity by @dyc3 in https://github.com/biomejs/biome/pull/5016
    • fix(format/html): enforce whitespace sensitivity for siblings in HtmlElementList by @dyc3 in https://github.com/biomejs/biome/pull/5025
    • chore: use @changesets for changelog automation by @ematipico in https://github.com/biomejs/biome/pull/5023
    • chore: print diagnostics using relative paths by @ematipico in https://github.com/biomejs/biome/pull/5009
    • ci: workaround for dispatch action by @ematipico in https://github.com/biomejs/biome/pull/5030
    • fix(css_formatter): insert a whitespace after first selector in complex selector combinations by @vohoanglong0107 in https://github.com/biomejs/biome/pull/5014
    • fix(grit): broaden GritQL parser support by @morgante in https://github.com/biomejs/biome/pull/4978
    • fix: repair explosive memory leak in GritQL parser by @morgante in https://github.com/biomejs/biome/pull/5033
    • fix(grit): patch more parser incompatibilities for complex patterns by @morgante in https://github.com/biomejs/biome/pull/5037
    • fix(js-api): fix type definition for IFileFeaturesResult by @dyc3 in https://github.com/biomejs/biome/pull/5040
    • chore: move changes to changesets by @ematipico in https://github.com/biomejs/biome/pull/5044
    • chore(deps): update rust docker tag to v1.84.1 by @renovate in https://github.com/biomejs/biome/pull/5021
    • fix(lint): add react domain to useJsxKeyInIterable by @Jayllyz in https://github.com/biomejs/biome/pull/5043
    • chore: fix windows specific script errors by @dy0gu in https://github.com/biomejs/biome/pull/5051
    • chore(deps): update pnpm to v9.15.5 by @renovate in https://github.com/biomejs/biome/pull/5019
    • fix(format/html): make element children break if attributes break by @dyc3 in https://github.com/biomejs/biome/pull/5027
    • ci: rebrand nightly releases as preview releases by @ematipico in https://github.com/biomejs/biome/pull/5047
    • fix(format/html): fix long content failing to print if element has <= 1 attributes by @dyc3 in https://github.com/biomejs/biome/pull/5055
    • fix(lint): add missing domain to next.js rules by @Jayllyz in https://github.com/biomejs/biome/pull/5046
    • fix(css_formatter): improve CSS numeric formatting by @ah-yu in https://github.com/biomejs/biome/pull/5052
    • fix(linter): noConsole inside arrow function expressions by @ematipico in https://github.com/biomejs/biome/pull/5066
    • test(format/html): add prettier tests by @dyc3 in https://github.com/biomejs/biome/pull/5056
    • fix: patch js-api openProject() by @ianzone in https://github.com/biomejs/biome/pull/5000
    • fix(formatter): handling of comments in js holes with newlines by @ematipico in https://github.com/biomejs/biome/pull/5072
    • fix(lsp): better error message when editorconfig is broken by @ematipico in https://github.com/biomejs/biome/pull/5073
    • fix(editorconfig): fix insert_final_newline being unable to parse value unset by @dyc3 in https://github.com/biomejs/biome/pull/5067
    • chore(deps): update @biomejs packages by @renovate in https://github.com/biomejs/biome/pull/5071
    • feat(biome_js_formatter): introduce the new objectWrap option by @siketyan in https://github.com/biomejs/biome/pull/5068
    • chore(format/js): fix missing snapshot update by @dyc3 in https://github.com/biomejs/biome/pull/5075
    • feat(analyzer): useAltText don't check object spread by @fireairforce in https://github.com/biomejs/biome/pull/4935
    • chore(lsp): add more logging when running the daemon by @ematipico in https://github.com/biomejs/biome/pull/5086
    • feat(formatter): support bracketSpacing option in JSON by @siketyan in https://github.com/biomejs/biome/pull/5083
    • ci: use pkg.pr.new for preview releases by @ematipico in https://github.com/biomejs/biome/pull/5092
    • feat(lint): support class methods in noFloatingPromises by @kaykdm in https://github.com/biomejs/biome/pull/5028
    • ci: fix incorrect syntax by @ematipico in https://github.com/biomejs/biome/pull/5094
    • feat(lint): add noConstantBinaryExpression lint rule for JS by @siketyan in https://github.com/biomejs/biome/pull/5076
    • test(lint): add test cases for unnamed class expression in noFloating… by @kaykdm in https://github.com/biomejs/biome/pull/5098
    • refactor(formatter): remove non-printing related options from FormatOptions by @ah-yu in https://github.com/biomejs/biome/pull/5088
    • fix(lint): ignore multiline literals in useTemplate rule by @siketyan in https://github.com/biomejs/biome/pull/5085
    • chore: update workflows and readme by @ematipico in https://github.com/biomejs/biome/pull/5104
    • ci: correctly import composite action by @ematipico in https://github.com/biomejs/biome/pull/5105
    • ci: correctly import composite action by @ematipico in https://github.com/biomejs/biome/pull/5106
    • ci: don't use composite action by @ematipico in https://github.com/biomejs/biome/pull/5107
    • chore(deps): update hashbrown to fix advisory by @ematipico in https://github.com/biomejs/biome/pull/5108
    • fix(parser): throw syntax error for import without arguments by @fireairforce in https://github.com/biomejs/biome/pull/5099
    • ci: fix release workflow by @ematipico in https://github.com/biomejs/biome/pull/5112
    • ci: install dependencies by @ematipico in https://github.com/biomejs/biome/pull/5113
    • ci: install required packages for changesets by @ematipico in https://github.com/biomejs/biome/pull/5114
    • test: add end-to-end tests by @Conaclos in https://github.com/biomejs/biome/pull/5117
    • refactor(biome_fs): make paths absolute to correctly match against globs by @Conaclos in https://github.com/biomejs/biome/pull/5017
    • fix(js-api): fix the generated types for rule domains by @dyc3 in https://github.com/biomejs/biome/pull/5120
    • docs(html): fix docs for html's whitespace sensitivity option by @dyc3 in https://github.com/biomejs/biome/pull/5123
    • chore: format e2e test files by @unvalley in https://github.com/biomejs/biome/pull/5131
    • feat(cli)!: rename --javascript-attribute-position to --javascript-formatter-attribute-position by @siketyan in https://github.com/biomejs/biome/pull/5132
    • fix(format/html): fix extra characters getting added in attribute quotes by @dyc3 in https://github.com/biomejs/biome/pull/5128
    • chore: add codespace configuration by @Th3S4mur41 in https://github.com/biomejs/biome/pull/5122
    • fix(cli): fix CLI flag of bracketSpacing option for lang-specific override by @siketyan in https://github.com/biomejs/biome/pull/5130
    • chore: changeset for --suppress flag by @anthonyshew in https://github.com/biomejs/biome/pull/5121
    • chore(deps): update @biomejs packages by @renovate in https://github.com/biomejs/biome/pull/5135
    • chore(deps): pin dependency @changesets/changelog-github to 0.5.0 by @renovate in https://github.com/biomejs/biome/pull/5134
    • chore(deps): update rust crate papaya to 0.1.9 by @renovate in https://github.com/biomejs/biome/pull/5141
    • chore(deps): update dependency dprint to v0.49.0 by @renovate in https://github.com/biomejs/biome/pull/5143
    • fix: improve GritQL formatter by @morgante in https://github.com/biomejs/biome/pull/5136
    • chore(deps): update dependency vitest to v1.6.1 [security] by @renovate in https://github.com/biomejs/biome/pull/5034
    • chore(deps): update rust crate grit-util to 0.5.1 by @renovate in https://github.com/biomejs/biome/pull/5138
    • chore(deps): update dependency eslint to v9.20.1 by @renovate in https://github.com/biomejs/biome/pull/5144
    • chore(deps): update rust crate grit-pattern-matcher to 0.5.1 by @renovate in https://github.com/biomejs/biome/pull/5137
    • feat(lint): add noAwaitInLoop by @unvalley in https://github.com/biomejs/biome/pull/5129
    • chore(deps): update rust crate rustc-hash to 2.1.1 by @renovate in https://github.com/biomejs/biome/pull/5142
    • feat(biome_glob): add Editorconfig globs by @Conaclos in https://github.com/biomejs/biome/pull/5147
    • fix(html): fix html configuration having no effect by @dyc3 in https://github.com/biomejs/biome/pull/5149
    • refactor(linter): severity and recommendation of lint rules by @ematipico in https://github.com/biomejs/biome/pull/5133
    • chore: fix snaphots by @arendjr in https://github.com/biomejs/biome/pull/5161
    • chore(deps): update rust crate serde_json to 1.0.139 by @renovate in https://github.com/biomejs/biome/pull/5020
    • feat(core): implement workspace plugin loading by @arendjr in https://github.com/biomejs/biome/pull/5160
    • feat(config): remove the ignore and include field by @Conaclos in https://github.com/biomejs/biome/pull/5158
    • chore: add siketyan to maintainers by @siketyan in https://github.com/biomejs/biome/pull/5168
    • fix(cli): rename --javascript-object-wrap to --javascript-formatter-object-wrap by @siketyan in https://github.com/biomejs/biome/pull/5166
    • feat(formatter): support objectWrap option in JSON, promoting it to global by @siketyan in https://github.com/biomejs/biome/pull/5082
    • chore: eliminate some warnings on release build by @siketyan in https://github.com/biomejs/biome/pull/5169
    • feat(biome_css_analyzer): update known pseudo elements by @Th3S4mur41 in https://github.com/biomejs/biome/pull/5118
    • ci: reduce max build jobs on cargo to mitigate OOM by @siketyan in https://github.com/biomejs/biome/pull/5171
    • feat(rage): display configuration path in output by @isjavierdiaz in https://github.com/biomejs/biome/pull/5156
    • feat(html): set up html parser and formatter benchmarks by @dyc3 in https://github.com/biomejs/biome/pull/5155
    • fix(formatter): do not break properties of type annotation in function parameters by @siketyan in https://github.com/biomejs/biome/pull/5174
    • fix(linter): allow escaping at the start of a regex group by @Conaclos in https://github.com/biomejs/biome/pull/5177
    • refactor(config): remove overrides.include by @Conaclos in https://github.com/biomejs/biome/pull/5176
    • fix(format/html): resolve some edge cases with whitespace and how inline elements are treated by @dyc3 in https://github.com/biomejs/biome/pull/5148
    • refactor(useNamingConvention): remove enumMemberCase option by @Conaclos in https://github.com/biomejs/biome/pull/5178
    • chore(deps): update dependency @types/node to v22.13.5 by @renovate in https://github.com/biomejs/biome/pull/5182
    • chore(deps): update dependency @changesets/changelog-github to v0.5.1 by @renovate in https://github.com/biomejs/biome/pull/5181
    • chore(deps): update rust crate anyhow to 1.0.96 by @renovate in https://github.com/biomejs/biome/pull/5183
    • chore(deps): update rust crate serde to 1.0.218 by @renovate in https://github.com/biomejs/biome/pull/5184
    • chore(deps): update dependency @changesets/cli to v2.28.1 by @renovate in https://github.com/biomejs/biome/pull/5185
    • chore(deps): update dependency eslint to v9.21.0 by @renovate in https://github.com/biomejs/biome/pull/5186
    • chore: merge next to main by @siketyan in https://github.com/biomejs/biome/pull/5187
    • ci: move test-node-api job to a new pull_request_node.yml workflow by @siketyan in https://github.com/biomejs/biome/pull/5192
    • test(lint): update snapshots for #5139 by @siketyan in https://github.com/biomejs/biome/pull/5189
    • build: upgrade pnpm to v10 by @siketyan in https://github.com/biomejs/biome/pull/5190
    • chore: workspace cleanups by @arendjr in https://github.com/biomejs/biome/pull/5191
    • feat(lint): support object method in noFloatingPromises by @kaykdm in https://github.com/biomejs/biome/pull/5103
    • refactor: persist workspaces across connections by @arendjr in https://github.com/biomejs/biome/pull/5193
    • fix(parser): gracefully handle stalled parser in object patterns by @arendjr in https://github.com/biomejs/biome/pull/5198
    • feat(lint): add noDestructuredProps by @ematipico in https://github.com/biomejs/biome/pull/4983
    • feat(biome_js_analyze): implement useConsistentObjectDefinition rule by @dy0gu in https://github.com/biomejs/biome/pull/5042
    • refactor(css_semantic): improve CSS semantic model structure and API by @togami2864 in https://github.com/biomejs/biome/pull/4908
    • test: update snapshots by @ematipico in https://github.com/biomejs/biome/pull/5199
    • fix(lsp): fill in missing workspaceFolders capabilities by @osiewicz in https://github.com/biomejs/biome/pull/5204
    • feat: support for nested ignore files by @ematipico in https://github.com/biomejs/biome/pull/5195
    • feat(lint): add useForComponent by @fireairforce in https://github.com/biomejs/biome/pull/5203
    • fix: explain command for rule by @ematipico in https://github.com/biomejs/biome/pull/5214
    • feat(biome_cli): add schema version check to check,lint,format commands by @MaxtuneLee in https://github.com/biomejs/biome/pull/4796
    • feat(lint): support promise in function argument for noFloatingPromises by @kaykdm in https://github.com/biomejs/biome/pull/5206
    • feat(lsp): allow overriding the configuration path from LSP workspaces by @siketyan in https://github.com/biomejs/biome/pull/5093
    • chore: update useForComponent diagnostic note by @fireairforce in https://github.com/biomejs/biome/pull/5220
    • build: upgrade toolchain to Rust 1.85.0 by @siketyan in https://github.com/biomejs/biome/pull/5225
    • feat(core): workspace watcher by @arendjr in https://github.com/biomejs/biome/pull/5200
    • fix: add missing unsafe blocks and unsafe keyword on extern blocks by @siketyan in https://github.com/biomejs/biome/pull/5223
    • refactor(js_analyze): remove support for dynamic regexes by @Conaclos in https://github.com/biomejs/biome/pull/5226
    • fix: remove usages of gen reserved keyword by @siketyan in https://github.com/biomejs/biome/pull/5221
    • refactor(formatter): preserve useless escapes by @Conaclos in https://github.com/biomejs/biome/pull/5228
    • fix: add missing use<> to RPIT's by @siketyan in https://github.com/biomejs/biome/pull/5222
    • build: upgrade to Rust 2024 edition by @siketyan in https://github.com/biomejs/biome/pull/5224
    • chore: switch to Rustfmt 2024 style edition by @siketyan in https://github.com/biomejs/biome/pull/5236
    • chore: add #5236 to .git-blame-ignore-revs by @siketyan in https://github.com/biomejs/biome/pull/5238
    • feat(js/noUselessEscapeInString): add lint rule by @Conaclos in https://github.com/biomejs/biome/pull/5229
    • refactor(formatter): preserve useless escaped quotes and single quotes in CSS charset by @Conaclos in https://github.com/biomejs/biome/pull/5237
    • feat(css/noUselessEscapeInString): add rule by @Conaclos in https://github.com/biomejs/biome/pull/5240
    • fix(noUselessEscapeInString): use text_trimmed instead of text by @Conaclos in https://github.com/biomejs/biome/pull/5241
    • fix(js/linter): use text_trimmed instead of text by @Conaclos in https://github.com/biomejs/biome/pull/5246
    • chore(deps): update @biomejs packages by @renovate in https://github.com/biomejs/biome/pull/5247
    • chore(deps): update rust crate bpaf to 0.9.17 by @renovate in https://github.com/biomejs/biome/pull/5248
    • chore(deps): update rust crate insta to 1.42.2 by @renovate in https://github.com/biomejs/biome/pull/5250
    • chore(deps): update rust crate globset to 0.4.16 by @renovate in https://github.com/biomejs/biome/pull/5249
    • chore(deps): update github-actions by @renovate in https://github.com/biomejs/biome/pull/5252
    • chore(deps): update rust crate proc-macro2 to 1.0.94 by @renovate in https://github.com/biomejs/biome/pull/5254
    • chore(deps): update rust crate anyhow to 1.0.97 by @renovate in https://github.com/biomejs/biome/pull/5253
    • chore(deps): update rust crate quote to 1.0.39 by @renovate in https://github.com/biomejs/biome/pull/5256
    • chore(deps): update pnpm to v10.5.2 by @renovate in https://github.com/biomejs/biome/pull/5257
    • refactor: better handling for the lifetime extension issue by @siketyan in https://github.com/biomejs/biome/pull/5239
    • feat(lint): add allowLabels option to suspicious/noConfusingLabels by @tim-we in https://github.com/biomejs/biome/pull/5230
    • feat(xtask): check rustfmt version in codegen by @siketyan in https://github.com/biomejs/biome/pull/5259
    • feat(linter): implement useSymbolDescription by @minht11 in https://github.com/biomejs/biome/pull/5232
    • ci: fix udeps workflows by @arendjr in https://github.com/biomejs/biome/pull/5265
    • fix(core): resolve extensionless imports to TS/JSX files by @arendjr in https://github.com/biomejs/biome/pull/5260
    • refactor(noOctalEscape): fixes and improvements by @Conaclos in https://github.com/biomejs/biome/pull/5243
    • fix: organizeImports and internal service language by @ematipico in https://github.com/biomejs/biome/pull/5264
    • refactor(parse/html): split HtmlName into HtmlTagName and HtmlAttributeName by @dyc3 in https://github.com/biomejs/biome/pull/5267
    • fix(js_parser): allow metavariables to be placed in more locations by @ah-yu in https://github.com/biomejs/biome/pull/5209
    • fix: canonicalize the path of TemporaryFs by @siketyan in https://github.com/biomejs/biome/pull/5227
    • refactor(noNonoctalDecimalEscape): check member name by @Conaclos in https://github.com/biomejs/biome/pull/5269
    • fix(lsp): order of code actions by @ematipico in https://github.com/biomejs/biome/pull/5268
    • feat: merge the objectWrap option into expand by @siketyan in https://github.com/biomejs/biome/pull/5262
    • chore: stabilise tests on macOS by @arendjr in https://github.com/biomejs/biome/pull/5275
    • fix(biome_js_analyze): false positive for range operator in regular expression by @bushuai in https://github.com/biomejs/biome/pull/5234
    • feat(lsp)!: remove --config-path from lsp-proxy and daemon by @siketyan in https://github.com/biomejs/biome/pull/5235
    • chore: uncomment tracing annotation by @arendjr in https://github.com/biomejs/biome/pull/5276
    • fix(analyzer): top-level action with existing comments by @ematipico in https://github.com/biomejs/biome/pull/5273
    • feat(format/html): normalize casing for directive by @dyc3 in https://github.com/biomejs/biome/pull/5266
    • chore: bump papaya by @arendjr in https://github.com/biomejs/biome/pull/5284
    • ci: beta and preview releases by @ematipico in https://github.com/biomejs/biome/pull/5282
    • feat(linter): implement noBitwiseOperators rule by @huangtiandi1999 in https://github.com/biomejs/biome/pull/5274
    • feat(core): watcher + LSP improvements by @arendjr in https://github.com/biomejs/biome/pull/5283
    • fix(core): fix workspace scanner in LSP by @arendjr in https://github.com/biomejs/biome/pull/5286
    • chore: update issue config by @arendjr in https://github.com/biomejs/biome/pull/5287
    • fix(lint): useArrowFunction should parenthesise the expr starting with { by @siketyan in https://github.com/biomejs/biome/pull/5170
    • fix(parser): don't apply jsxEverywhere to .ts files by @arendjr in https://github.com/biomejs/biome/pull/5297
    • chore: past tense in changesets by @arendjr in https://github.com/biomejs/biome/pull/5299
    • fix(lint): allow single spaces in useConsistentCurlyBraces rule by @Pascalmh in https://github.com/biomejs/biome/pull/5298
    • fix(wasm): add missing RuleDomain and RuleDomainValue types to the generated declaration by @siketyan in https://github.com/biomejs/biome/pull/5306
    • fix(codegen): use optional mapped type for rule domains by @siketyan in https://github.com/biomejs/biome/pull/5308
    • build(deps): update dependencies to fix cargo audit by @siketyan in https://github.com/biomejs/biome/pull/5310
    • fix: use alphabetical order in Ord and PartialOrd impls on RuleDomain by @siketyan in https://github.com/biomejs/biome/pull/5311
    • docs: fix documentation by @ematipico in https://github.com/biomejs/biome/pull/5314
    • chore(deps): update @biomejs packages by @renovate in https://github.com/biomejs/biome/pull/5317
    • chore(deps): update rust crate bpaf to 0.9.18 by @renovate in https://github.com/biomejs/biome/pull/5318
    • chore(deps): update rust crate serde_json to 1.0.140 by @renovate in https://github.com/biomejs/biome/pull/5320
    • chore(deps): update rust crate serde to 1.0.219 by @renovate in https://github.com/biomejs/biome/pull/5319
    • docs: copy docs of import sorting from website by @ematipico in https://github.com/biomejs/biome/pull/5315
    • chore(deps): update rust crate terminal_size to 0.4.2 by @renovate in https://github.com/biomejs/biome/pull/5321
    • fix(deps): update rust crates by @renovate in https://github.com/biomejs/biome/pull/5322
    • chore(deps): update pnpm to v10.6.2 by @renovate in https://github.com/biomejs/biome/pull/5324
    • chore(deps): update dependency eslint to v9.22.0 by @renovate in https://github.com/biomejs/biome/pull/5323
    • fix: propagate plugin load error LSP by @wanghaoPolar in https://github.com/biomejs/biome/pull/5294
    • feat(format/html): normalize casing for tag names and attribute names by @dyc3 in https://github.com/biomejs/biome/pull/5303
    • fix(core): force exit the daemon on shutdown by @arendjr in https://github.com/biomejs/biome/pull/5330
    • feat(linter): update useImportExtensions to suggest actual extensions by @arendjr in https://github.com/biomejs/biome/pull/5332
    • feat(core): add JSDoc comments to dependency graph by @arendjr in https://github.com/biomejs/biome/pull/5329
    • feat(cli): add --threads to ci command by @ematipico in https://github.com/biomejs/biome/pull/5337
    • chore: cleanup changesets by @arendjr in https://github.com/biomejs/biome/pull/5338
    • fix: add scanning time to traverse time by @ematipico in https://github.com/biomejs/biome/pull/5343
    • chore(markdown): better grammar by @ematipico in https://github.com/biomejs/biome/pull/5335
    • fix(formatter): hug the object type in the only function parameter by @siketyan in https://github.com/biomejs/biome/pull/5347
    • feat(biome_cli): enable .editorconfig by default by @fireairforce in https://github.com/biomejs/biome/pull/5127
    • refactor(linter): rename noMultipleSpacesInRegularExpressionLiterals by @ematipico in https://github.com/biomejs/biome/pull/5351
    • chore(html): remove feature flag, expose html formatter, disabled by default by @dyc3 in https://github.com/biomejs/biome/pull/5354
    • chore: add dogfood plugin by @arendjr in https://github.com/biomejs/biome/pull/5355
    • fix(cli): check TERMINAL_EMULATOR variable by @arendjr in https://github.com/biomejs/biome/pull/5359
    • chore(deps): update rust crate bpaf to 0.9.19 by @renovate in https://github.com/biomejs/biome/pull/5367
    • chore(deps): update github-actions by @renovate in https://github.com/biomejs/biome/pull/5369
    • chore(deps): update rust crate quote to 1.0.40 by @renovate in https://github.com/biomejs/biome/pull/5368
    • chore(deps): update rust crate smallvec to 1.14.0 by @renovate in https://github.com/biomejs/biome/pull/5373
    • chore(deps): update rust crate indexmap to 2.8.0 - autoclosed by @renovate in https://github.com/biomejs/biome/pull/5372
    • chore(deps): update rust crate tokio to 1.44.1 by @renovate in https://github.com/biomejs/biome/pull/5374
    • chore(deps): update rust docker tag to v1.85.0 by @renovate in https://github.com/biomejs/biome/pull/5375
    • feat(core): allow plugins to control severity of diagnostics by @arendjr in https://github.com/biomejs/biome/pull/5363
    • chore: format config by @arendjr in https://github.com/biomejs/biome/pull/5378
    • chore(deps): update pnpm to v10.6.3 by @renovate in https://github.com/biomejs/biome/pull/5366
    • chore(deps): update node.js to >=20.19.0 by @renovate in https://github.com/biomejs/biome/pull/5370
    • fix(deps): update dependency prettier to v3.5.3 by @renovate in https://github.com/biomejs/biome/pull/5377
    • chore(deps): update typescript-eslint monorepo to v8.26.1 by @renovate in https://github.com/biomejs/biome/pull/5376
    • perf: read package.json only once in a run by @siketyan in https://github.com/biomejs/biome/pull/5380
    • feat: add option to skip arrow function by @ematipico in https://github.com/biomejs/biome/pull/5348
    • docs: update docs for website by @ematipico in https://github.com/biomejs/biome/pull/5385
    • fix(migrate): don't migrate if recommended rules are disabled by @ematipico in https://github.com/biomejs/biome/pull/5386
    • fix: fix of ru/uk readme translations by @e965 in https://github.com/biomejs/biome/pull/5281
    • chore: remove detection of multiple config files by @ematipico in https://github.com/biomejs/biome/pull/5390
    • refactor: rename rule to noAdjacentSpacesInRegex by @ematipico in https://github.com/biomejs/biome/pull/5392
    • feat(lint): ignoreRestSiblings option to noUnusedVariables by @iamakulov in https://github.com/biomejs/biome/pull/5157
    • feat(biome_js_analyze): add useSortedKeys assist rule by @r1tsuu in https://github.com/biomejs/biome/pull/5079
    • fix(lint): handle const + type bindings in useExportType by @siketyan in https://github.com/biomejs/biome/pull/5396
    • fix(diagnostics): correctly print emulator files by @ematipico in https://github.com/biomejs/biome/pull/5394
    • chore: upgrade rust by @ematipico in https://github.com/biomejs/biome/pull/5398
    • chore: rename rules by @ematipico in https://github.com/biomejs/biome/pull/5403
    • feat(lint): add quick fix for useExhaustiveDependencies rule by @siketyan in https://github.com/biomejs/biome/pull/5326
    • fix(linter): false positive for noUnknownFunction by @ematipico in https://github.com/biomejs/biome/pull/5404
    • feat(lint): implement noPrivateImports by @arendjr in https://github.com/biomejs/biome/pull/5388
    • chore: noPrivateImports doc tweak by @arendjr in https://github.com/biomejs/biome/pull/5412
    • feat(assist): import organizer revamping by @Conaclos in https://github.com/biomejs/biome/pull/5364
    • docs(assist/organizeImports): remove invalid trailing comma in config by @Conaclos in https://github.com/biomejs/biome/pull/5413
    • docs(assist/organizeImports): add missing comma in config by @Conaclos in https://github.com/biomejs/biome/pull/5415
    • refactor(noUndeclaredVariables): set checkTypes to false by default by @Conaclos in https://github.com/biomejs/biome/pull/5414
    • refactor(lint): a11y utils to reduce duplicate function definitions by @unvalley in https://github.com/biomejs/biome/pull/5405
    • docs(assist/organizeImports): remove expect_diagnostic,use_options by @Conaclos in https://github.com/biomejs/biome/pull/5416
    • docs(assist/organizeImports): remove options marker and use ts where required by @Conaclos in https://github.com/biomejs/biome/pull/5417
    • refactor(assist/useSortedAttributes): natural sorting and avoid cloning by @Conaclos in https://github.com/biomejs/biome/pull/5418
    • refactor(assist/useSortedKeys): use our own natural order impl by @Conaclos in https://github.com/biomejs/biome/pull/5419
    • chore(deps): update @biomejs packages by @renovate in https://github.com/biomejs/biome/pull/5421
    • chore(deps): update github-actions by @renovate in https://github.com/biomejs/biome/pull/5423
    • chore(deps): update dependency dprint to v0.49.1 by @renovate in https://github.com/biomejs/biome/pull/5422
    • chore(deps): update rust:1.85.0 docker digest to 0ff31c9 - autoclosed by @renovate in https://github.com/biomejs/biome/pull/5420
    • chore(deps): update pnpm to v10.6.5 by @renovate in https://github.com/biomejs/biome/pull/5425
    • chore(deps): update @biomejs packages by @renovate in https://github.com/biomejs/biome/pull/5424
    • chore: beta preparation by @arendjr in https://github.com/biomejs/biome/pull/5427
    • chore: update versions in JS packages before publishing by @arendjr in https://github.com/biomejs/biome/pull/5428

    New Contributors

    • @tommymorgan made their first contribution in https://github.com/biomejs/biome/pull/4172
    • @sikehish made their first contribution in https://github.com/biomejs/biome/pull/4681
    • @webdevbynight made their first contribution in https://github.com/biomejs/biome/pull/4728
    • @Jantje19 made their first contribution in https://github.com/biomejs/biome/pull/4524
    • @Yz4230 made their first contribution in https://github.com/biomejs/biome/pull/4699
    • @MaxtuneLee made their first contribution in https://github.com/biomejs/biome/pull/4758
    • @janie314 made their first contribution in https://github.com/biomejs/biome/pull/4774
    • @kevinmingtarja made their first contribution in https://github.com/biomejs/biome/pull/4793
    • @Andrew-Chen-Wang made their first contribution in https://github.com/biomejs/biome/pull/4876
    • @ekoeditaa made their first contribution in https://github.com/biomejs/biome/pull/4887
    • @hrishikesh-k made their first contribution in https://github.com/biomejs/biome/pull/4923
    • @morgante made their first contribution in https://github.com/biomejs/biome/pull/4937
    • @kerolloz made their first contribution in https://github.com/biomejs/biome/pull/4960
    • @Geun-Oh made their first contribution in https://github.com/biomejs/biome/pull/4984
    • @dy0gu made their first contribution in https://github.com/biomejs/biome/pull/5051
    • @ianzone made their first contribution in https://github.com/biomejs/biome/pull/5000
    • @Th3S4mur41 made their first contribution in https://github.com/biomejs/biome/pull/5122
    • @isjavierdiaz made their first contribution in https://github.com/biomejs/biome/pull/5156
    • @osiewicz made their first contribution in https://github.com/biomejs/biome/pull/5204
    • @tim-we made their first contribution in https://github.com/biomejs/biome/pull/5230
    • @huangtiandi1999 made their first contribution in https://github.com/biomejs/biome/pull/5274
    • @Pascalmh made their first contribution in https://github.com/biomejs/biome/pull/5298
    • @iamakulov made their first contribution in https://github.com/biomejs/biome/pull/5157
    • @r1tsuu made their first contribution in https://github.com/biomejs/biome/pull/5079

    Full Changelog: https://github.com/biomejs/biome/compare/cli/v1.9.5-nightly.81fdedb...@biomejs/[email protected]

    Open source →
  12. 1.9.5-nightly.ff02a0b6 Nov 2024pre-release

    Nothing published for this version

  13. 1.9.5-nightly.c0cccb220 Nov 2024pre-release

    Nothing published for this version

  14. 1.9.5-nightly.92879ae25 Oct 2024pre-release

    Nothing published for this version

  15. 1.9.5-nightly.81fdedb26 Nov 2024pre-release

    Nothing published for this version

  16. 1.9.5-nightly.4713c5230 Oct 2024pre-release

    Nothing published for this version

  17. 1.9.417 Oct 2024

    Nothing published for this version

  18. 1.9.31 Oct 2024

    Nothing published for this version

  19. 1.9.3-nightly.75b438727 Sept 2024pre-release

    Nothing published for this version

  20. 1.9.219 Sept 2024

    Nothing published for this version

  21. 1.9.115 Sept 2024

    Nothing published for this version

  22. 1.9.1-nightly.12688b613 Sept 2024pre-release

    Nothing published for this version

  23. 1.9.012 Sept 2024

    Nothing published for this version

  24. 1.8.4-nightly.d079e5321 Aug 2024pre-release

    Nothing published for this version

  25. 1.8.4-nightly.bd1d0c64 Aug 2024pre-release

    Nothing published for this version

  26. 1.8.4-nightly.a579bf78 Jul 2024pre-release

    Nothing published for this version

  27. 1.8.4-nightly.7aaf0ce6 Sept 2024pre-release

    Nothing published for this version

  28. 1.8.327 Jun 2024

    Nothing published for this version

  29. 1.8.220 Jun 2024

    Nothing published for this version

  30. 1.8.110 Jun 2024

    Nothing published for this version

  31. 1.8.04 Jun 2024

    Nothing published for this version

  32. 1.7.4-nightly.125f34b23 May 2024pre-release

    Nothing published for this version

  33. 1.7.36 May 2024

    Nothing published for this version

  34. 1.7.230 Apr 2024

    Nothing published for this version

  35. 1.7.122 Apr 2024

    Nothing published for this version

  36. 1.7.015 Apr 2024

    Nothing published for this version

  37. 1.6.43 Apr 2024

    Nothing published for this version

  38. 1.6.4-nightly.abab45110 Apr 2024pre-release

    Nothing published for this version

  39. 1.6.4-nightly.a995ada6 Apr 2024pre-release

    Nothing published for this version

  40. 1.6.325 Mar 2024

    Nothing published for this version

  41. 1.6.222 Mar 2024

    Nothing published for this version

  42. 1.6.112 Mar 2024

    Nothing published for this version

  43. 1.6.08 Mar 2024

    Nothing published for this version

  44. 1.5.322 Jan 2024

    Nothing published for this version

  45. 1.5.3-nightly.dca6a7a13 Feb 2024pre-release

    Nothing published for this version

  46. 1.5.3-nightly.d2858ee13 Feb 2024pre-release

    Nothing published for this version

  47. 1.5.3-nightly.6cbf1c71 Feb 2024pre-release

    Nothing published for this version

  48. 1.5.3-nightly.69f903121 Feb 2024pre-release

    Nothing published for this version

  49. 1.5.3-nightly.4fa841c6 Mar 2024pre-release

    Nothing published for this version

  50. 1.5.3-nightly.24fcf1924 Jan 2024pre-release

    Nothing published for this version

  51. 1.5.215 Jan 2024

    Nothing published for this version

  52. 1.5.2-nightly.91c773019 Jan 2024pre-release

    Nothing published for this version

  53. 1.5.110 Jan 2024

    Nothing published for this version

  54. 1.5.08 Jan 2024

    Nothing published for this version

  55. 1.4.1-nightly.efc084c21 Dec 2023pre-release

    Nothing published for this version

  56. 1.4.1-nightly.e08714614 Dec 2023pre-release

    Nothing published for this version

  57. 1.4.1-nightly.d869a333 Jan 2024pre-release

    Nothing published for this version

  58. 1.4.1-nightly.570d68013 Dec 2023pre-release

    Nothing published for this version

  59. 1.4.1-nightly.22dd4e123 Dec 2023pre-release

    Nothing published for this version