Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Sep 5, 2025

This PR contains the following updates:

Package Type Update Change OpenSSF
@biomejs/biome (source) devDependencies patch 2.2.2 -> 2.2.3 OpenSSF Scorecard

Release Notes

biomejs/biome (@​biomejs/biome)

v2.2.3

Compare Source

Patch Changes
  • #​7353 4d2b719 Thanks @​JeetuSuthar! - Fixed #​7340: The linter now allows the navigation property for view-transition in CSS.

    Previously, the linter incorrectly flagged navigation: auto as an unknown property. This fix adds navigation to the list of known CSS properties, following the CSS View Transitions spec.

  • #​7275 560de1b Thanks @​arendjr! - Fixed #​7268: Files that are explicitly passed as CLI arguments are now correctly ignored if they reside in an ignored folder.

  • #​7358 963a246 Thanks @​ematipico! - Fixed #​7085, now the rule noDescendingSpecificity correctly calculates the specificity of selectors when they are included inside a media query.

  • #​7387 923674d Thanks @​qraqras! - Fixed #​7381, now the useOptionalChain rule recognizes optional chaining using Yoda expressions (e.g., undefined !== foo && foo.bar).

  • #​7316 f9636d5 Thanks @​Conaclos! - Fixed #​7289. The rule useImportType now inlines import type into import { type } when the style option is set to inlineType.

    Example:

    import type { T } from "mod";
    // becomes
    import { type T } from "mod";
  • #​7350 bb4d407 Thanks @​siketyan! - Fixed #​7261: two characters (KATAKANA MIDDLE DOT, U+30FB) and (HALFWIDTH KATAKANA MIDDLE DOT, U+FF65) are no longer considered as valid characters in identifiers. Property keys containing these character(s) are now preserved as string literals.

  • #​7377 811f47b Thanks @​ematipico! - Fixed a bug where the Biome Language Server didn't correctly compute the diagnostics of a monorepo setting, caused by an incorrect handling of the project status.

  • #​7245 fad34b9 Thanks @​kedevked! - Added the new lint rule useConsistentArrowReturn.

    This rule enforces a consistent return style for arrow functions.

Invalid
const f = () => {
  return 1;
};

This rule is a port of ESLint's arrow-body-style rule.

  • #​7370 e8032dd Thanks @​fireairforce! - Support dynamic import defer and import source. The syntax looks like:

    import.source("foo");
    import.source("x", { with: { attr: "val" } });
    import.defer("foo");
    import.defer("x", { with: { attr: "val" } });
  • #​7369 b1f8cbd Thanks @​siketyan! - Range suppressions are now supported for Grit plugins.

    For JavaScript, you can suppress a plugin as follows:

    // biome-ignore-start lint/plugin/preferObjectSpread: reason
    Object.assign({ foo: "bar" }, baz);
    // biome-ignore-end lint/plugin/preferObjectSpread: reason

    For CSS, you can suppress a plugin as follows:

    body {
      /* biome-ignore-start lint/plugin/useLowercaseColors: reason */
      color: #fff;
      /* biome-ignore-end lint/plugin/useLowercaseColors: reason */
    }
  • #​7384 099507e Thanks @​ematipico! - Reduced the severity of certain diagnostics emitted when Biome deserializes the configuration files.
    Now these diagnostics are emitted as Information severity, which means that they won't interfere when running commands with --error-on-warnings

  • #​7302 2af2380 Thanks @​unvalley! - Fixed #​7301: useReadonlyClassProperties now correctly skips JavaScript files.

  • #​7288 94d85f8 Thanks @​ThiefMaster! - Fixed #​7286. Files are now formatted with JSX behavior when javascript.parser.jsxEverywhere is explicitly set.

    Previously, this flag was only used for parsing, but not for formatting, which resulted in incorrect formatting of conditional expressions when JSX syntax is used in .js files.

  • #​7311 62154b9 Thanks @​qraqras! - Added the new nursery rule noUselessCatchBinding. This rule disallows unnecessary catch bindings.

    try {
        // Do something
    - } catch (unused) {}
    + } catch {}
  • #​7349 45c1dfe Thanks @​ematipico! - Fixed #​4298. Biome now correctly formats CSS declarations when it contains one single value:

    .bar {
    -  --123456789012345678901234567890: var(--1234567890123456789012345678901234567);
    +  --123456789012345678901234567890: var(
    +    --1234567890123456789012345678901234567
    +  );
    }
  • #​7295 7638e84 Thanks @​ematipico! - Fixed #​7130. Removed the emission of a false-positive diagnostic. Biome no longer emits the following diagnostic:

    lib/main.ts:1:5 suppressions/unused ━━━━━━━━━━━━━━━━━━━━━━━━━
    
      ⚠ Suppression comment has no effect because the tool is not enabled.
    
      > 1 │ /** biome-ignore-all assist/source/organizeImports: For the lib root file, we don't want to organize exports */
          │     ^^^^^^^^^^^^^^^^
    
    
  • #​7377 811f47b Thanks @​ematipico! - Fixed #​7371 where the Biome Language Server didn't correctly recompute the diagnostics when updating a nested configuration file.

  • #​7348 ac27fc5 Thanks @​ematipico! - Fixed #​7079. Now the rule useSemanticElements doesn't trigger components and custom elements.

  • #​7389 ab06a7e Thanks @​Conaclos! - Fixed #​7344. useNamingConvention no longer reports interfaces defined in global declarations.

    Interfaces declared in global declarations augment existing interfaces.
    Thus, they must be ignored.

    In the following example, useNamingConvention reported HTMLElement.
    It is now ignored.

    export {};
    declare global {
      interface HTMLElement {
        foo(): void;
      }
    }
  • #​7315 4a2bd2f Thanks @​vladimir-ivanov! - Fixed #​7310: useReadonlyClassProperties correctly handles nested assignments, avoiding false positives when a class property is assigned within another assignment expression.

    Example of code that previously triggered a false positive but is now correctly ignored:

    class test {
      private thing: number = 0; // incorrectly flagged
    
      public incrementThing(): void {
        const temp = { x: 0 };
        temp.x = this.thing++;
      }
    }

Configuration

