Skip to content

chore(deps): update linters - #2437

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/linters
Open

chore(deps): update linters#2437
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/linters

Conversation

@renovate

@renovate renovate Bot commented Aug 31, 2026

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Type Update Change Pending Age Confidence
aqua:owenlamont/ryl tools minor 0.21.00.22.0 age confidence
biome tools patch 2.5.82.5.13 age confidence
editorconfig-checker tools major 3.11.14.0.1 age confidence
npm:renovate (source) tools minor 44.29.444.69.2 44.79.1 (+30) age confidence
ruff tools patch 0.16.30.16.6 age confidence
rumdl tools patch v0.2.55v0.2.70 age confidence
shfmt tools minor 3.13.13.14.1 age confidence
typos tools minor 1.49.01.50.1 age confidence
zizmor tools minor 1.29.01.30.1 age confidence

Release Notes

owenlamont/ryl (aqua:owenlamont/ryl)

v0.22.0

Compare Source

What's Changed

Full Changelog: owenlamont/ryl@v0.21.0...v0.22.0

biomejs/biome (biome)

v2.5.13: Biome CLI v2.5.13

Compare Source

2.5.13

Patch Changes

What's Changed

New Contributors

Full Changelog: https://github.com/biomejs/biome/compare/@biomejs/biome@2.5.12...@biomejs/biome@2.5.13

v2.5.12: Biome CLI v2.5.12

Compare Source

2.5.12

Patch Changes
  • #​11440 b88f1ea Thanks @​Princesseuh! - Fixed Astro attribute expressions rejecting TypeScript and JSX syntax that is accepted in text expressions.

    <Component icon={<Icon />} count={total as number} onSelect={(e: Event) => e} />
  • #​11440 b88f1ea Thanks @​Princesseuh! - Fixed Astro attribute names being split on : and . inside an expression, such as {x && <button x-on:keyup.enter={go} client:load.foo />}.

  • #​11440 b88f1ea Thanks @​Princesseuh! - Fixed a bare > in the children of an Astro expression being treated as markup, such as {x && <div>a > b</div>}.

  • #​11440 b88f1ea Thanks @​Princesseuh! - Fixed HTML comments inside an Astro expression failing to parse. They are now read as trivia, wherever they appear among the children.

    {x && <div><!-- first -->text<!-- last --></div>}
    {cond && <a></a><!-- c --><b></b>}
  • #​11440 b88f1ea Thanks @​Princesseuh! - Fixed is:raw children inside an Astro expression being read as JSX, such as {x && <div is:raw>{not js} < & text</div>}.

  • #​11440 b88f1ea Thanks @​Princesseuh! - Fixed an apostrophe or quote in the text of a JSX element inside an Astro expression ending the expression early, such as {items.map((i) => <li>it's {i}</li>)}.

  • #​11440 b88f1ea Thanks @​Princesseuh! - Fixed the children of a <script> or <style> inside an Astro expression being read as JSX. Their contents are text, so braces and comparisons no longer have to be escaped.

    {cond && <style>a { color: red }</style>}
    {cond && <script>let x = {a: 1};</script>}
  • #​11440 b88f1ea Thanks @​Princesseuh! - Added support for template literal attribute values inside an Astro expression, such as {x && <C data-x=`t${x}` />}.

  • #​11440 b88f1ea Thanks @​Princesseuh! - Fixed unquoted attribute values being rejected inside an Astro expression, such as {x && <a class=foo maxlength=255 href=/about>go</a>}.

  • #​11440 b88f1ea Thanks @​Princesseuh! - Fixed a template literal nested inside ${} breaking the rest of an Astro file, such as const href = `/blog${page === 0 ? '' : `/${page + 1}`}`;.

  • #​11440 b88f1ea Thanks @​Princesseuh! - Fixed a quote inside a regex character class breaking the rest of an Astro file, such as const unsafe = /[/"]/;.

  • #​11508 54f3a2e Thanks @​dyc3! - Added the nursery rule useFlatMathMinMax. Because Math.min() and Math.max() accept any number of arguments, the rule reports unnecessary nested calls to the same method:

    Math.max(Math.max(a, b), c);

    The fix flattens this expression to Math.max(a, b, c).

  • #​11585 c5c8315 Thanks @​Netail! - Fixed #​11475: noUnresolvedImports no longer reports Bun runtime built-in modules (bun, bun:bundle, bun:ffi, bun:jsc, bun:sqlite, bun:test).

  • #​11368 52a57b3 Thanks @​Austin1serb! - Fixed #​6830: Biome now reports a diagnostic for excessively deep syntax instead of overflowing the native stack while releasing the parsed tree.

  • #​11596 1fc42ed Thanks @​dyc3! - Added the nursery rule noThisOutsideOfClass. The rule reports this outside class members and TypeScript functions with an explicit this parameter.

    function Person(name) {
        this.name = name;
    }
  • #​11555 2516335 Thanks @​dyc3! - Fixed #​11529, where noFloatingPromises missed unhandled Promise chains when the imported function's module belonged to an import cycle. Cyclic modules now preserve types for exports that do not participate in recursive type dependencies.

  • #​11518 0fee70c Thanks @​HarperZ9! - Fixed #​11500: the formatter now prints the declare modifier before accessibility modifiers on class properties. private declare readonly name: string is now formatted as declare private readonly name: string, matching Prettier and TypeScript's canonical modifier order.

  • #​11580 1277af2 Thanks @​ematipico! - Fixed #​5091: Biome no longer moves comments next to the < of a generic, which causes invalid TypeScript syntax:

    - Generic<// a comment
    + Generic<
    +   // a comment
  • #​11577 42995d2 Thanks @​ematipico! - Fixed #​4592. Biome no longer crashes while parsing malformed delete expressions.

  • #​11590 67963b4 Thanks @​ematipico! - Fixed #​6427 so Grit plugins can use function = ... as a node argument.

  • #​11600 a689cb5 Thanks @​ematipico! - Fixed #​6644: noUnusedVariables now recognizes all interface declarations in a TypeScript declaration-merging group when the interface is referenced.

    The following snippet no longer triggers the rule.

    interface Things {
        foo: string;
    }
    
    interface Things {
        bar: string;
    }
    
    export type Key = keyof Things;
    
    interface Things {
        baz: string;
    }
  • #​11591 d4a0716 Thanks @​ematipico! - Fixed #​6615. noDuplicateProperties no longer reports declarations nested in block at-rules as duplicates of declarations in their parent block.

  • #​11492 f2a07aa Thanks @​santichausis! - Fixed #​11454: noMisplacedAssertion now recognises @fast-check/vitest's test.prop(...) (and .concurrent.prop, .skip.prop, etc.) as a test function, the same way it already recognises test.each. The JS formatter picks up the same recognition, so a curried test.prop(...)(...) call is now formatted with the regular breakable argument layout used for test.each/test.for, instead of the single-line-hugging layout used for plain it/test calls.

    For example, Biome no longer reports the assertion below as misplaced:

    import { fc, test } from "@fast-check/vitest";
    
    test.prop([fc.string()])("round-trips", (s) => {
      expect(s).toBe(s);
    });
  • #​11589 65742b3 Thanks @​ematipico! - Fixed #​4928: noUnusedVariables no longer reports a value declaration as unused when its merged namespace is referenced.

  • #​11559 472dbc2 Thanks @​levrik! - Fixed a false positive in noVueDuplicateKeys where a <script setup> variable initialized from props was reported as a duplicate of the prop it derives from. Biome now exempts any variable whose initializer references props, instead of only recognizing defineProps() and toRefs(props).

    For example, Biome no longer reports foo below as a duplicate key:

    <script setup>
    import { toRef } from 'vue';
    const props = defineProps(['foo']);
    const foo = toRef(props, 'foo');
    </script>
  • #​11594 6586ceb Thanks @​ematipico! - Fixed #​6640. Biome no longer crashes when linting malformed for...of statements.

  • #​11571 85b197d Thanks @​ematipico! - Fixed #​10838: useSortedAttributes no longer corrupts JSX attributes when nested JSX elements also require sorting.

  • #​11533 97e76c0 Thanks @​ematipico! - Fixed #​11520, where the Biome scanner would start analysing dependencies multiple times, leading to long and unresponsive sessions.

  • #​11564 18a0e1f Thanks @​Netail! - Fixed the diagnostic range of noInferrableTypes so it now highlights only the type instead of including the leading : colon, spaces and comments.

  • #​11540 124fdaa Thanks @​ematipico! - Fixed #11537: noShorthandPropertyOverrides now compares declarations only within the same block. The rule no longer reports @supports feature queries and correctly checks nested, @keyframes, and @page blocks.

  • #​11532 7ceb0ee Thanks @​dyc3! - Fixed #​11528: noFloatingPromises no longer reports statement-level await expressions that handle Promise values, including overloaded calls returning Promise aliases. Awaited values that resolve to arrays of Promises remain reported because their element Promises are not handled by await.

  • #​11474 3c6412e Thanks @​dyc3! - Fixed #​10241. Biome no longer reports unsupported text expression diagnostics for double-curly text in vanilla HTML, and the formatter preserves adjacent curly-brace text.

  • #​11593 6c7fd27 Thanks @​dyc3! - Added the nursery rule noVueDeprecatedScopedSlots. It reports deprecated $scopedSlots references in Vue templates and component objects, and offers an unsafe replacement with $slots. For example, Biome now reports this.$scopedSlots.default inside a Vue component.

  • #​11440 b88f1ea Thanks @​Princesseuh! - Fixed the formatter crashing on an Astro or Svelte expression spanning several lines in a file with CRLF line endings, such as <p>{a +\r\n b}</p>.

  • #​11581 f4e5ebb Thanks @​dyc3! - Added the nursery rule useModernMathApis. The rule reports legacy mathematical patterns that have direct modern Math equivalents.

    Math.sqrt(a * a + b * b);
  • #​11597 a20f44a Thanks @​Netail! - Added the nursery rule [noBunModules](https://biomejs.dev/linter/rules/no-bun-mo

Important

✂ PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • "before 4am on Monday"
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


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

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

@renovate renovate Bot added the dependencies Pull requests that update a dependency file label Aug 31, 2026
@renovate
renovate Bot enabled auto-merge (squash) August 31, 2026 01:42
@renovate renovate Bot added the dependencies Pull requests that update a dependency file label Aug 31, 2026
@renovate
renovate Bot force-pushed the renovate/linters branch 7 times, most recently from 24a72da to b824d25 Compare September 4, 2026 00:16
@renovate

renovate Bot commented Sep 4, 2026

Copy link
Copy Markdown
Contributor Author

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: mise.lock
→ Targeting 7 platform(s) for /tmp/renovate/repos/github/prometheus/client_java/mise.lock: linux-arm64, linux-arm64-musl, linux-x64, linux-x64-musl, macos-arm64, macos-x64, windows-x64
→ Processing 9 tool(s): aqua:owenlamont/ryl@0.22.0, biome@2.5.13, editorconfig-checker@4.0.1, npm:renovate@44.69.2, ruff@0.16.6, rumdl@v0.2.70, shfmt@3.14.1, typos@1.50.1, zizmor@1.30.1

�[33mmise�[0m �[33mWARN�[0m  /tmp/renovate/repos/github/prometheus/client_java/mise.lock uses legacy lockfile format version 0; run `mise lock --upgrade` to enable request-specific version bindings
�[2mmise�[0m lock                 biome@2.5.13 linux-arm64-musl
�[2mmise�[0m lock                 biome@2.5.13 linux-x64-musl
�[2mmise�[0m lock                 biome@2.5.13 macos-arm64
�[2mmise�[0m lock                 biome@2.5.13 windows-x64
�[2mmise�[0m lock                 biome@2.5.13 macos-x64
�[2mmise�[0m downloading artifact for lock-time provenance verification: biome-linux-x64
�[2mmise�[0m lock                 editorconfig-checker@4.0.1 linux-arm64-musl
�[2mmise�[0m lock                 editorconfig-checker@4.0.1 linux-arm64
�[2mmise�[0m lock                 npm:renovate@44.69.2 linux-arm64-musl
�[2mmise�[0m lock                 npm:renovate@44.69.2 linux-x64
�[2mmise�[0m lock                 npm:renovate@44.69.2 linux-x64-musl
�[2mmise�[0m lock                 npm:renovate@44.69.2 macos-arm64
�[2mmise�[0m lock                 npm:renovate@44.69.2 macos-x64
�[2mmise�[0m lock                 npm:renovate@44.69.2 windows-x64
�[2mmise�[0m lock                 editorconfig-checker@4.0.1 linux-x64
�[2mmise�[0m lock                 editorconfig-checker@4.0.1 linux-x64-musl
�[2mmise�[0m lock                 npm:renovate@44.69.2 linux-arm64
�[2mmise�[0m lock                 editorconfig-checker@4.0.1 windows-x64
�[2mmise�[0m lock                 editorconfig-checker@4.0.1 macos-arm64
�[2mmise�[0m lock                 editorconfig-checker@4.0.1 macos-x64
�[2mmise�[0m lock                 biome@2.5.13 linux-x64
�[2mmise�[0m lock                 rumdl@v0.2.70 linux-arm64
�[2mmise�[0m downloading artifact for lock-time provenance verification: ruff-x86_64-unknown-linux-gnu.tar.gz
�[2mmise�[0m lock                 ruff@0.16.6 windows-x64
�[2mmise�[0m lock                 ruff@0.16.6 linux-arm64-musl
�[2mmise�[0m lock                 ruff@0.16.6 linux-x64-musl
�[2mmise�[0m lock                 ruff@0.16.6 linux-arm64
�[2mmise�[0m lock                 ruff@0.16.6 macos-x64
�[2mmise�[0m lock                 ruff@0.16.6 linux-x64
�[2mmise�[0m lock                 shfmt@3.14.1 linux-arm64
�[2mmise�[0m lock                 shfmt@3.14.1 linux-x64
�[2mmise�[0m lock                 shfmt@3.14.1 linux-arm64-musl
�[2mmise�[0m lock                 shfmt@3.14.1 linux-x64-musl
�[2mmise�[0m lock                 shfmt@3.14.1 macos-arm64
�[2mmise�[0m lock                 ruff@0.16.6 macos-arm64
�[2mmise�[0m lock                 shfmt@3.14.1 macos-x64
�[2mmise�[0m lock                 rumdl@v0.2.70 linux-arm64-musl
�[2mmise�[0m lock                 shfmt@3.14.1 windows-x64
�[2mmise�[0m lock                 rumdl@v0.2.70 linux-x64-musl
�[2mmise�[0m downloading artifact for lock-time provenance verification: rumdl-v0.2.70-x86_64-unknown-linux-gnu.tar.gz
�[2mmise�[0m lock                 rumdl@v0.2.70 macos-arm64
�[2mmise�[0m lock                 rumdl@v0.2.70 macos-x64
�[2mmise�[0m lock                 rumdl@v0.2.70 linux-x64
�[2mmise�[0m lock                 rumdl@v0.2.70 windows-x64
�[2mmise�[0m lock                 typos@1.50.1 linux-arm64
�[2mmise�[0m lock                 typos@1.50.1 macos-arm64
�[2mmise�[0m lock                 typos@1.50.1 windows-x64
�[2mmise�[0m lock                 typos@1.50.1 linux-x64
�[2mmise�[0m lock                 typos@1.50.1 linux-arm64-musl
�[2mmise�[0m lock                 typos@1.50.1 macos-x64
�[2mmise�[0m lock                 typos@1.50.1 linux-x64-musl
�[2mmise�[0m lock                 zizmor@1.30.1 linux-arm64
�[2mmise�[0m lock                 zizmor@1.30.1 linux-arm64-musl
�[2mmise�[0m lock                 zizmor@1.30.1 linux-x64-musl
�[2mmise�[0m downloading artifact for lock-time provenance verification: zizmor-x86_64-unknown-linux-gnu.tar.gz
�[2mmise�[0m lock                 zizmor@1.30.1 macos-x64
�[2mmise�[0m lock                 zizmor@1.30.1 macos-arm64
�[2mmise�[0m lock                 aqua:owenlamont/ryl@0.22.0 macos-x64
�[2mmise�[0m lock                 zizmor@1.30.1 windows-x64
�[2mmise�[0m lock                 zizmor@1.30.1 linux-x64
�[2mmise�[0m lock                 aqua:owenlamont/ryl@0.22.0 macos-arm64
�[2mmise�[0m lock                 aqua:owenlamont/ryl@0.22.0 linux-arm64
�[2mmise�[0m lock                 aqua:owenlamont/ryl@0.22.0 linux-arm64-musl
�[2mmise�[0m downloading artifact for lock-time provenance verification: ryl-x86_64-unknown-linux-gnu.tar.gz
�[2mmise�[0m lock                 aqua:owenlamont/ryl@0.22.0 windows-x64
�[2mmise�[0m lock                 aqua:owenlamont/ryl@0.22.0 linux-x64-musl
�[2mmise�[0m lock                 biome@2.5.13 linux-arm64
�[2mmise�[0m lock                 aqua:owenlamont/ryl@0.22.0 linux-x64
�[2mmise�[0m lock               �[38;5;10m✓�[0m 48 platform entries
�[31mmise�[0m �[31mERROR�[0m failed to resolve editorconfig-checker@4.0.1 for linux-arm64-musl; refusing to replace locked version(s) 3.11.1 that support this platform
failed to resolve editorconfig-checker@4.0.1 for linux-arm64; refusing to replace locked version(s) 3.11.1 that support this platform
failed to resolve editorconfig-checker@4.0.1 for linux-x64; refusing to replace locked version(s) 3.11.1 that support this platform
failed to resolve editorconfig-checker@4.0.1 for linux-x64-musl; refusing to replace locked version(s) 3.11.1 that support this platform
failed to resolve editorconfig-checker@4.0.1 for windows-x64; refusing to replace locked version(s) 3.11.1 that support this platform
failed to resolve editorconfig-checker@4.0.1 for macos-arm64; refusing to replace locked version(s) 3.11.1 that support this platform
failed to resolve editorconfig-checker@4.0.1 for macos-x64; refusing to replace locked version(s) 3.11.1 that support this platform
�[31mmise�[0m �[31mERROR�[0m Version: 2026.9.4 linux-x64 (2026-09-09)
�[31mmise�[0m �[31mERROR�[0m �[2mRun with --verbose or MISE_VERBOSE=1 for more information�[0m

Command failed: mise lock aqua:owenlamont/ryl biome editorconfig-checker npm:renovate ruff rumdl shfmt typos zizmor
�[33mmise�[0m �[33mWARN�[0m  /tmp/renovate/repos/github/prometheus/client_java/mise.lock uses legacy lockfile format version 0; run `mise lock --upgrade` to enable request-specific version bindings
�[2mmise�[0m lock                 biome@2.5.13 linux-arm64-musl
�[2mmise�[0m lock                 biome@2.5.13 linux-x64-musl
�[2mmise�[0m lock                 biome@2.5.13 macos-arm64
�[2mmise�[0m lock                 biome@2.5.13 windows-x64
�[2mmise�[0m lock                 biome@2.5.13 macos-x64
�[2mmise�[0m downloading artifact for lock-time provenance verification: biome-linux-x64
�[2mmise�[0m lock                 editorconfig-checker@4.0.1 linux-arm64-musl
�[2mmise�[0m lock                 editorconfig-checker@4.0.1 linux-arm64
�[2mmise�[0m lock                 npm:renovate@44.69.2 linux-arm64-musl
�[2mmise�[0m lock                 npm:renovate@44.69.2 linux-x64
�[2mmise�[0m lock                 npm:renovate@44.69.2 linux-x64-musl
�[2mmise�[0m lock                 npm:renovate@44.69.2 macos-arm64
�[2mmise�[0m lock                 npm:renovate@44.69.2 macos-x64
�[2mmise�[0m lock                 npm:renovate@44.69.2 windows-x64
�[2mmise�[0m lock                 editorconfig-checker@4.0.1 linux-x64
�[2mmise�[0m lock                 editorconfig-checker@4.0.1 linux-x64-musl
�[2mmise�[0m lock                 npm:renovate@44.69.2 linux-arm64
�[2mmise�[0m lock                 editorconfig-checker@4.0.1 windows-x64
�[2mmise�[0m lock                 editorconfig-checker@4.0.1 macos-arm64
�[2mmise�[0m lock                 editorconfig-checker@4.0.1 macos-x64
�[2mmise�[0m lock                 biome@2.5.13 linux-x64
�[2mmise�[0m lock                 rumdl@v0.2.70 linux-arm64
�[2mmise�[0m downloading artifact for lock-time provenance verification: ruff-x86_64-unknown-linux-gnu.tar.gz
�[2mmise�[0m lock                 ruff@0.16.6 windows-x64
�[2mmise�[0m lock                 ruff@0.16.6 linux-arm64-musl
�[2mmise�[0m lock                 ruff@0.16.6 linux-x64-musl
�[2mmise�[0m lock                 ruff@0.16.6 linux-arm64
�[2mmise�[0m lock                 ruff@0.16.6 macos-x64
�[2mmise�[0m lock                 ruff@0.16.6 linux-x64
�[2mmise�[0m lock                 shfmt@3.14.1 linux-arm64
�[2mmise�[0m lock                 shfmt@3.14.1 linux-x64
�[2mmise�[0m lock                 shfmt@3.14.1 linux-arm64-musl
�[2mmise�[0m lock                 shfmt@3.14.1 linux-x64-musl
�[2mmise�[0m lock                 shfmt@3.14.1 macos-arm64
�[2mmise�[0m lock                 ruff@0.16.6 macos-arm64
�[2mmise�[0m lock                 shfmt@3.14.1 macos-x64
�[2mmise�[0m lock                 rumdl@v0.2.70 linux-arm64-musl
�[2mmise�[0m lock                 shfmt@3.14.1 windows-x64
�[2mmise�[0m lock                 rumdl@v0.2.70 linux-x64-musl
�[2mmise�[0m downloading artifact for lock-time provenance verification: rumdl-v0.2.70-x86_64-unknown-linux-gnu.tar.gz
�[2mmise�[0m lock                 rumdl@v0.2.70 macos-arm64
�[2mmise�[0m lock                 rumdl@v0.2.70 macos-x64
�[2mmise�[0m lock                 rumdl@v0.2.70 linux-x64
�[2mmise�[0m lock                 rumdl@v0.2.70 windows-x64
�[2mmise�[0m lock                 typos@1.50.1 linux-arm64
�[2mmise�[0m lock                 typos@1.50.1 macos-arm64
�[2mmise�[0m lock                 typos@1.50.1 windows-x64
�[2mmise�[0m lock                 typos@1.50.1 linux-x64
�[2mmise�[0m lock                 typos@1.50.1 linux-arm64-musl
�[2mmise�[0m lock                 typos@1.50.1 macos-x64
�[2mmise�[0m lock                 typos@1.50.1 linux-x64-musl
�[2mmise�[0m lock                 zizmor@1.30.1 linux-arm64
�[2mmise�[0m lock                 zizmor@1.30.1 linux-arm64-musl
�[2mmise�[0m lock                 zizmor@1.30.1 linux-x64-musl
�[2mmise�[0m downloading artifact for lock-time provenance verification: zizmor-x86_64-unknown-linux-gnu.tar.gz
�[2mmise�[0m lock                 zizmor@1.30.1 macos-x64
�[2mmise�[0m lock                 zizmor@1.30.1 macos-arm64
�[2mmise�[0m lock                 aqua:owenlamont/ryl@0.22.0 macos-x64
�[2mmise�[0m lock                 zizmor@1.30.1 windows-x64
�[2mmise�[0m lock                 zizmor@1.30.1 linux-x64
�[2mmise�[0m lock                 aqua:owenlamont/ryl@0.22.0 macos-arm64
�[2mmise�[0m lock                 aqua:owenlamont/ryl@0.22.0 linux-arm64
�[2mmise�[0m lock                 aqua:owenlamont/ryl@0.22.0 linux-arm64-musl
�[2mmise�[0m downloading artifact for lock-time provenance verification: ryl-x86_64-unknown-linux-gnu.tar.gz
�[2mmise�[0m lock                 aqua:owenlamont/ryl@0.22.0 windows-x64
�[2mmise�[0m lock                 aqua:owenlamont/ryl@0.22.0 linux-x64-musl
�[2mmise�[0m lock                 biome@2.5.13 linux-arm64
�[2mmise�[0m lock                 aqua:owenlamont/ryl@0.22.0 linux-x64
�[2mmise�[0m lock               �[38;5;10m✓�[0m 48 platform entries
�[31mmise�[0m �[31mERROR�[0m failed to resolve editorconfig-checker@4.0.1 for linux-arm64-musl; refusing to replace locked version(s) 3.11.1 that support this platform
failed to resolve editorconfig-checker@4.0.1 for linux-arm64; refusing to replace locked version(s) 3.11.1 that support this platform
failed to resolve editorconfig-checker@4.0.1 for linux-x64; refusing to replace locked version(s) 3.11.1 that support this platform
failed to resolve editorconfig-checker@4.0.1 for linux-x64-musl; refusing to replace locked version(s) 3.11.1 that support this platform
failed to resolve editorconfig-checker@4.0.1 for windows-x64; refusing to replace locked version(s) 3.11.1 that support this platform
failed to resolve editorconfig-checker@4.0.1 for macos-arm64; refusing to replace locked version(s) 3.11.1 that support this platform
failed to resolve editorconfig-checker@4.0.1 for macos-x64; refusing to replace locked version(s) 3.11.1 that support this platform
�[31mmise�[0m �[31mERROR�[0m Version: 2026.9.4 linux-x64 (2026-09-09)
�[31mmise�[0m �[31mERROR�[0m �[2mRun with --verbose or MISE_VERBOSE=1 for more information�[0m

@renovate
renovate Bot force-pushed the renovate/linters branch 15 times, most recently from 221fa6e to b6b9a0a Compare September 6, 2026 20:45
@renovate
renovate Bot force-pushed the renovate/linters branch 7 times, most recently from bee6d07 to 33082a3 Compare September 9, 2026 19:57
@renovate
renovate Bot force-pushed the renovate/linters branch from 33082a3 to 4b7edc1 Compare September 10, 2026 16:35
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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants