Commit a1a302b
authored
chore(deps): update dependency @biomejs/biome to v2.3.3 (#287)
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.3.2` ->
`2.3.3`](https://renovatebot.com/diffs/npm/@biomejs%2fbiome/2.3.2/2.3.3)
| [](https://securityscorecards.dev/viewer/?uri=github.com/biomejs/biome)
|
---
> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.
---
### Release Notes
<details>
<summary>biomejs/biome (@​biomejs/biome)</summary>
###
[`v2.3.3`](https://redirect.github.com/biomejs/biome/blob/HEAD/packages/@​biomejs/biome/CHANGELOG.md#233)
[Compare
Source](https://redirect.github.com/biomejs/biome/compare/@biomejs/biome@2.3.2...@biomejs/biome@2.3.3)
##### Patch Changes
- [#​7907](https://redirect.github.com/biomejs/biome/pull/7907)
[`57bd662`](https://redirect.github.com/biomejs/biome/commit/57bd662ad5155c9a1f13085cc5422f56a44d282e)
Thanks [@​ematipico](https://redirect.github.com/ematipico)! -
Fixed
[#​7839](https://redirect.github.com/biomejs/biome/issues/7839).
Now the Biome parser correctly parses the Astro frontmatter even when a
triple fence is inside quotes.
- [#​7934](https://redirect.github.com/biomejs/biome/pull/7934)
[`a35c496`](https://redirect.github.com/biomejs/biome/commit/a35c4962e2241e127444284049012c60aec71a41)
Thanks
[@​alissonlauffer](https://redirect.github.com/alissonlauffer)! -
Fixed
[#​7919](https://redirect.github.com/biomejs/biome/issues/7919):
The HTML parser now correctly handles Unicode BOM (Byte Order Mark)
characters at the beginning of HTML files, ensuring proper parsing and
tokenization.
- [#​7869](https://redirect.github.com/biomejs/biome/pull/7869)
[`c80361d`](https://redirect.github.com/biomejs/biome/commit/c80361d9abaf810bdb2e9a81cc1e4ab814d385b0)
Thanks [@​matanshavit](https://redirect.github.com/matanshavit)! -
Fixed
[#​7864](https://redirect.github.com/biomejs/biome/issues/7864):
Biome now preserves component tag name casing in Svelte, Astro, and Vue
files.
- [#​7926](https://redirect.github.com/biomejs/biome/pull/7926)
[`69cecec`](https://redirect.github.com/biomejs/biome/commit/69cececbbaccbe5c44c71afee8e242437783cabc)
Thanks [@​matanshavit](https://redirect.github.com/matanshavit)! -
Added the rule
[`noParametersOnlyUsedInRecursion`](https://biomejs.dev/linter/rules/no-parameters-only-used-in-recursion/).
This rule detects function parameters that are exclusively used in
recursive calls and can be removed to simplify the function signature
since they are effectively unused.
```js
function factorial(n, acc) {
if (n === 0) return 1;
return factorial(n - 1, acc); // acc is only used here
}
```
Fixes
[#​6484](https://redirect.github.com/biomejs/biome/issues/6484).
- [#​7774](https://redirect.github.com/biomejs/biome/pull/7774)
[`2509b91`](https://redirect.github.com/biomejs/biome/commit/2509b91cde53b8f747d397fcec5e37eb47bd524d)
Thanks [@​dibashthapa](https://redirect.github.com/dibashthapa)! -
Fixed
[#​7657](https://redirect.github.com/biomejs/biome/issues/7657):
Added the new rule
[`no-unknown-property`](https://biomejs.dev/linter/rules/no-unknown-property/)
from ESLint
- [#​7918](https://redirect.github.com/biomejs/biome/pull/7918)
[`7165d06`](https://redirect.github.com/biomejs/biome/commit/7165d067bb0162ffcc354ea3ced63c67d71bd185)
Thanks [@​dyc3](https://redirect.github.com/dyc3)! - Fixed
[#​7913](https://redirect.github.com/biomejs/biome/issues/7913):
The CSS parser, with `tailwindDirectives` enabled, will now correctly
handle `@slot`.
- [#​7959](https://redirect.github.com/biomejs/biome/pull/7959)
[`ffae203`](https://redirect.github.com/biomejs/biome/commit/ffae2031a0104b6b9ca77cdedaf85202694f12f9)
Thanks [@​siketyan](https://redirect.github.com/siketyan)! - Fixed
the Biome Language Server so it no longer returns an internal error when
the formatter is disabled in the configuration.
</details>
---
### 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 becomes conflicted, 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/settlemint-action).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xNTkuNCIsInVwZGF0ZWRJblZlciI6IjQxLjE1OS40IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=-->
<!-- This is an auto-generated description by cubic. -->
---
## Summary by cubic
Update @biomejs/biome to v2.3.3 to pick up parser fixes and new lint
rules. Tooling-only change; no app code impact.
- **Dependencies**
- Bumped @biomejs/biome from 2.3.2 to 2.3.3.
- Fixes parsing for Astro frontmatter, HTML BOM, and Tailwind @slot;
preserves component tag casing.
- Adds lint rules: no-unknown-property and
noParametersOnlyUsedInRecursion.
<sup>Written for commit 8387118.
Summary will update automatically on new commits.</sup>
<!-- End of auto-generated description by cubic. -->
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>1 parent 218b8cf commit a1a302b
1 file changed
Lines changed: 35 additions & 35 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
0 commit comments