Skip to content

build(deps): bump @biomejs/biome from 2.5.2 to 2.5.7 in the npm-biome-dependencies group across 1 directory - #1833

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/npm-biome-dependencies-25e759e765
Closed

build(deps): bump @biomejs/biome from 2.5.2 to 2.5.7 in the npm-biome-dependencies group across 1 directory#1833
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/npm-biome-dependencies-25e759e765

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 10, 2026

Copy link
Copy Markdown
Contributor

Bumps the npm-biome-dependencies group with 1 update in the / directory: @biomejs/biome.

Updates @biomejs/biome from 2.5.2 to 2.5.7

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.5.7

2.5.7

Patch Changes

  • #10822 c171b3b Thanks @​pkallos! - Added the option ignoreIfStatements to useNullishCoalescing. Biome now flags if statements that only assign to a nullish variable (such as if (!a) { a = b }) and can rewrite them to ??=. When enabled, Biome ignores those if statements.

  • #11136 e63354c Thanks @​AkashNaickar! - Added a new nursery rule noExtendNative, which reports extending the prototype of a built-in object.

  • #10094 e007143 Thanks @​THEjacob1000! - Added the nursery rule noTailwindArbitraryValue. Biome now reports Tailwind CSS arbitrary values such as w-[400px], including in HTML/JSX class attributes, configured utility functions, and tagged templates.

  • #11184 135f476 Thanks @​subotac! - Fixed #11176: noUnknownPseudoClass now recognizes Vue's :deep() pseudo-class inside .vue style blocks.

  • #8239 a519f9d Thanks @​cormacrelf! - Fixed #8233, where Biome CLI in stdin mode didn't work correctly when handling files in projects with nested configurations. For example, with the following structure, --stdin-file-path=subdirectory/... would not use the nested configuration in subdirectory/biome.json:

    ├── biome.json
    └── subdirectory
        ├── biome.json
        └── lib.js
    
    biome format --write --stdin-file-path=subdirectory/lib.js < subdirectory/lib.js

    Now, the nested configuration is correctly picked up and applied.

    In addition, Biome now shows a warning if --stdin-file-path is provided but that path is ignored and therefore not formatted or fixed.

  • #11138 8c2c6bd Thanks @​ematipico! - Fixed noUnnecessaryConditions: Biome now chooses the same function overload as TypeScript when an argument is a callback, so conditions that were previously missed are reported.

    The following code is now invalid, because a parameter typed () => void accepts an async callback and schedule therefore returns string:

    declare function schedule(handler: () => void): string;
    declare function schedule(handler: () => Promise<void>): string | undefined;
    schedule(async () => {}) ?? "fallback";

    The following code is also now invalid, because map(() => 42) returns 42:

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

2.5.7

Patch Changes

  • #10822 c171b3b Thanks @​pkallos! - Added the option ignoreIfStatements to useNullishCoalescing. Biome now flags if statements that only assign to a nullish variable (such as if (!a) { a = b }) and can rewrite them to ??=. When enabled, Biome ignores those if statements.

  • #11136 e63354c Thanks @​AkashNaickar! - Added a new nursery rule noExtendNative, which reports extending the prototype of a built-in object.

  • #10094 e007143 Thanks @​THEjacob1000! - Added the nursery rule noTailwindArbitraryValue. Biome now reports Tailwind CSS arbitrary values such as w-[400px], including in HTML/JSX class attributes, configured utility functions, and tagged templates.

  • #11184 135f476 Thanks @​subotac! - Fixed #11176: noUnknownPseudoClass now recognizes Vue's :deep() pseudo-class inside .vue style blocks.

  • #8239 a519f9d Thanks @​cormacrelf! - Fixed #8233, where Biome CLI in stdin mode didn't work correctly when handling files in projects with nested configurations. For example, with the following structure, --stdin-file-path=subdirectory/... would not use the nested configuration in subdirectory/biome.json:

    ├── biome.json
    └── subdirectory
        ├── biome.json
        └── lib.js
    
    biome format --write --stdin-file-path=subdirectory/lib.js < subdirectory/lib.js

    Now, the nested configuration is correctly picked up and applied.

    In addition, Biome now shows a warning if --stdin-file-path is provided but that path is ignored and therefore not formatted or fixed.

  • #11138 8c2c6bd Thanks @​ematipico! - Fixed noUnnecessaryConditions: Biome now chooses the same function overload as TypeScript when an argument is a callback, so conditions that were previously missed are reported.

    The following code is now invalid, because a parameter typed () => void accepts an async callback and schedule therefore returns string:

    declare function schedule(handler: () => void): string;
    declare function schedule(handler: () => Promise<void>): string | undefined;
    schedule(async () => {}) ?? "fallback";

    The following code is also now invalid, because map(() => 42) returns 42:

    type Mapper<T> = () => T;
    declare function map<T>(mapper: Mapper<T>): T;

... (truncated)

Commits

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Jul 10, 2026
@github-actions

Copy link
Copy Markdown

Hi, thank you for creating your PR, we will check it out very soon

@codecov

codecov Bot commented Jul 10, 2026

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 88.31%. Comparing base (0dd56c0) to head (b2ca50d).

Additional details and impacted files
@@            Coverage Diff             @@
##             main    #1833      +/-   ##
==========================================
+ Coverage   88.13%   88.31%   +0.17%     
==========================================
  Files          39       39              
  Lines        1121     1121              
  Branches      209      209              
==========================================
+ Hits          988      990       +2     
+ Misses        116      114       -2     
  Partials       17       17              

☔ View full report in Codecov by Harness.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@dependabot dependabot Bot changed the title build(deps): bump @biomejs/biome from 2.5.2 to 2.5.3 in the npm-biome-dependencies group build(deps): bump @biomejs/biome from 2.5.2 to 2.5.4 in the npm-biome-dependencies group across 1 directory Jul 17, 2026
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/npm-biome-dependencies-25e759e765 branch from 28182f8 to b0a22c0 Compare July 17, 2026 04:02
@dependabot dependabot Bot changed the title build(deps): bump @biomejs/biome from 2.5.2 to 2.5.4 in the npm-biome-dependencies group across 1 directory build(deps): bump @biomejs/biome from 2.5.2 to 2.5.5 in the npm-biome-dependencies group across 1 directory Jul 24, 2026
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/npm-biome-dependencies-25e759e765 branch 2 times, most recently from 8c2c194 to c2cfbd7 Compare July 31, 2026 04:02
@dependabot dependabot Bot changed the title build(deps): bump @biomejs/biome from 2.5.2 to 2.5.5 in the npm-biome-dependencies group across 1 directory build(deps): bump @biomejs/biome from 2.5.2 to 2.5.6 in the npm-biome-dependencies group across 1 directory Aug 1, 2026
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/npm-biome-dependencies-25e759e765 branch 2 times, most recently from 204ace7 to a2edc84 Compare August 7, 2026 04:03
Bumps the npm-biome-dependencies group with 1 update in the / directory: [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome).


Updates `@biomejs/biome` from 2.5.2 to 2.5.7
- [Release notes](https://github.com/biomejs/biome/releases)
- [Changelog](https://github.com/biomejs/biome/blob/main/packages/@biomejs/biome/CHANGELOG.md)
- [Commits](https://github.com/biomejs/biome/commits/@biomejs/biome@2.5.7/packages/@biomejs/biome)

---
updated-dependencies:
- dependency-name: "@biomejs/biome"
  dependency-version: 2.5.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-biome-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot changed the title build(deps): bump @biomejs/biome from 2.5.2 to 2.5.6 in the npm-biome-dependencies group across 1 directory build(deps): bump @biomejs/biome from 2.5.2 to 2.5.7 in the npm-biome-dependencies group across 1 directory Aug 7, 2026
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/npm-biome-dependencies-25e759e765 branch from a2edc84 to b2ca50d Compare August 7, 2026 14:37
@dependabot @github

dependabot Bot commented on behalf of github Aug 7, 2026

Copy link
Copy Markdown
Contributor Author

Looks like @biomejs/biome is no longer updatable, so this is no longer needed.

@dependabot dependabot Bot closed this Aug 7, 2026
@dependabot
dependabot Bot deleted the dependabot/npm_and_yarn/npm-biome-dependencies-25e759e765 branch August 7, 2026 15:55
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants