Commit 2408917
authored
chore(deps): update all non-major dependencies (#1178)
This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
| [biome](https://redirect.github.com/biomejs/biome) | patch | `2.3.8`
-> `2.3.9` |
| [tinygo](https://redirect.github.com/tinygo-org/tinygo) | minor |
`0.39.0` -> `0.40.0` |
| [uv](https://redirect.github.com/astral-sh/uv) | patch | `0.9.16` ->
`0.9.17` |
---
### Release Notes
<details>
<summary>biomejs/biome (biome)</summary>
###
[`v2.3.9`](https://redirect.github.com/biomejs/biome/releases/tag/%40biomejs/biome%402.3.9):
Biome CLI v2.3.9
#### 2.3.9
##### Patch Changes
- [#​8232](https://redirect.github.com/biomejs/biome/pull/8232)
[`84c9e08`](https://redirect.github.com/biomejs/biome/commit/84c9e08b1b736dcc6d163ab1fb48c581b2de458c)
Thanks [@​ruidosujeira](https://redirect.github.com/ruidosujeira)!
- Added the nursery rule
[`noScriptUrl`](https://biomejs.dev/linter/rules/no-script-url/).
This rule disallows the use of `javascript:` URLs, which are considered
a form of `eval` and can pose security risks such as XSS
vulnerabilities.
```jsx
<a href="javascript:alert('XSS')">Click me</a>
```
- [#​8341](https://redirect.github.com/biomejs/biome/pull/8341)
[`343dc4d`](https://redirect.github.com/biomejs/biome/commit/343dc4dfd48a048f0c833af318b6a10dfc4dab6d)
Thanks [@​arendjr](https://redirect.github.com/arendjr)! - Added
the nursery rule
[`useAwaitThenable`](https://biomejs.dev/linter/rules/use-await-thenable/),
which enforces that `await` is only used on Promise values.
##### Invalid
```js
await "value";
const createValue = () => "value";
await createValue();
```
##### Caution
This is a first iteration of the rule, and does not yet detect generic
["thenable"](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise#thenables)
values.
- [#​8034](https://redirect.github.com/biomejs/biome/pull/8034)
[`e7e0f6c`](https://redirect.github.com/biomejs/biome/commit/e7e0f6c14df92d83d08f86b1e57fc82b4df775b7)
Thanks [@​Netail](https://redirect.github.com/Netail)! - Added the
nursery rule
[`useRegexpExec`](https://biomejs.dev/linter/rules/use-regexp-exec/).
Enforce `RegExp#exec` over `String#match` if no global flag is provided.
- [#​8137](https://redirect.github.com/biomejs/biome/pull/8137)
[`d407efb`](https://redirect.github.com/biomejs/biome/commit/d407efb8c650b9288f545efedd4b7d3f9783c8d1)
Thanks [@​denbezrukov](https://redirect.github.com/denbezrukov)! -
Reduced the internal memory used by the Biome formatter.
- [#​8281](https://redirect.github.com/biomejs/biome/pull/8281)
[`30b046f`](https://redirect.github.com/biomejs/biome/commit/30b046faca464404aaeecfe1ed0e8a94b0e25990)
Thanks [@​tylersayshi](https://redirect.github.com/tylersayshi)! -
Added the rule
[`useRequiredScripts`](https://biomejs.dev/linter/rules/use-required-scripts/),
which enforces presence of configurable entries in the `scripts` section
of `package.json` files.
- [#​8290](https://redirect.github.com/biomejs/biome/pull/8290)
[`d74c8bd`](https://redirect.github.com/biomejs/biome/commit/d74c8bda655a17405809d24126ee09e9e200d51e)
Thanks [@​dyc3](https://redirect.github.com/dyc3)! - The HTML
formatter has been updated to match Prettier 3.7's behavior for handling
`<iframe>`'s `allow` attribute.
```diff
- <iframe allow="layout-animations 'none'; unoptimized-images 'none';
oversized-images 'none'; sync-script 'none'; sync-xhr 'none';
unsized-media 'none';"></iframe>
+ <iframe
+ allow="
+ layout-animations 'none';
+ unoptimized-images 'none';
+ oversized-images 'none';
+ sync-script 'none';
+ sync-xhr 'none';
+ unsized-media 'none';
+ "
+ ></iframe>
```
- [#​8302](https://redirect.github.com/biomejs/biome/pull/8302)
[`d1d5014`](https://redirect.github.com/biomejs/biome/commit/d1d50140f23c9c3ce4f48d9d2b97822234aad798)
Thanks [@​mlafeldt](https://redirect.github.com/mlafeldt)! - Fixed
[#​8109](https://redirect.github.com/biomejs/biome/issues/8109):
return statements in Astro frontmatter no longer trigger "Illegal return
statement" errors when using `experimentalFullSupportEnabled`.
- [#​8346](https://redirect.github.com/biomejs/biome/pull/8346)
[`f3aee1a`](https://redirect.github.com/biomejs/biome/commit/f3aee1a92fba7c61de4b6f5ada3063fb126db885)
Thanks [@​arendjr](https://redirect.github.com/arendjr)! - Fixed
[#​8292](https://redirect.github.com/biomejs/biome/issues/8292):
Implement tracking
of types of TypeScript constructor parameter properties.
This resolves certain false negatives in `noFloatingPromises` and other
typed
rules.
##### Example
```ts
class AsyncClass {
async returnsPromise() {
return "value";
}
}
class ShouldBeReported {
constructor(public field: AsyncClass) {}
// ^^^^^^^^^^^^----------------- Parameter property declaration
async shouldBeReported() {
// `noFloatingPromises` will now report the following usage:
this.field.returnsPromise();
}
}
```
- [#​8326](https://redirect.github.com/biomejs/biome/pull/8326)
[`153e3c6`](https://redirect.github.com/biomejs/biome/commit/153e3c6ba999481c8dff2531bcbbd62f4977cd19)
Thanks [@​ematipico](https://redirect.github.com/ematipico)! -
Improved the rule `noBiomeFirstException`. The rule can now inspect if
extended configurations already contain the catch-all `**` inside
`files.includes` and, if so, the rule suggests removing `**` from the
user configuration.
- [#​8433](https://redirect.github.com/biomejs/biome/pull/8433)
[`397547a`](https://redirect.github.com/biomejs/biome/commit/397547a85c46d87ccf6a8501c734b844b348865e)
Thanks [@​dyc3](https://redirect.github.com/dyc3)! - Fixed
[#​7920](https://redirect.github.com/biomejs/biome/issues/7920):
The CSS parser, with Tailwind directives enabled, will no longer error
when you use things like `prefix(tw)` in `@import` at rules.
- [#​8378](https://redirect.github.com/biomejs/biome/pull/8378)
[`cc2a62e`](https://redirect.github.com/biomejs/biome/commit/cc2a62e61b3818e59a16e0add9293c6345441ad7)
Thanks [@​Bertie690](https://redirect.github.com/Bertie690)! -
Clarify diagnostic message for `lint/style/useUnifiedTypeSignatures`
The rule's diagnostic message now clearly states that multiple *similar*
overload signatures are hard to read & maintain, as opposed to overload
signatures in general.
- [#​8296](https://redirect.github.com/biomejs/biome/pull/8296)
[`9d3ef10`](https://redirect.github.com/biomejs/biome/commit/9d3ef10d007e637c43b2f5e97758767da5f03d32)
Thanks [@​dyc3](https://redirect.github.com/dyc3)! - `biome rage`
now shows if you have experimental HTML full support enabled.
- [#​8414](https://redirect.github.com/biomejs/biome/pull/8414)
[`09acf2a`](https://redirect.github.com/biomejs/biome/commit/09acf2a700f480ae6acbefaab770e8db33d5e596)
Thanks [@​Bertie690](https://redirect.github.com/Bertie690)! -
Updated the documentation & diagnostic message for
`lint/nursery/noProto`, mentioning the reasons for its longstanding
deprecation and why more modern alternatives are preferred.
Notably, the rule clearly states that using `__proto__` inside object
literal definitions is still allowed, being a standard way to set the
prototype of a newly created object.
- [#​8445](https://redirect.github.com/biomejs/biome/pull/8445)
[`c3df0e0`](https://redirect.github.com/biomejs/biome/commit/c3df0e04fe6d23b41daa2cd832071d82fbc4224f)
Thanks [@​tt-a1i](https://redirect.github.com/tt-a1i)! - Fix
`--changed` and `--staged` flags throwing "No such file or directory"
error when a file has been deleted or renamed in the working directory.
The CLI now filters out files that no longer exist before processing.
- [#​8459](https://redirect.github.com/biomejs/biome/pull/8459)
[`b17d12b`](https://redirect.github.com/biomejs/biome/commit/b17d12b497ef3ec694d53f684295e0c6e49fdcad)
Thanks [@​ruidosujeira](https://redirect.github.com/ruidosujeira)!
- Fix
[#​8435](https://redirect.github.com/biomejs/biome/issues/8435):
resolved false positive in `noUnusedVariables` for generic type
parameters in construct signature type members (`new <T>(): T`).
- [#​8439](https://redirect.github.com/biomejs/biome/pull/8439)
[`a78774b`](https://redirect.github.com/biomejs/biome/commit/a78774bd8eabe159d5596bfed198d7216282e159)
Thanks [@​tt-a1i](https://redirect.github.com/tt-a1i)! - Fixed
[#​8011](https://redirect.github.com/biomejs/biome/issues/8011):
[`useConsistentCurlyBraces`](https://biomejs.dev/linter/rules/use-consistent-curly-braces/)
no longer suggests removing curly braces from JSX expression children
containing characters that would cause parsing issues or semantic
changes when converted to plain JSX text (`{`, `}`, `<`, `>`, `&`).
- [#​8436](https://redirect.github.com/biomejs/biome/pull/8436)
[`a392c06`](https://redirect.github.com/biomejs/biome/commit/a392c0646e285086558b96e0af7a84174d8bb190)
Thanks [@​ruidosujeira](https://redirect.github.com/ruidosujeira)!
- Fixed
[#​8429](https://redirect.github.com/biomejs/biome/issues/8429).
Formatter, linter, and assist settings now correctly inherit from global
configuration when not explicitly specified in overrides.
Before this fix, when an override specified only one feature (e.g., only
`linter`), other features would be incorrectly disabled instead of
inheriting from global settings.
Example configuration that now works correctly:
```json
{
"formatter": { "enabled": true },
"overrides": [
{
"includes": ["*.vue"],
"linter": { "enabled": false }
}
]
}
```
After this fix, `.vue` files will have the linter disabled (as specified
in the override) but the formatter enabled (inherited from global
settings).
- [#​8411](https://redirect.github.com/biomejs/biome/pull/8411)
[`9f1b3b0`](https://redirect.github.com/biomejs/biome/commit/9f1b3b06586401b39e0aa886bf7c8484fd2a6ded)
Thanks [@​rriski](https://redirect.github.com/rriski)! - Properly
handle `name`, `type_arguments`, and `attributes` slots for
`JsxOpeningElement` and `JsxSelfClosingElement` GritQL patterns.
The following biome search commands no longer throw errors:
```shell
biome search 'JsxOpeningElement(name = $elem_name) where { $elem_name <:
"div" }'
biome search 'JsxSelfClosingElement(name = $elem_name) where {
$elem_name <: "div" }'
```
- [#​8441](https://redirect.github.com/biomejs/biome/pull/8441)
[`cf37d0d`](https://redirect.github.com/biomejs/biome/commit/cf37d0dee56dba8c8b9e81c880f82f365f3102bf)
Thanks [@​tt-a1i](https://redirect.github.com/tt-a1i)! - Fixed
[#​6577](https://redirect.github.com/biomejs/biome/issues/6577):
[`noUselessUndefined`](https://biomejs.dev/linter/rules/no-useless-undefined/)
no longer reports `() => undefined` in arrow function expression bodies.
Previously, the rule would flag this pattern and suggest replacing it
with `() => {}`, which conflicts with the `noEmptyBlockStatements` rule.
- [#​8444](https://redirect.github.com/biomejs/biome/pull/8444)
[`8caa7a0`](https://redirect.github.com/biomejs/biome/commit/8caa7a07547960d8e9101fe67e2c490ec52426e9)
Thanks [@​tt-a1i](https://redirect.github.com/tt-a1i)! - Fix
[`noUnknownMediaFeatureName`](https://biomejs.dev/linter/rules/no-unknown-media-feature-name/)
false positive for `prefers-reduced-transparency` media feature. The
feature name was misspelled as `prefers-reduded-transparency` in the
keywords list.
- [#​8443](https://redirect.github.com/biomejs/biome/pull/8443)
[`c3fa5a1`](https://redirect.github.com/biomejs/biome/commit/c3fa5a1f26d8ea90006f9ded667136d6db347a8d)
Thanks [@​tt-a1i](https://redirect.github.com/tt-a1i)! - Fix
[`useGenericFontNames`](https://biomejs.dev/linter/rules/use-generic-font-names/)
false positive when a CSS variable is used as the last value in
`font-family` or `font`. The rule now correctly ignores cases like
`font-family: "Noto Serif", var(--serif)` and `font: 1em Arial,
var(--fallback)`.
- [#​8281](https://redirect.github.com/biomejs/biome/pull/8281)
[`30b046f`](https://redirect.github.com/biomejs/biome/commit/30b046faca464404aaeecfe1ed0e8a94b0e25990)
Thanks [@​tylersayshi](https://redirect.github.com/tylersayshi)! -
Fixed
[`noDuplicateDependencies`](https://biomejs.dev/linter/rules/no-duplicate-dependencies/)
incorrectly triggering on files like `_package.json`.
- [#​8315](https://redirect.github.com/biomejs/biome/pull/8315)
[`c7915c4`](https://redirect.github.com/biomejs/biome/commit/c7915c445fbe00d94713e4a285df3e0becde64a7)
Thanks
[@​hirokiokada77](https://redirect.github.com/hirokiokada77)! -
Fixed
[#​5213](https://redirect.github.com/biomejs/biome/issues/5213):
The
[`noDoneCallback`](https://biomejs.dev/linter/rules/no-done-callback/)
rule no longer flags false positives when a method is called on a
regular variable bound to identifiers such as `before`, `after`,
`beforeEach`, and `afterEach`.
- [#​8398](https://redirect.github.com/biomejs/biome/pull/8398)
[`204844f`](https://redirect.github.com/biomejs/biome/commit/204844f98f50140c4072b3ee1843994dbe73d2f7)
Thanks [@​Bertie690](https://redirect.github.com/Bertie690)! - The
default value of the `ignoreRestSiblings` option for
[`noUnusedVariables`](https://biomejs.dev/linter/rules/no-unused-variables)'
has been reverted to its prior value of `true` after [an internal
refactor](https://redirect.github.com/biomejs/biome/pull/7941)
accidentally changed it.
The diagnostic message has also been tweaked for readability.
- [#​8242](https://redirect.github.com/biomejs/biome/pull/8242)
[`9694e37`](https://redirect.github.com/biomejs/biome/commit/9694e373a1d34b799fb24780ddfde8680758b8b8)
Thanks [@​dyc3](https://redirect.github.com/dyc3)! - Fixed bugs in
the HTML parser so that it will flag invalid shorthand syntaxes instead
of silently accepting them. For example, `<Foo : foo="5" />` is now
invalid because there is a space after the `:`.
- [#​8297](https://redirect.github.com/biomejs/biome/pull/8297)
[`efa694c`](https://redirect.github.com/biomejs/biome/commit/efa694c019cbdbac5328b76bb70c464ad9befbf8)
Thanks [@​Yonom](https://redirect.github.com/Yonom)! - Added
support for negative value utilities in
[`useSortedClasses`](https://biomejs.dev/linter/rules/use-sorted-classes/).
Negative value utilities such as `-ml-2` or `-top-4` are now recognized
and sorted correctly alongside their positive counterparts.
```jsx
// Now detected as unsorted:
<div class="-ml-2 p-4 -mt-1" />
// Suggested fix:
<div class="-mt-1 -ml-2 p-4" />
```
- [#​8335](https://redirect.github.com/biomejs/biome/pull/8335)
[`3710702`](https://redirect.github.com/biomejs/biome/commit/3710702c3c489f57f82c24311023e1ffad53172a)
Thanks [@​dibashthapa](https://redirect.github.com/dibashthapa)! -
Added the new nursery rule
[`useDestructuring`](https://biomejs.dev/linter/rules/use-destructuring).
This rule helps to encourage destructuring from arrays and objects.
For example, the following code triggers because the variable name `x`
matches the property `foo.x`, making it ideal for object destructuring
syntax.
```js
var x = foo.x;
```
- [#​8383](https://redirect.github.com/biomejs/biome/pull/8383)
[`59b2f9a`](https://redirect.github.com/biomejs/biome/commit/59b2f9a780320b5eae8a4e66e2a5fe8256d52fe6)
Thanks [@​ematipico](https://redirect.github.com/ematipico)! -
Fixed
[#​7927](https://redirect.github.com/biomejs/biome/issues/7927):
[`noExtraNonNullAssertion`](https://biomejs.dev/linter/rules/no-extra-non-null-assertion)
incorrectly flagged separate non-null assertions on both sides of an
assignment.
The rule now correctly distinguishes between nested non-null assertions
(still flagged) and separate non-null assertions on different sides of
an assignment (allowed).
##### Examples
##### Valid (now allowed)
```ts
arr[0]! ^= arr[1]!;
```
##### Invalid (still flagged)
```ts
arr[0]!! ^= arr[1];
arr[0] ^= arr[1]!!;
```
- [#​8401](https://redirect.github.com/biomejs/biome/pull/8401)
[`382786b`](https://redirect.github.com/biomejs/biome/commit/382786b29f0c1e9524fee370ef7067de82a25e91)
Thanks [@​Bertie690](https://redirect.github.com/Bertie690)! -
[`useExhaustiveDependencies`](https://biomejs.dev/linter/rules/use-exhaustive-dependencies)
now correctly validates custom hooks whose dependency arrays come before
their callbacks.
Previously, a logical error caused the rule to be unable to detect
dependency arrays placed before hook callbacks, producing spurious
errors and blocking further diagnostics.
```json
{
"linter": {
"rules": {
"correctness": {
"useExhaustiveDependencies": {
"level": "error",
"options": {
"hooks": [
{
"name": "doSomething",
"closureIndex": 2,
"dependenciesIndex": 0
}
]
}
}
}
}
}
}
```
```js
function component() {
let thing = 5;
// The rule will now correctly recognize `thing` as being specified
// instead of erroring due to "missing" dependency arrays
doSomething([thing], "blah", () => {
console.log(thing);
});
}
```
The rule documentation & diagnostic messages have also been reworked for
improved clarity.
- [#​8365](https://redirect.github.com/biomejs/biome/pull/8365)
[`8f36051`](https://redirect.github.com/biomejs/biome/commit/8f36051bc30978b2900329a18176de423db25cfe)
Thanks
[@​JacquesLeupin](https://redirect.github.com/JacquesLeupin)! -
Fixed
[#​8360](https://redirect.github.com/biomejs/biome/issues/8360):
GritQL plugins defined in child configurations with `extends: "//"` now
work correctly.
- [#​8306](https://redirect.github.com/biomejs/biome/pull/8306)
[`8de2774`](https://redirect.github.com/biomejs/biome/commit/8de2774fb507a10e32ecf920bb5d0f801a9e869c)
Thanks [@​dibashthapa](https://redirect.github.com/dibashthapa)! -
Fixed
[#​8288](https://redirect.github.com/biomejs/biome/issues/8288):
Fixed the issue with false positive errors
This new change will ignore attribute and only show diagnostics for JSX
Expressions
For example
Valid:
```jsx
<Something checked={isOpen && items.length} />
```
Invalid:
```jsx
const Component = () => {
return isOpen && items.length;
};
```
- [#​8356](https://redirect.github.com/biomejs/biome/pull/8356)
[`f9673fc`](https://redirect.github.com/biomejs/biome/commit/f9673fc0816908cd686eab7a48d4e8be3f51c7c7)
Thanks [@​ematipico](https://redirect.github.com/ematipico)! -
Fixed
[#​7917](https://redirect.github.com/biomejs/biome/issues/7917),
where Biome removed the styles contained in a `<style lang="scss">`,
when `experimentalFullSupportEnabled` is enabled.
- [#​8371](https://redirect.github.com/biomejs/biome/pull/8371)
[`d71924e`](https://redirect.github.com/biomejs/biome/commit/d71924e26d8c71b7216247d71547e45183d85054)
Thanks [@​ematipico](https://redirect.github.com/ematipico)! -
Fixed
[#​7343](https://redirect.github.com/biomejs/biome/issues/7343),
where Biome failed to resolve extended configurations from parent
directories using relative paths.
- [#​8404](https://redirect.github.com/biomejs/biome/pull/8404)
[`6a221f9`](https://redirect.github.com/biomejs/biome/commit/6a221f98304133d80a8b328b74b203a03f68f571)
Thanks [@​fireairforce](https://redirect.github.com/fireairforce)!
- Fixed
[#​7826](https://redirect.github.com/biomejs/biome/issues/7826),
where a class member named `async` will not cause the parse error.
- [#​8249](https://redirect.github.com/biomejs/biome/pull/8249)
[`893e36c`](https://redirect.github.com/biomejs/biome/commit/893e36c7c39d210ccedfe040bb414945262b5d92)
Thanks [@​cormacrelf](https://redirect.github.com/cormacrelf)! -
Addressed
[#​7538](https://redirect.github.com/biomejs/biome/issues/7538).
Reduced the
volume of logging from the LSP server.
Use `biome clean` to remove large logs.
- [#​8303](https://redirect.github.com/biomejs/biome/pull/8303)
[`db2c65b`](https://redirect.github.com/biomejs/biome/commit/db2c65b7eaf057eda12434e98acf5430fe77b165)
Thanks
[@​hirokiokada77](https://redirect.github.com/hirokiokada77)! -
Fixed
[#​8300](https://redirect.github.com/biomejs/biome/issues/8300):
[`noUnusedImports`](https://biomejs.dev/linter/rules/no-unused-imports/)
now detects JSDoc tags on object properties.
```js
import type LinkOnObjectProperty from "mod";
const testLinkOnObjectProperty = {
/**
* {@​link LinkOnObjectProperty}
*/
property: 0,
};
```
- [#​8328](https://redirect.github.com/biomejs/biome/pull/8328)
[`9cf2332`](https://redirect.github.com/biomejs/biome/commit/9cf233275d1369bcce191146660ea92b26d6f211)
Thanks [@​Netail](https://redirect.github.com/Netail)! - Corrected
rule source reference. `biome migrate eslint` should do a bit better
detecting rules in your eslint configurations.
- [#​8403](https://redirect.github.com/biomejs/biome/pull/8403)
[`c96dcf2`](https://redirect.github.com/biomejs/biome/commit/c96dcf2f2824a83f8df8f86b684301184dd1344b)
Thanks [@​dyc3](https://redirect.github.com/dyc3)! - Fixed
[#​8340](https://redirect.github.com/biomejs/biome/issues/8340):
`noUnknownProperty` will no longer flag anything in `@plugin` when the
parser option `tailwindDirectives` is enabled
- [#​8284](https://redirect.github.com/biomejs/biome/pull/8284)
[`4976d1b`](https://redirect.github.com/biomejs/biome/commit/4976d1bebf81f874a0378f904e03c38fdb397702)
Thanks [@​denbezrukov](https://redirect.github.com/denbezrukov)! -
Improved the performance of the Biome Formatter by enabling the internal
source maps only when needed.
- [#​8260](https://redirect.github.com/biomejs/biome/pull/8260)
[`a226b28`](https://redirect.github.com/biomejs/biome/commit/a226b2862daa6e8d130bf3bfd88f6693412607e6)
Thanks [@​ho991217](https://redirect.github.com/ho991217)! - Fixed
[biome-vscode#817](https://redirect.github.com/biomejs/biome-vscode/issues/817):
Biome now updates documents when the `textDocument/didSave` notification
is received.
- [#​8183](https://redirect.github.com/biomejs/biome/pull/8183)
[`b064786`](https://redirect.github.com/biomejs/biome/commit/b064786002ec7bd80be3a4a4b94a8f61b0aa3a47)
Thanks [@​hornta](https://redirect.github.com/hornta)! - Fixed
[#​8179](https://redirect.github.com/biomejs/biome/issues/8179):
The
[`useConsistentArrowReturn`](https://biomejs.dev/linter/rules/use-consistent-arrow-return/)
rule now correctly handles multiline expressions in its autofix when the
`style` option is set to `"always"`.
Previously, the autofix would incorrectly place a newline after the
`return` keyword, causing unexpected behavior.
Example:
```js
const foo = (l) => l.split("\n");
```
Now correctly autofixes to:
```diff
const foo = (l) => {
- return
- l.split('\n');
+ return l.split('\n');
}
```
- [#​8382](https://redirect.github.com/biomejs/biome/pull/8382)
[`7409cba`](https://redirect.github.com/biomejs/biome/commit/7409cbaa9be1eed34c1279920bdd33674120f0b3)
Thanks [@​fireairforce](https://redirect.github.com/fireairforce)!
- Fixed
[#​8338](https://redirect.github.com/biomejs/biome/issues/8338):
Ignored the `noUnknownTypeSelector` check when the `root` selector is
used under View Transition pseudo-elements.
**Example**
```css
::view-transition-old(root),
::view-transition-new(root) {
z-index: 1;
}
```
- [#​7513](https://redirect.github.com/biomejs/biome/pull/7513)
[`e039f3b`](https://redirect.github.com/biomejs/biome/commit/e039f3b17cdf4e4b7c2ae9b0b0c58a9800b5703c)
Thanks [@​AsherDe](https://redirect.github.com/AsherDe)! - Added
the nursery rule
[`noVueSetupPropsReactivityLoss`](https://biomejs.dev/linter/rules/no-vue-setup-props-reactivity-loss/).
This new rule disallows usages that cause the reactivity of `props`
passed to the `setup` function to be lost.
Invalid code example:
```jsx
export default {
setup({ count }) {
// `count` is no longer reactive here.
return () => h("div", count);
},
};
```
#### What's Changed
- fix(lsp): do not log full file contents twice on every keystroke by
[@​cormacrelf](https://redirect.github.com/cormacrelf) in
[#​8249](https://redirect.github.com/biomejs/biome/pull/8249)
- docs: be more specific with changeset guidelines by
[@​dyc3](https://redirect.github.com/dyc3) in
[#​8282](https://redirect.github.com/biomejs/biome/pull/8282)
- fix: reload file from disk on save to fix stale diagnostics by
[@​ho991217](https://redirect.github.com/ho991217) in
[#​8260](https://redirect.github.com/biomejs/biome/pull/8260)
- feat(js\_analyze): implement `useRegexpExec` by
[@​Netail](https://redirect.github.com/Netail) in
[#​8034](https://redirect.github.com/biomejs/biome/pull/8034)
- feat(cli): show html full support configuration in `biome rage` output
by [@​dyc3](https://redirect.github.com/dyc3) in
[#​8296](https://redirect.github.com/biomejs/biome/pull/8296)
- ci: bundle WASM manually by
[@​ematipico](https://redirect.github.com/ematipico) in
[#​8271](https://redirect.github.com/biomejs/biome/pull/8271)
- feat(analyse/json): add `useRequiredScripts` rule by
[@​tylersayshi](https://redirect.github.com/tylersayshi) in
[#​8281](https://redirect.github.com/biomejs/biome/pull/8281)
- fix(noUnusedImports): detect JSDoc tags on object properties by
[@​hirokiokada77](https://redirect.github.com/hirokiokada77) in
[#​8303](https://redirect.github.com/biomejs/biome/pull/8303)
- fix(js\_parser): allow return statements in Astro frontmatter by
[@​mlafeldt](https://redirect.github.com/mlafeldt) in
[#​8302](https://redirect.github.com/biomejs/biome/pull/8302)
- feat(useSortedClasses): add support for negative value utilities by
[@​Yonom](https://redirect.github.com/Yonom) in
[#​8297](https://redirect.github.com/biomejs/biome/pull/8297)
- fix(lint): fixed the issue with false positive errors for
`noLeakedRender` rule by
[@​dibashthapa](https://redirect.github.com/dibashthapa) in
[#​8306](https://redirect.github.com/biomejs/biome/pull/8306)
- chore(deps): update github-actions by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​8319](https://redirect.github.com/biomejs/biome/pull/8319)
- chore(deps): update dependency
[@​changesets/changelog-github](https://redirect.github.com/changesets/changelog-github)
to v0.5.2 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​8320](https://redirect.github.com/biomejs/biome/pull/8320)
- chore(deps): update dependency
[@​changesets/cli](https://redirect.github.com/changesets/cli) to
v2.29.8 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​8322](https://redirect.github.com/biomejs/biome/pull/8322)
- docs: node protocol rule reference by
[@​Netail](https://redirect.github.com/Netail) in
[#​8328](https://redirect.github.com/biomejs/biome/pull/8328)
- feat(lint): implement vue/noSetupPropsReactivityLoss by
[@​AsherDe](https://redirect.github.com/AsherDe) in
[#​7513](https://redirect.github.com/biomejs/biome/pull/7513)
- fix(lint): improve `noBiomeFirstException` by
[@​ematipico](https://redirect.github.com/ematipico) in
[#​8326](https://redirect.github.com/biomejs/biome/pull/8326)
- fix(noDoneCallback): avoid false positives on non-hook identifiers by
[@​hirokiokada77](https://redirect.github.com/hirokiokada77) in
[#​8315](https://redirect.github.com/biomejs/biome/pull/8315)
- feat(linter): implement `useAwaitThenable` by
[@​arendjr](https://redirect.github.com/arendjr) in
[#​8341](https://redirect.github.com/biomejs/biome/pull/8341)
- chore: move depot to platinum sponsor by
[@​ematipico](https://redirect.github.com/ematipico) in
[#​8337](https://redirect.github.com/biomejs/biome/pull/8337)
- fix(core): implement constructor parameter property tracking by
[@​arendjr](https://redirect.github.com/arendjr) in
[#​8346](https://redirect.github.com/biomejs/biome/pull/8346)
- refactor(core): document services by
[@​ematipico](https://redirect.github.com/ematipico) in
[#​8327](https://redirect.github.com/biomejs/biome/pull/8327)
- refactor(core): use boxcar by
[@​ematipico](https://redirect.github.com/ematipico) in
[#​8352](https://redirect.github.com/biomejs/biome/pull/8352)
- fix(html/formatter): style tag with lang by
[@​ematipico](https://redirect.github.com/ematipico) in
[#​8356](https://redirect.github.com/biomejs/biome/pull/8356)
- feat(format/html): handle iframe allow special formatting by
[@​dyc3](https://redirect.github.com/dyc3) in
[#​8290](https://redirect.github.com/biomejs/biome/pull/8290)
- chore: sync html prettier tests by
[@​dyc3](https://redirect.github.com/dyc3) in
[#​8291](https://redirect.github.com/biomejs/biome/pull/8291)
- feat(lint): implement `useDestructuring` by
[@​dibashthapa](https://redirect.github.com/dibashthapa) in
[#​8335](https://redirect.github.com/biomejs/biome/pull/8335)
- refactor(formatter): add printer option to disable source-map
generation by
[@​denbezrukov](https://redirect.github.com/denbezrukov) in
[#​8284](https://redirect.github.com/biomejs/biome/pull/8284)
- refactor(formatter): reduce best fitting allocations by
[@​denbezrukov](https://redirect.github.com/denbezrukov) in
[#​8137](https://redirect.github.com/biomejs/biome/pull/8137)
- fix: resolve plugin paths relative to config file when using extends
by [@​JacquesLeupin](https://redirect.github.com/JacquesLeupin) in
[#​8365](https://redirect.github.com/biomejs/biome/pull/8365)
- fix(cli): resolve configs from parent paths by
[@​ematipico](https://redirect.github.com/ematipico) in
[#​8371](https://redirect.github.com/biomejs/biome/pull/8371)
- fix(lint): update rule diagnostic message for
`useUnifiedTypeSignature` by
[@​Bertie690](https://redirect.github.com/Bertie690) in
[#​8378](https://redirect.github.com/biomejs/biome/pull/8378)
- feat: implement noScriptUrl rule by
[@​ruidosujeira](https://redirect.github.com/ruidosujeira) in
[#​8232](https://redirect.github.com/biomejs/biome/pull/8232)
- fix(lint): don't flag separate non-null assertions on assignment sides
by [@​ematipico](https://redirect.github.com/ematipico) in
[#​8383](https://redirect.github.com/biomejs/biome/pull/8383)
- fix(parse/html/vue): emit diagnostics for invalid vue shorthand
syntaxes by [@​dyc3](https://redirect.github.com/dyc3) in
[#​8242](https://redirect.github.com/biomejs/biome/pull/8242)
- chore(deps): update github-actions by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​8384](https://redirect.github.com/biomejs/biome/pull/8384)
- chore(deps): update rust crate libc to 0.2.178 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​8385](https://redirect.github.com/biomejs/biome/pull/8385)
- fix(noUnknownTypeSelectors): allow root when under ViewTransitions
pseudo elements by
[@​fireairforce](https://redirect.github.com/fireairforce) in
[#​8382](https://redirect.github.com/biomejs/biome/pull/8382)
- fix(deps): update
[@​biomejs](https://redirect.github.com/biomejs) packages by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​8386](https://redirect.github.com/biomejs/biome/pull/8386)
- fix(deps): update dependency prettier to v3.7.4 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​8387](https://redirect.github.com/biomejs/biome/pull/8387)
- fix(core): document services by
[@​ematipico](https://redirect.github.com/ematipico) in
[#​8394](https://redirect.github.com/biomejs/biome/pull/8394)
- ci: attest build provenance for CLI binaries by
[@​siketyan](https://redirect.github.com/siketyan) in
[#​8379](https://redirect.github.com/biomejs/biome/pull/8379)
- chore(deps): update rust crate tower-lsp-server to 0.23.0 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​8392](https://redirect.github.com/biomejs/biome/pull/8392)
- fix(parser): allow async as class member name by
[@​fireairforce](https://redirect.github.com/fireairforce) in
[#​8404](https://redirect.github.com/biomejs/biome/pull/8404)
- fix(noUnknownProperty): don't flag anything in `@plugin` by
[@​dyc3](https://redirect.github.com/dyc3) in
[#​8403](https://redirect.github.com/biomejs/biome/pull/8403)
- fix(grit): correct JSX element slot indices for GritQL patterns by
[@​rriski](https://redirect.github.com/rriski) in
[#​8411](https://redirect.github.com/biomejs/biome/pull/8411)
- chore: speed up build of dev profile by
[@​ematipico](https://redirect.github.com/ematipico) in
[#​8432](https://redirect.github.com/biomejs/biome/pull/8432)
- feat(lint): update docs & diagnostic for `lint/nursery/noProto` by
[@​Bertie690](https://redirect.github.com/Bertie690) in
[#​8414](https://redirect.github.com/biomejs/biome/pull/8414)
- fix: improve rustdoc for IndentStyle by
[@​GameRoMan](https://redirect.github.com/GameRoMan) in
[#​8425](https://redirect.github.com/biomejs/biome/pull/8425)
- fix(lint): remove `useExhaustiveDependencies` spurious errors on
dependency-first custom hooks; improve docs by
[@​Bertie690](https://redirect.github.com/Bertie690) in
[#​8401](https://redirect.github.com/biomejs/biome/pull/8401)
- fix: fix typo in changeset by
[@​Bertie690](https://redirect.github.com/Bertie690) in
[#​8438](https://redirect.github.com/biomejs/biome/pull/8438)
- fix(linter): prevent useConsistentCurlyBraces from suggesting invalid
JSX text conversion by
[@​tt-a1i](https://redirect.github.com/tt-a1i) in
[#​8439](https://redirect.github.com/biomejs/biome/pull/8439)
- fix(config): inherit enabled state from global config in overrides by
[@​ruidosujeira](https://redirect.github.com/ruidosujeira) in
[#​8436](https://redirect.github.com/biomejs/biome/pull/8436)
- fix(linter): allow `() => undefined` in noUselessUndefined by
[@​tt-a1i](https://redirect.github.com/tt-a1i) in
[#​8441](https://redirect.github.com/biomejs/biome/pull/8441)
- fix(noUnknownMediaFeatureName): fix typo in
prefers-reduced-transparency by
[@​tt-a1i](https://redirect.github.com/tt-a1i) in
[#​8444](https://redirect.github.com/biomejs/biome/pull/8444)
- fix(useGenericFontNames): handle CSS variable as last font-family
value by [@​tt-a1i](https://redirect.github.com/tt-a1i) in
[#​8443](https://redirect.github.com/biomejs/biome/pull/8443)
- fix(cli): skip deleted files in --changed and --staged by
[@​tt-a1i](https://redirect.github.com/tt-a1i) in
[#​8445](https://redirect.github.com/biomejs/biome/pull/8445)
- fix(lint): update default value of `ignoreRestSiblings` for
`noUnusedVariables` by
[@​Bertie690](https://redirect.github.com/Bertie690) in
[#​8398](https://redirect.github.com/biomejs/biome/pull/8398)
- fix(lint): correct multiline autofix in useConsistentArrowReturn by
[@​hornta](https://redirect.github.com/hornta) in
[#​8183](https://redirect.github.com/biomejs/biome/pull/8183)
- chore: tweak changeset by
[@​dyc3](https://redirect.github.com/dyc3) in
[#​8452](https://redirect.github.com/biomejs/biome/pull/8452)
- chore(deps): update github-actions by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​8455](https://redirect.github.com/biomejs/biome/pull/8455)
- chore(deps): update dependency
[@​types/node](https://redirect.github.com/types/node) to v24.10.3
by [@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​8458](https://redirect.github.com/biomejs/biome/pull/8458)
- chore(deps): update rust:1.91.1-bookworm docker digest to
[`c1e5f19`](https://redirect.github.com/biomejs/biome/commit/c1e5f19) by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​8456](https://redirect.github.com/biomejs/biome/pull/8456)
- chore(deps): update rust:1.91.1-bullseye docker digest to
[`f02c249`](https://redirect.github.com/biomejs/biome/commit/f02c249) by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​8457](https://redirect.github.com/biomejs/biome/pull/8457)
- chore(deps): update rust crate camino to 1.2.2 by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​8460](https://redirect.github.com/biomejs/biome/pull/8460)
- fix(deps): update
[@​biomejs](https://redirect.github.com/biomejs) packages by
[@​renovate](https://redirect.github.com/renovate)\[bot] in
[#​8461](https://redirect.github.com/biomejs/biome/pull/8461)
- fix(semantic): track scope for TS construct signature type parameters
by [@​ruidosujeira](https://redirect.github.com/ruidosujeira) in
[#​8459](https://redirect.github.com/biomejs/biome/pull/8459)
- fix(parse/css): skip tailwind syntax in `@import` by
[@​dyc3](https://redirect.github.com/dyc3) in
[#​8433](https://redirect.github.com/biomejs/biome/pull/8433)
- ci: fix wasm artifact names for release workflow by
[@​dyc3](https://redirect.github.com/dyc3) in
[#​8468](https://redirect.github.com/biomejs/biome/pull/8468)
- ci: fix wasm artifacts again by
[@​dyc3](https://redirect.github.com/dyc3) in
[#​8470](https://redirect.github.com/biomejs/biome/pull/8470)
- ci: release by
[@​github-actions](https://redirect.github.com/github-actions)\[bot]
in [#​8469](https://redirect.github.com/biomejs/biome/pull/8469)
#### New Contributors
- [@​ho991217](https://redirect.github.com/ho991217) made their
first contribution in
[#​8260](https://redirect.github.com/biomejs/biome/pull/8260)
- [@​tylersayshi](https://redirect.github.com/tylersayshi) made
their first contribution in
[#​8281](https://redirect.github.com/biomejs/biome/pull/8281)
- [@​mlafeldt](https://redirect.github.com/mlafeldt) made their
first contribution in
[#​8302](https://redirect.github.com/biomejs/biome/pull/8302)
- [@​Yonom](https://redirect.github.com/Yonom) made their first
contribution in
[#​8297](https://redirect.github.com/biomejs/biome/pull/8297)
- [@​AsherDe](https://redirect.github.com/AsherDe) made their
first contribution in
[#​7513](https://redirect.github.com/biomejs/biome/pull/7513)
- [@​JacquesLeupin](https://redirect.github.com/JacquesLeupin)
made their first contribution in
[#​8365](https://redirect.github.com/biomejs/biome/pull/8365)
- [@​GameRoMan](https://redirect.github.com/GameRoMan) made their
first contribution in
[#​8425](https://redirect.github.com/biomejs/biome/pull/8425)
- [@​tt-a1i](https://redirect.github.com/tt-a1i) made their first
contribution in
[#​8439](https://redirect.github.com/biomejs/biome/pull/8439)
- [@​hornta](https://redirect.github.com/hornta) made their first
contribution in
[#​8183](https://redirect.github.com/biomejs/biome/pull/8183)
**Full Changelog**:
<https://github.com/biomejs/biome/compare/@biomejs/biome@2.3.8...@​biomejs/biome@2.3.9>
</details>
<details>
<summary>tinygo-org/tinygo (tinygo)</summary>
###
[`v0.40.0`](https://redirect.github.com/tinygo-org/tinygo/blob/HEAD/CHANGELOG.md#0400)
- **general**
- all: add full LLVM 20 support
- core: feat: enable //go:linkname pragma for globals
- core: feature: Add flag to ignore go compatibility matrix
([#​5078](https://redirect.github.com/tinygo-org/tinygo/issues/5078))
- chore: update version for 0.40 development cycle
- **compiler**
- emit an error when the actual arch doesn't match GOARCH
- mark string parameters as readonly
- use Tarjan's SCC algorithm to detect loops for defer
- lower "large stack" limit to 16kb
- **core**
- shrink bdwgc library
- Fix linker errors for runtime.vgetrandom and
crypto/internal/sysrand.fatal
- fix: add TryLock to sync.RWMutex
- fix: correct linter issues exposed by the fix in
[#​4679](https://redirect.github.com/tinygo-org/tinygo/issues/4679)
- fix: don't hardcode success return state
- fix: expand RTT debugger compatibility
- internal/task (threads): save stack bounds instead of scanning under a
lock
- internal/task: create detached threads and fix error handling
- interp: better errors when debugging interp
- transform (gc): create stack slots in callers of external functions
- internal/task: prevent semaphore resource leak for threads scheduler
- **machine**
- cortexm: optimize code size for the HardFault\_Handler
- fe310: add I2C pins for the HiFive1b
- clarify WriteAt semantics of BlockDevice
- fix deprecated AsmFull comment
([#​5005](https://redirect.github.com/tinygo-org/tinygo/issues/5005))
- make sure DMA buffers do not escape unnecessarily
- only enable USB-CDC when needed
- use larger SPI MAXCNT on nrf52833 and nrf52840
- fix: update m.queuedBytes when clamping output to avoid corrupting
sentBytes
- fix: use int64 in ReadTemperature to avoid overflow
- fix(rp2): disable DBGPAUSE on startup
- fix(rp2): possible integer overflow while computing factors for SPI
baudrate
- fix(rp2): reset spinlocks at startup
- fix(rp2): switch spinlock busy loop to wfe
- fix(rp2): use side-effect-free spinlocks
- nrf: add ADC\_VDDH which is an ADC pin for VDDH
- nrf: don't block SPI transfer
- nrf: don't set PSELN, it's ignored in single ended mode anyway
- nrf: fix typo in ADC configuration
- nrf: refactor SoftDevice enabled check
- nrf: rename pwmPin to adcPin
- nrf: support flash operations while the SoftDevice is enabled
- rp2040: allow writing to the UART inside interrupts
- machine,nrf528: stop the bus only once on I2C bus error and ensures
the first error is returned
- **net**
- update submodule to latest commits
- **runtime**
- (avr): fix infinite longjmp loop if stack is aligned to 256 bytes
- (gc\_blocks.go): clear full size of allocation
- (gc\_blocks.go): make sweep branchless
- (gc\_blocks.go): simplify scanning logic
- (gc\_blocks.go): use a linked stack to scan marked objects
- (gc\_blocks.go): use best-fit allocation
- (gc\_boehm.go): fix world already stopped check
- (wasm): scan the system stack
- fix sleep duration for long sleeps
- remove copied code for nrf52840
- src/syscall: update src buffer after write
- wasm: fix C realloc and optimize it a bit
- **targets**
- add xiao-esp32s3 board target
- Add ESP32-S3 support
([#​5091](https://redirect.github.com/tinygo-org/tinygo/issues/5091))
- Added Gopher ARCADE board
- Create "pico2-ice" target board
([#​5062](https://redirect.github.com/tinygo-org/tinygo/issues/5062))
- **build/test**
- Add testing.T.Context() and testing.B.Context()
- create separate go.mod file for testing dependencies for wasm tests
that use Chromium headless browser to avoid use of older incompatible
version.
- go back to normal scheduler instead of tasks scheduler for macos CI
- update CI to use Go 1.25.5
- update macOS GH actions builds to handle sunset of macOS 13
- use task scheduler on macOS builds to avoid test race condition
lockups
- update all CI builds to use latest stable Go release. Also update some
of the actions to their latest releases.
- update GH actions builds to use Go 1.25.4
- uninstall cmake before install
- fix: point the submodule for musl-lib to a mirror in the TinyGo GitHub
org
- fix: remove macOS 15 from CI build matrix (conflicts with macOS 14
build)
- fix: separate host expected bytes from device intended bytes
- fix/typo: makeESPFirmwareImage
- make: GNUmakefile: shrink TinyGo binaries on Linux
- move the directory list into a variable
- several improvements to the macOS GH actions build
- Fix for
[#​4678](https://redirect.github.com/tinygo-org/tinygo/issues/4678):
top-level 'make lint' wasn't working
- fix: increase the timeout for chromedp to connect to the headless
browser used for running the wasm tests.
- testdata: some more packages for the test corpus
</details>
<details>
<summary>astral-sh/uv (uv)</summary>
###
[`v0.9.17`](https://redirect.github.com/astral-sh/uv/blob/HEAD/CHANGELOG.md#0917)
[Compare
Source](https://redirect.github.com/astral-sh/uv/compare/0.9.16...0.9.17)
Released on 2025-12-09.
##### Enhancements
- Add `torch-tensorrt` and `torchao` to the PyTorch list
([#​17053](https://redirect.github.com/astral-sh/uv/pull/17053))
- Add hint for misplaced `--verbose` in `uv tool run`
([#​17020](https://redirect.github.com/astral-sh/uv/pull/17020))
- Add support for relative durations in `exclude-newer` (a.k.a.,
dependency cooldowns)
([#​16814](https://redirect.github.com/astral-sh/uv/pull/16814))
- Add support for relocatable nushell activation script
([#​17036](https://redirect.github.com/astral-sh/uv/pull/17036))
##### Bug fixes
- Respect dropped (but explicit) indexes in dependency groups
([#​17012](https://redirect.github.com/astral-sh/uv/pull/17012))
##### Documentation
- Improve `source-exclude` reference docs
([#​16832](https://redirect.github.com/astral-sh/uv/pull/16832))
- Recommend `UV_NO_DEV` in Docker installs
([#​17030](https://redirect.github.com/astral-sh/uv/pull/17030))
- Update `UV_VERSION` in docs for GitLab CI/CD
([#​17040](https://redirect.github.com/astral-sh/uv/pull/17040))
</details>
---
### Configuration
📅 **Schedule**: Branch creation - Between 12:00 AM and 03:59 AM, only on
Monday ( * 0-3 * * 1 ) (UTC), 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.
👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config
help](https://redirect.github.com/renovatebot/renovate/discussions) if
that's undesired.
---
- [ ] <!-- 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/alecthomas/chroma).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi40Mi4yIiwidXBkYXRlZEluVmVyIjoiNDIuNTQuMiIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6W119-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>1 parent b527a28 commit 2408917
File tree
7 files changed
+4
-4
lines changed- bin
7 files changed
+4
-4
lines changedFile renamed without changes.
File renamed without changes.
File renamed without changes.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | | - | |
| 1 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | | - | |
| 1 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | | - | |
| 1 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | | - | |
| 1 | + | |
0 commit comments