Skip to content

build(dev): update all non-major dependencies - #377

Open
mrbro-bot[bot] wants to merge 1 commit into
mainfrom
renovate/all-minor-patch
Open

build(dev): update all non-major dependencies#377
mrbro-bot[bot] wants to merge 1 commit into
mainfrom
renovate/all-minor-patch

Conversation

@mrbro-bot

@mrbro-bot mrbro-bot Bot commented Aug 24, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence OpenSSF Code Search Type Update Pending
@biomejs/biome (source) 2.5.92.5.10 age confidence OpenSSF Scorecard GitHub Code Search for "@biomejs/biome" devDependencies patch
@​opencode-ai/plugin 1.18.191.18.21 age confidence GitHub Code Search for "@opencode-ai/plugin" devDependencies patch 1.18.23 (+1)
@types/bun (source) 1.3.141.4.0 age confidence OpenSSF Scorecard GitHub Code Search for "@types/bun" devDependencies minor
bfra-me/.github v4.19.0v4.20.0 age confidence OpenSSF Scorecard GitHub Code Search for "bfra-me/.github" action minor
jdx/mise-action v4.2.5v4.3.0 age confidence OpenSSF Scorecard GitHub Code Search for "jdx/mise-action" action minor
npm:opencode-ai 1.18.191.18.21 age confidence GitHub Code Search for "npm:opencode-ai" tools patch 1.18.23 (+1)

Release Notes

biomejs/biome (@​biomejs/biome)

v2.5.10

Compare Source

Patch Changes
  • #​11403 8f7786f Thanks @​Princesseuh! - Fixed Astro rejecting JavaScript comments between attributes.

    <div /* block comment */ class="something"></div>
    <Component /* c */ client:load />
  • #​11403 8f7786f Thanks @​Princesseuh! - Fixed a bare < in Astro text being treated as the start of a tag, such as <p>5 < 6 and 7 > 6</p>. As in HTML, a < that cannot open a tag is text and needs no escaping.

  • #​11438 3133ffa Thanks @​Princesseuh! - Fixed #​8294: an Astro expression holding only a comment is no longer reported as a parse error, which also stopped the whole file from being formatted.

    <div>{/* a note */}</div>
    <div class={/* a note */}>x</div>
  • #​11403 8f7786f Thanks @​Princesseuh! - Fixed #​9165: an empty Astro expression such as <div>{}</div> no longer fails to parse. Astro renders {} as nothing.

  • #​11403 8f7786f Thanks @​Princesseuh! - Fixed Astro expressions containing a comment failing to parse.

    <div>{/* block comment */ x}</div>
    <div>{/* only a comment */}</div>
  • #​11403 8f7786f Thanks @​Princesseuh! - Added support for Astro's fragment shorthand.

    <>
      <p>a</p>
    </>
  • #​11403 8f7786f Thanks @​Princesseuh! - Fixed an Astro frontmatter block being cut short by a closing tag inside a string or comment.

    ---
    const a = "</script>";
    // </script> in a comment
    ---
  • #​11403 8f7786f Thanks @​Princesseuh! - Fixed --- being read as an Astro frontmatter fence when markup precedes it. Astro only recognizes frontmatter at the very start of a file, so a file opening with a comment now has no frontmatter, and its --- lines are content.

    <!-- c -->
    ---
    this is text, not frontmatter
    ---
  • #​11403 8f7786f Thanks @​Princesseuh! - Fixed an Astro frontmatter block ending early on a line that merely starts with a dash.

    ---
    --count;
    ---
  • #​11403 8f7786f Thanks @​Princesseuh! - Fixed the children of an Astro element carrying is:raw being parsed as markup instead of raw text. This now also covers <script> and <style>, whose contents Astro emits verbatim rather than processing, so they are no longer linted as JavaScript or CSS.

    <article is:raw><% awesome %></article>
    <script is:raw>{{ mustache }}</script>
  • #​11403 8f7786f Thanks @​Princesseuh! - Fixed Astro rejecting attribute names that start with a colon, such as :href.

  • #​11403 8f7786f Thanks @​Princesseuh! - Fixed the Astro parser failing to recover from a malformed closing tag such as <div></{<//, so that a later mistake is reported where it happens rather than cascading.

  • #​11403 8f7786f Thanks @​Princesseuh! - Fixed { inside an Astro <math> element opening an expression. MathML is foreign content where Astro parses no expressions, so LaTeX such as R^{2x} now survives as text. <svg> is unaffected.

  • #​11403 8f7786f Thanks @​Princesseuh! - Fixed {{ at the start of an Astro expression being read as an interpolation. Astro has no {{ }} syntax, so {{ a: 1 }} and <Comp a={{ b: 1 }} /> are object literals.

  • #​11403 8f7786f Thanks @​Princesseuh! - Fixed expressions inside an Astro <pre> or <textarea> being read as raw text. Astro parses both as ordinary elements, so their markup and interpolations are now parsed, and a variable used only inside one is no longer reported as unused.

    <pre>{value}</pre>
    <textarea><div>{value}</div></textarea>
  • #​11403 8f7786f Thanks @​Princesseuh! - Added support for template literal attribute values in Astro, such as <div class=`a ${b} c`>.

  • #​11403 8f7786f Thanks @​Princesseuh! - Fixed Astro rejecting HTML5 unquoted attribute values that contain `, =, ' or ", such as <a href=a=b> and <a href=a'b>.

  • #​11393 dec5a8f Thanks @​1678092075! - Fixed #​11207: useStrictMode no longer reports Vue event handlers such as @click="count++".

  • #​11431 c065f99 Thanks @​levrik! - Fixed #​11429: Variables and imports used by Vue same-name bindings such as :disabled or v-bind:disabled are no longer reported as unused.

  • #​11409 405dedb Thanks @​ematipico! - Fixed a memory leak in the LSP server where memory usage kept growing over long editor sessions.

  • #​11422 a51eff7 Thanks @​dyc3! - Fixed #​11416: Biome no longer crashes when parsing incomplete {let} or {const} declarations in Svelte files.

  • #​11378 34b715c Thanks @​Netail! - Added extra rule sources from @eslint/css. biome migrate eslint detects rules in your eslint configurations more reliably.

  • #​11403 8f7786f Thanks @​Princesseuh! - Fixed {#, {/, {: and {@ being read as Svelte block openings in every HTML-like file. They are now Svelte-only, so in HTML, Vue and Angular files a sequence such as {#if x} is ordinary text instead of a parse error.

  • #​11443 8d45229 Thanks @​ematipico! - Fixed #​11390: noFloatingPromises no longer performs unnecessary type inference on call arguments when checking methods of non-generic class instances created with new.

  • #​11425 9c2667b Thanks @​dyc3! - Fixed #​6426: GritQL plugins now match and rewrite metavariables embedded in quoted strings.

  • #​11441 00317c3 Thanks @​dyc3! - Improved performance of useNamedCaptureGroup, noMisplacedAssertion, noSkippedTests, noExportsInTest, noDuplicateTestHooks, noIdenticalTestTitle, useTestHooksInOrder, and useTestHooksOnTop.

bfra-me/.github (bfra-me/.github)

v4.20.0

Compare Source

Minor Changes
  • Update GitHub Actions workflow dependency fro-bot/agent from 0.102.0 to 0.103.0 (#​2608)

  • Update GitHub Actions workflow dependency fro-bot/agent from 0.103.0 to 0.104.0 (#​2609)

  • Update GitHub Actions workflow dependency fro-bot/agent from 0.101.0 to 0.102.0 (#​2607)

Patch Changes
  • Update npm dependency vite from 8.2.1 to 8.2.2 (#​2610)

    Multi-package update across 1 packages.

  • Update npm dependency @bfra.me/eslint-config from 0.51.1 to 0.51.2 (#​2611)

    Multi-package update across 1 packages.

  • Update GitHub Actions workflow dependency github/codeql-action from 4.37.7 to 4.37.8 (#​2604)

  • Group update for npm dependencies: @vitest/coverage-v8, vitest (#​2606)

    Multi-package update across 1 packages.

  • Update npm dependency @bfra.me/prettier-config from 0.16.9 to 0.16.10 (#​2612)

    Multi-package update across 1 packages.

jdx/mise-action (jdx/mise-action)

v4.3.0: : Install age-filtered mise releases

Compare Source

A small release that adds an opt-in way to hold back from installing brand-new mise releases.

Added

minimum_release_age input (#​604 by @​jdx)

When version is omitted, you can now set minimum_release_age to install the newest stable, non-draft mise release that is older than a given cutoff — a simple way to avoid picking up a mise release the moment it ships (closes #​603).

- uses: jdx/mise-action@v4
  with:
    minimum_release_age: 7d

It accepts relative durations (24h, 7d, 6mo, 1y) as well as absolute ISO dates and timestamps. Age-filtered versions are resolved from the GitHub Releases API (the CDN only serves the latest binary) and downloaded by their exact version. If mise is already present on disk, an age-filtered run updates it to the resolved version rather than keeping the existing binary. An explicit version always takes precedence over minimum_release_age, and invalid dates fail fast.

Full Changelog: jdx/mise-action@v4.2.5...v4.3.0


Configuration

📅 Schedule: (in timezone America/Phoenix)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, 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 has been generated by Mend Renovate CLI.

@mrbro-bot mrbro-bot Bot added automerge Automated merge approved dependencies Dependency updates or security alerts devDependencies github-actions GitHub Actions workflows minor Minor version changes renovate Renovate bot updates labels Aug 24, 2026
@mrbro-bot
mrbro-bot Bot enabled auto-merge (squash) August 24, 2026 00:41
@mrbro-bot
mrbro-bot Bot requested a review from marcusrbrown August 24, 2026 00:41
@mrbro-bot

mrbro-bot Bot commented Aug 24, 2026

Copy link
Copy Markdown
Contributor Author

⚠️ Artifact update problem

Renovate failed to update artifacts 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: bun.lock
Command failed: install-tool bun 1.4.0

File name: undefined
Command failed: bun run build
$ bun run clean && bun scripts/build.ts && tsc --emitDeclarationOnly --noEmit false
$ rimraf dist

@mrbro-bot
mrbro-bot Bot force-pushed the renovate/all-minor-patch branch from b0d9449 to 7fea8a9 Compare August 24, 2026 08:49
@mrbro-bot mrbro-bot Bot changed the title chore(dev): update all non-major dependencies build(dev): update all non-major dependencies Aug 24, 2026
@fro-bot fro-bot mentioned this pull request Aug 24, 2026
68 tasks
@mrbro-bot
mrbro-bot Bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 27652ea to 4d71bf3 Compare August 24, 2026 20:32
@mrbro-bot
mrbro-bot Bot force-pushed the renovate/all-minor-patch branch from 4d71bf3 to a9486d1 Compare August 25, 2026 12:32
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

automerge Automated merge approved dependencies Dependency updates or security alerts github-actions GitHub Actions workflows minor Minor version changes renovate Renovate bot updates

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant