Skip to content

Commit 49c0cd6

Browse files
chore(deps): update dependency @biomejs/biome to v2.4.4 (#482)
This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---| | [@biomejs/biome](https://biomejs.dev) ([source](https://redirect.github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome)) | [`2.4.2` → `2.4.4`](https://renovatebot.com/diffs/npm/@biomejs%2fbiome/2.4.2/2.4.4) | ![age](https://developer.mend.io/api/mc/badges/age/npm/@biomejs%2fbiome/2.4.4?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@biomejs%2fbiome/2.4.2/2.4.4?slim=true) | --- ### Release Notes <details> <summary>biomejs/biome (@&#8203;biomejs/biome)</summary> ### [`v2.4.4`](https://redirect.github.com/biomejs/biome/blob/HEAD/packages/@&#8203;biomejs/biome/CHANGELOG.md#244) [Compare Source](https://redirect.github.com/biomejs/biome/compare/@biomejs/biome@2.4.3...@biomejs/biome@2.4.4) ##### Patch Changes - [#&#8203;9150](https://redirect.github.com/biomejs/biome/pull/9150) [`6946835`](https://redirect.github.com/biomejs/biome/commit/6946835b2c12078b326da5b51e4e4c62fbba525c) Thanks [@&#8203;dyc3](https://redirect.github.com/dyc3)! - Fixed [#&#8203;9138](https://redirect.github.com/biomejs/biome/issues/9138): Astro files containing `---` in HTML content (e.g., `<h1>---Hi</h1>`) are now parsed correctly, both when a frontmatter block is present and when there is no frontmatter at all. - [#&#8203;9150](https://redirect.github.com/biomejs/biome/pull/9150) [`aa6f837`](https://redirect.github.com/biomejs/biome/commit/aa6f8370ae7e4694901d04914689611c9f42ad1a) Thanks [@&#8203;dyc3](https://redirect.github.com/dyc3)! - Fixed [#&#8203;9138](https://redirect.github.com/biomejs/biome/issues/9138): The HTML parser incorrectly failing to parse bracket characters (`[` and `]`) in text content (e.g. `<div>[Foo]</div>`). - [#&#8203;9151](https://redirect.github.com/biomejs/biome/pull/9151) [`c0d4b0c`](https://redirect.github.com/biomejs/biome/commit/c0d4b0c06dac60ff2a7f52de38adad3ca37dffc4) Thanks [@&#8203;dyc3](https://redirect.github.com/dyc3)! - Fixed parsing of Svelte directive keywords (`use`, `style`) when used as plain text content in HTML/Svelte files. Previously, `<p>use JavaScript</p>` or `<p>style it</p>` would incorrectly produce a bogus element instead of proper text content. - [#&#8203;9162](https://redirect.github.com/biomejs/biome/pull/9162) [`7f1e060`](https://redirect.github.com/biomejs/biome/commit/7f1e0608099cb1245a29e80eee671e181e9e470b) Thanks [@&#8203;dyc3](https://redirect.github.com/dyc3)! - Fixed [#&#8203;9161](https://redirect.github.com/biomejs/biome/issues/9161): The Vue parser now correctly handles colon attributes like `xlink:href` and `xmlns:xlink` by parsing them as single attributes instead of splitting them into separate tokens. - [#&#8203;9164](https://redirect.github.com/biomejs/biome/pull/9164) [`458211b`](https://redirect.github.com/biomejs/biome/commit/458211bd5c9167c474f1411f48167999fb9f4b9f) Thanks [@&#8203;dyc3](https://redirect.github.com/dyc3)! - Fixed [#&#8203;9161](https://redirect.github.com/biomejs/biome/issues/9161): The `noAssignInExpressions` rule no longer flags assignments in Vue v-on directives (e.g., `@click="counter += 1"`). Assignments in event handlers are idiomatic Vue patterns and are now skipped by the rule. ### [`v2.4.3`](https://redirect.github.com/biomejs/biome/blob/HEAD/packages/@&#8203;biomejs/biome/CHANGELOG.md#243) [Compare Source](https://redirect.github.com/biomejs/biome/compare/@biomejs/biome@2.4.2...@biomejs/biome@2.4.3) ##### Patch Changes - [#&#8203;9120](https://redirect.github.com/biomejs/biome/pull/9120) [`aa40fc2`](https://redirect.github.com/biomejs/biome/commit/aa40fc237a1379188edcbbbf4dc37fd7de7c58f5) Thanks [@&#8203;ematipico](https://redirect.github.com/ematipico)! - Fixed [#&#8203;9109](https://redirect.github.com/biomejs/biome/issues/9109), where the GitHub reporter wasn't correctly enabled when `biome ci` runs on GitHub Actions. - [#&#8203;9128](https://redirect.github.com/biomejs/biome/pull/9128) [`8ca3f7f`](https://redirect.github.com/biomejs/biome/commit/8ca3f7fcd1b0041fd7ade381032dfbb0f9693a41) Thanks [@&#8203;dyc3](https://redirect.github.com/dyc3)! - Fixed [#&#8203;9107](https://redirect.github.com/biomejs/biome/issues/9107): The HTML parser can now correctly parse Astro directives (client/set/class/is/server), which fixes the formatting for Astro directives. - [#&#8203;9124](https://redirect.github.com/biomejs/biome/pull/9124) [`f5b0e8d`](https://redirect.github.com/biomejs/biome/commit/f5b0e8d0761c08d79d6cb1ad8df33da8605f20a9) Thanks [@&#8203;ematipico](https://redirect.github.com/ematipico)! - Fixed [#&#8203;8882](https://redirect.github.com/biomejs/biome/issues/8882) and [#&#8203;9108](https://redirect.github.com/biomejs/biome/issues/9108): The Astro frontmatter lexer now correctly identifies the closing `---` fence when the frontmatter contains multi-line block comments with quote characters, strings that mix quote types (e.g. `"it's"`), or escaped quote characters (e.g. `"\"`). - [#&#8203;9142](https://redirect.github.com/biomejs/biome/pull/9142) [`3ca066b`](https://redirect.github.com/biomejs/biome/commit/3ca066bbb73cfbe1a1bcb1c9fc76f4a79966efc0) Thanks [@&#8203;THernandez03](https://redirect.github.com/THernandez03)! - Fixed [#&#8203;9141](https://redirect.github.com/biomejs/biome/issues/9141): The `noUnknownAttribute` rule no longer reports `closedby` as an unknown attribute on `<dialog>` elements. - [#&#8203;9126](https://redirect.github.com/biomejs/biome/pull/9126) [`792013e`](https://redirect.github.com/biomejs/biome/commit/792013eb767188608d0b6dd4dfa24413832dcb93) Thanks [@&#8203;ematipico](https://redirect.github.com/ematipico)! - Added missing Mocha globals to the `Test` domain: `context`, `run`, `setup`, `specify`, `suite`, `suiteSetup`, `suiteTeardown`, `teardown`, `xcontext`, `xdescribe`, `xit`, and `xspecify`. These are injected by Mocha's BDD and TDD interfaces and were previously flagged as undeclared variables in projects using Mocha. - [#&#8203;8855](https://redirect.github.com/biomejs/biome/pull/8855) [`6918c9e`](https://redirect.github.com/biomejs/biome/commit/6918c9e2bf4da19b3ac9f772272bc1a28f454fc1) Thanks [@&#8203;ruidosujeira](https://redirect.github.com/ruidosujeira)! - Fixed [#&#8203;8840](https://redirect.github.com/biomejs/biome/issues/8840). Now the Biome CSS parser correctly parses `not + scroll-state` inside `@container` queries. - [#&#8203;9111](https://redirect.github.com/biomejs/biome/pull/9111) [`4fb55cf`](https://redirect.github.com/biomejs/biome/commit/4fb55cf998a3d41c4451679fe359ebec47692f5d) Thanks [@&#8203;Jayllyz](https://redirect.github.com/Jayllyz)! - Slightly improved performance of [`noIrregularWhitespace`](https://biomejs.dev/linter/rules/no-irregular-whitespace/) by adding early return optimization and simplifying character detection logic. - [#&#8203;8975](https://redirect.github.com/biomejs/biome/pull/8975) [`086a0c5`](https://redirect.github.com/biomejs/biome/commit/086a0c5c35a147df13197642bead23aa7df18a84) Thanks [@&#8203;FrankFMY](https://redirect.github.com/FrankFMY)! - Fixed [#&#8203;8478](https://redirect.github.com/biomejs/biome/issues/8478): [`useDestructuring`](https://biomejs.dev/linter/rules/use-destructuring/) no longer suggests destructuring when the variable has a type annotation, like `const foo: string = object.foo`. </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **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/proto-graphql/proto-graphql-js). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4yNS4xMSIsInVwZGF0ZWRJblZlciI6IjQzLjM2LjIiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbImRldkRlcGVuZGVuY2llcyJdfQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 57759ee commit 49c0cd6

File tree

2 files changed

+38
-38
lines changed

2 files changed

+38
-38
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"gen:extensions": "buf generate --template buf.gen.yaml --path proto-graphql/proto/graphql"
1717
},
1818
"devDependencies": {
19-
"@biomejs/biome": "2.4.2",
19+
"@biomejs/biome": "2.4.4",
2020
"@bufbuild/buf": "1.66.0",
2121
"@bufbuild/protoc-gen-es": "catalog:",
2222
"@changesets/changelog-github": "0.5.2",

pnpm-lock.yaml

Lines changed: 37 additions & 37 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)