📅 Schedule: Branch creation - At 12:00 AM through 04:59 AM and 10:00 PM through 11:59 PM, Monday through Friday ( * 0-4,22-23 * * 1-5 ), Only on Sunday and Saturday ( * * * * 0,6 ) (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
@renovate renovate bot added the dependencies Dependency updates label Sep 5, 2025
@renovate renovate bot enabled auto-merge (squash) September 5, 2025 22:10
@github-actions github-actions bot added qa:running QA workflow is currently running status:approved Pull request has been approved labels Sep 5, 2025
@github-actions
Copy link

github-actions bot commented Sep 5, 2025

📦 Packages

Package NPM Docker
SDK Cli @settlemint/sdk-cli@2.6.2-pr26c15ce9
SDK The Graph @settlemint/sdk-thegraph@2.6.2-pr26c15ce9
SDK Portal @settlemint/sdk-portal@2.6.2-pr26c15ce9
SDK Hasura @settlemint/sdk-hasura@2.6.2-pr26c15ce9
SDK JS @settlemint/sdk-js@2.6.2-pr26c15ce9
SDK Utils @settlemint/sdk-utils@2.6.2-pr26c15ce9
SDK Next @settlemint/sdk-next@2.6.2-pr26c15ce9
SDK Minio @settlemint/sdk-minio@2.6.2-pr26c15ce9
SDK IPFS @settlemint/sdk-ipfs@2.6.2-pr26c15ce9
SDK Blockscout @settlemint/sdk-blockscout@2.6.2-pr26c15ce9
SDK MCP @settlemint/sdk-mcp@2.6.2-pr26c15ce9
SDK Viem @settlemint/sdk-viem@2.6.2-pr26c15ce9
SDK EAS @settlemint/sdk-eas@2.6.2-pr26c15ce9

@github-actions github-actions bot added qa:success QA workflow passed successfully status:ready-for-review Pull request is ready for review status:mergeable Pull request is approved, tests pass, and ready to merge and removed qa:running QA workflow is currently running status:ready-for-review Pull request is ready for review status:approved Pull request has been approved labels Sep 5, 2025
@renovate renovate bot merged commit d208597 into main Sep 5, 2025
14 checks passed
@renovate renovate bot deleted the renovate/biomejs-biome-2.x branch September 5, 2025 22:12
@github-actions github-actions bot added status:merged Pull request has been merged and removed status:mergeable Pull request is approved, tests pass, and ready to merge labels Sep 5, 2025
robbeverhelst pushed a commit that referenced this pull request Sep 18, 2025
This PR contains the following updates:

| Package | Type | Update | Change | OpenSSF |
|---|---|---|---|---|
| [@biomejs/biome](https://biomejs.dev)
([source](https://redirect.github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome))
| devDependencies | patch | [`2.2.2` ->
`2.2.3`](https://renovatebot.com/diffs/npm/@biomejs%2fbiome/2.2.2/2.2.3)
| [![OpenSSF
Scorecard](https://api.securityscorecards.dev/projects/github.com/biomejs/biome/badge)](https://securityscorecards.dev/viewer/?uri=github.com/biomejs/biome)
|

---

<details>
<summary>biomejs/biome (@&#8203;biomejs/biome)</summary>

[`v2.2.3`](https://redirect.github.com/biomejs/biome/blob/HEAD/packages/@&#8203;biomejs/biome/CHANGELOG.md#223)

[Compare
Source](https://redirect.github.com/biomejs/biome/compare/@biomejs/biome@2.2.2...@biomejs/biome@2.2.3)

- [#&#8203;7353](https://redirect.github.com/biomejs/biome/pull/7353)
[`4d2b719`](https://redirect.github.com/biomejs/biome/commit/4d2b7190f855a88bdae467a2efc00b81721bee62)
Thanks [@&#8203;JeetuSuthar](https://redirect.github.com/JeetuSuthar)! -
Fixed
[#&#8203;7340](https://redirect.github.com/biomejs/biome/issues/7340):
The linter now allows the `navigation` property for view-transition in
CSS.

Previously, the linter incorrectly flagged `navigation: auto` as an
unknown property. This fix adds `navigation` to the list of known CSS
properties, following the [CSS View Transitions
spec](https://www.w3.org/TR/css-view-transitions-2/#view-transition-navigation-descriptor).

- [#&#8203;7275](https://redirect.github.com/biomejs/biome/pull/7275)
[`560de1b`](https://redirect.github.com/biomejs/biome/commit/560de1bf3f22f4a8a5cdc224256a34dbb9d78481)
Thanks [@&#8203;arendjr](https://redirect.github.com/arendjr)! - Fixed
[#&#8203;7268](https://redirect.github.com/biomejs/biome/issues/7268):
Files that are explicitly passed as CLI arguments are now correctly
ignored if they reside in an ignored folder.

- [#&#8203;7358](https://redirect.github.com/biomejs/biome/pull/7358)
[`963a246`](https://redirect.github.com/biomejs/biome/commit/963a24643cbf4d91cca81569b33a8b7e21b4dd0b)
Thanks [@&#8203;ematipico](https://redirect.github.com/ematipico)! -
Fixed
[#&#8203;7085](https://redirect.github.com/biomejs/biome/issues/7085),
now the rule `noDescendingSpecificity` correctly calculates the
specificity of selectors when they are included inside a media query.

- [#&#8203;7387](https://redirect.github.com/biomejs/biome/pull/7387)
[`923674d`](https://redirect.github.com/biomejs/biome/commit/923674dbf8cc4c23ab569cd00ae0a0cf2a3ab791)
Thanks [@&#8203;qraqras](https://redirect.github.com/qraqras)! - Fixed
[#&#8203;7381](https://redirect.github.com/biomejs/biome/issues/7381),
now the
[`useOptionalChain`](https://biomejs.dev/ja/linter/rules/use-optional-chain/)
rule recognizes optional chaining using Yoda expressions (e.g.,
`undefined !== foo && foo.bar`).

- [#&#8203;7316](https://redirect.github.com/biomejs/biome/pull/7316)
[`f9636d5`](https://redirect.github.com/biomejs/biome/commit/f9636d5de1e8aef742d145a886f05a4cd79eca31)
Thanks [@&#8203;Conaclos](https://redirect.github.com/Conaclos)! - Fixed
[#&#8203;7289](https://redirect.github.com/biomejs/biome/issues/7289).
The rule
[`useImportType`](https://biomejs.dev/linter/rules/use-import-type/) now
inlines `import type` into `import { type }` when the `style` option is
set to `inlineType`.

  Example:

  ```ts
  import type { T } from "mod";
  // becomes
  import { type T } from "mod";
  ```

- [#&#8203;7350](https://redirect.github.com/biomejs/biome/pull/7350)
[`bb4d407`](https://redirect.github.com/biomejs/biome/commit/bb4d407747dd29df78776f143ad63657f869be11)
Thanks [@&#8203;siketyan](https://redirect.github.com/siketyan)! - Fixed
[#&#8203;7261](https://redirect.github.com/biomejs/biome/issues/7261):
two characters `・` (KATAKANA MIDDLE DOT, U+30FB) and `・` (HALFWIDTH
KATAKANA MIDDLE DOT, U+FF65) are no longer considered as valid
characters in identifiers. Property keys containing these character(s)
are now preserved as string literals.

- [#&#8203;7377](https://redirect.github.com/biomejs/biome/pull/7377)
[`811f47b`](https://redirect.github.com/biomejs/biome/commit/811f47b35163e70dce106f62d0aea4ef9e6b91bb)
Thanks [@&#8203;ematipico](https://redirect.github.com/ematipico)! -
Fixed a bug where the Biome Language Server didn't correctly compute the
diagnostics of a monorepo setting, caused by an incorrect handling of
the project status.

- [#&#8203;7245](https://redirect.github.com/biomejs/biome/pull/7245)
[`fad34b9`](https://redirect.github.com/biomejs/biome/commit/fad34b9db9778fe964ff7dbc489de0bfad2d3ece)
Thanks [@&#8203;kedevked](https://redirect.github.com/kedevked)! - Added
the new lint rule `useConsistentArrowReturn`.

  This rule enforces a consistent return style for arrow functions.

```js
const f = () => {
  return 1;
};
```

This rule is a port of ESLint's
[arrow-body-style](https://eslint.org/docs/latest/rules/arrow-body-style)
rule.

- [#&#8203;7370](https://redirect.github.com/biomejs/biome/pull/7370)
[`e8032dd`](https://redirect.github.com/biomejs/biome/commit/e8032ddfdd734a1441335d82b49db478248e6992)
Thanks [@&#8203;fireairforce](https://redirect.github.com/fireairforce)!
- Support dynamic `import defer` and `import source`. The syntax looks
like:

  ```ts
  import.source("foo");
  import.source("x", { with: { attr: "val" } });
  import.defer("foo");
  import.defer("x", { with: { attr: "val" } });
  ```

- [#&#8203;7369](https://redirect.github.com/biomejs/biome/pull/7369)
[`b1f8cbd`](https://redirect.github.com/biomejs/biome/commit/b1f8cbd88619deb269b2028eb0578657987848c5)
Thanks [@&#8203;siketyan](https://redirect.github.com/siketyan)! - Range
suppressions are now supported for Grit plugins.

  For JavaScript, you can suppress a plugin as follows:

  ```js
  // biome-ignore-start lint/plugin/preferObjectSpread: reason
  Object.assign({ foo: "bar" }, baz);
  // biome-ignore-end lint/plugin/preferObjectSpread: reason
  ```

  For CSS, you can suppress a plugin as follows:

  ```css
  body {
    /* biome-ignore-start lint/plugin/useLowercaseColors: reason */
    color: #fff;
    /* biome-ignore-end lint/plugin/useLowercaseColors: reason */
  }
  ```

- [#&#8203;7384](https://redirect.github.com/biomejs/biome/pull/7384)
[`099507e`](https://redirect.github.com/biomejs/biome/commit/099507eb07f14f7d383f848fb6c659b5a6ccfd92)
Thanks [@&#8203;ematipico](https://redirect.github.com/ematipico)! -
Reduced the severity of certain diagnostics emitted when Biome
deserializes the configuration files.
Now these diagnostics are emitted as `Information` severity, which means
that they won't interfere when running commands with
`--error-on-warnings`

- [#&#8203;7302](https://redirect.github.com/biomejs/biome/pull/7302)
[`2af2380`](https://redirect.github.com/biomejs/biome/commit/2af2380b8210e74efea467139a8a4cb4747c8af4)
Thanks [@&#8203;unvalley](https://redirect.github.com/unvalley)! - Fixed
[#&#8203;7301](https://redirect.github.com/biomejs/biome/issues/7301):
[`useReadonlyClassProperties`](https://biomejs.dev/linter/rules/use-readonly-class-properties/)
now correctly skips JavaScript files.

- [#&#8203;7288](https://redirect.github.com/biomejs/biome/pull/7288)
[`94d85f8`](https://redirect.github.com/biomejs/biome/commit/94d85f8fe54305e8fa070490bb2f7c86a91c5e92)
Thanks [@&#8203;ThiefMaster](https://redirect.github.com/ThiefMaster)! -
Fixed
[#&#8203;7286](https://redirect.github.com/biomejs/biome/issues/7286).
Files are now formatted with JSX behavior when
`javascript.parser.jsxEverywhere` is explicitly set.

Previously, this flag was only used for parsing, but not for formatting,
which resulted in incorrect formatting of conditional expressions when
JSX syntax is used in `.js` files.

- [#&#8203;7311](https://redirect.github.com/biomejs/biome/pull/7311)
[`62154b9`](https://redirect.github.com/biomejs/biome/commit/62154b93e0aa1609afb3d2b1f5468b63ab79374a)
Thanks [@&#8203;qraqras](https://redirect.github.com/qraqras)! - Added
the new nursery rule `noUselessCatchBinding`. This rule disallows
unnecessary catch bindings.

  ```diff
  try {
      // Do something
  - } catch (unused) {}
  + } catch {}
  ```

- [#&#8203;7349](https://redirect.github.com/biomejs/biome/pull/7349)
[`45c1dfe`](https://redirect.github.com/biomejs/biome/commit/45c1dfe32879f4bbb75cbf9b3ee86e304a02aaa1)
Thanks [@&#8203;ematipico](https://redirect.github.com/ematipico)! -
Fixed
[#&#8203;4298](https://redirect.github.com/biomejs/biome/issues/4298).
Biome now correctly formats CSS declarations when it contains one single
value:

  ```diff
  .bar {
- --123456789012345678901234567890:
var(--1234567890123456789012345678901234567);
  +  --123456789012345678901234567890: var(
  +    --1234567890123456789012345678901234567
  +  );
  }
  ```

- [#&#8203;7295](https://redirect.github.com/biomejs/biome/pull/7295)
[`7638e84`](https://redirect.github.com/biomejs/biome/commit/7638e84b026c8b008fa1efdd795b8c0bff0733ab)
Thanks [@&#8203;ematipico](https://redirect.github.com/ematipico)! -
Fixed
[#&#8203;7130](https://redirect.github.com/biomejs/biome/issues/7130).
Removed the emission of a false-positive diagnostic. Biome no longer
emits the following diagnostic:

  ```
  lib/main.ts:1:5 suppressions/unused ━━━━━━━━━━━━━━━━━━━━━━━━━

    ⚠ Suppression comment has no effect because the tool is not enabled.

> 1 │ /** biome-ignore-all assist/source/organizeImports: For the lib
root file, we don't want to organize exports */
        │     ^^^^^^^^^^^^^^^^

  ```

- [#&#8203;7377](https://redirect.github.com/biomejs/biome/pull/7377)
[`811f47b`](https://redirect.github.com/biomejs/biome/commit/811f47b35163e70dce106f62d0aea4ef9e6b91bb)
Thanks [@&#8203;ematipico](https://redirect.github.com/ematipico)! -
Fixed
[#&#8203;7371](https://redirect.github.com/biomejs/biome/issues/7371)
where the Biome Language Server didn't correctly recompute the
diagnostics when updating a nested configuration file.

- [#&#8203;7348](https://redirect.github.com/biomejs/biome/pull/7348)
[`ac27fc5`](https://redirect.github.com/biomejs/biome/commit/ac27fc56dbb14c8f8507ffc4b7d6bf27aa3780db)
Thanks [@&#8203;ematipico](https://redirect.github.com/ematipico)! -
Fixed
[#&#8203;7079](https://redirect.github.com/biomejs/biome/issues/7079).
Now the rule
[`useSemanticElements`](https://biomejs.dev/linter/rules/use-semantic-elements/)
doesn't trigger components and custom elements.

- [#&#8203;7389](https://redirect.github.com/biomejs/biome/pull/7389)
[`ab06a7e`](https://redirect.github.com/biomejs/biome/commit/ab06a7ea9523ecb39ebf74a14600a02332e9d4e1)
Thanks [@&#8203;Conaclos](https://redirect.github.com/Conaclos)! - Fixed
[#&#8203;7344](https://redirect.github.com/biomejs/biome/issues/7344).
[`useNamingConvention`](https://biomejs.dev/linter/rules/use-naming-convention/)
no longer reports interfaces defined in global declarations.

Interfaces declared in global declarations augment existing interfaces.
  Thus, they must be ignored.

In the following example, `useNamingConvention` reported `HTMLElement`.
  It is now ignored.

  ```ts
  export {};
  declare global {
    interface HTMLElement {
      foo(): void;
    }
  }
  ```

- [#&#8203;7315](https://redirect.github.com/biomejs/biome/pull/7315)
[`4a2bd2f`](https://redirect.github.com/biomejs/biome/commit/4a2bd2f38d1f449e55f88be351fcc1cf1d561e69)
Thanks
[@&#8203;vladimir-ivanov](https://redirect.github.com/vladimir-ivanov)!
- Fixed
[#&#8203;7310](https://redirect.github.com/biomejs/biome/issues/7310):
[`useReadonlyClassProperties`](https://biomejs.dev/linter/rules/use-readonly-class-properties/)
correctly handles nested assignments, avoiding false positives when a
class property is assigned within another assignment expression.

Example of code that previously triggered a false positive but is now
correctly ignored:

  ```ts
  class test {
    private thing: number = 0; // incorrectly flagged

    public incrementThing(): void {
      const temp = { x: 0 };
      temp.x = this.thing++;
    }
  }
  ```

</details>

---

📅 **Schedule**: Branch creation - At 12:00 AM through 04:59 AM and 10:00
PM through 11:59 PM, Monday through Friday ( * 0-4,22-23 * * 1-5 ), Only
on Sunday and Saturday ( * * * * 0,6 ) (UTC), Automerge - At any time
(no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/settlemint/sdk).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS45MS4xIiwidXBkYXRlZEluVmVyIjoiNDEuOTEuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIl19-->

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Dependency updates qa:success QA workflow passed successfully status:merged Pull request has been merged

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant