Skip to content

chore(deps): migrate recharts to v3 across all three workspaces - #9878

Merged
loopover-orb[bot] merged 1 commit into
mainfrom
chore/deps-esbuild-kit-8609
Jul 29, 2026
Merged

chore(deps): migrate recharts to v3 across all three workspaces#9878
loopover-orb[bot] merged 1 commit into
mainfrom
chore/deps-esbuild-kit-8609

Conversation

@JSONbored

Copy link
Copy Markdown
Owner

Closes #8610.

Scope correction

The issue described recharts as "a direct UI dependency (apps/loopover-ui/package.json)". It is actually declared in three workspaces:

Workspace Before After
apps/loopover-ui ^2.15.4 ^3.10.1
apps/loopover-miner-ui ^2.15.4 ^3.10.1
packages/loopover-ui-kit (published) ^2.15.4 ^3.10.1

Bumping only the one named would have left two majors resolved in the same tree — a worse problem than the warning it fixes: two copies bundled, and the published ui-kit's chart primitives drifting from the app's. The lockfile now resolves exactly one version.

Three real v3 breaks

Each fixed by reading the library's own exported types rather than restating them locally, so the next such change is a compile error instead of silent drift:

  1. Line's dot render prop (sparkline.tsx) — v3 widened key from string to React's Key, which the hand-written parameter annotation silently disagreed with. The props are derived from Line's own signature now.
  2. Tooltip / Legend content (ui-kit/chart.tsx) — v3 moved payload and label off the components' props (they are read from context) and publishes TooltipContentProps / LegendPayload for the render-prop shape.
  3. A React key taken from item.dataKey — v3 lets dataKey be a function accessor, which is not a valid key. The correct string was already computed two lines above and is used instead.

The sparkline had no test

Which is a poor place to be for a chart-library major bump: a type-clean upgrade that renders nothing looks exactly like a passing build. It has one now, asserting a line path is actually drawn, that an all-null series renders nothing rather than a flat line at zero, and that a partial-null series still renders (the connectNulls={false} gap is the "insufficient data" signal).

ResponsiveContainer measures its parent and jsdom reports 0×0 for everything, so the component's own fixed pixel box is stubbed in the harness — without that recharts correctly draws nothing and every assertion would pass vacuously. Verified by mutation: forcing the early return kills 3 of the 4 cases.

Validation

  • 1,057 UI tests pass (650 + 407), ui:typecheck clean, ui:lint 0 errors, ui:build and the miner-UI build clean.
  • test:ui-kit-pack clean (161 files) — the published package still packs.
  • npm audit --audit-level=moderate: 0 vulnerabilities.
  • The deprecation warning is gone from a clean npm ci. The two @esbuild-kit/* warnings that remain are Trace and replace the @esbuild-kit/* transitive dependency (merged into tsx upstream) #8609's, which is blocked upstream — analysis posted there.

No visual evidence table: this is a library migration with no intended visual change, and the sparkline is a 64×28px axis-less glyph. The new tests assert the render output directly instead.

The issue named apps/loopover-ui, but THREE workspaces depended on recharts --
apps/loopover-ui, apps/loopover-miner-ui, and the published @loopover/ui-kit.
Bumping only one would have left two majors resolved in the same tree, which is a
worse problem than the deprecation warning: two copies bundled, and ui-kit's charts
drifting from the app's.

Three real v3 breaks, each fixed by reading the library's own types rather than
re-stating them locally:

- Line's `dot` render prop: v3 widened `key` from string to React's Key, which the
  hand-written param annotation silently disagreed with. The props are derived from
  Line's own signature now.
- Tooltip/Legend content: v3 moved `payload`/`label` off the components' props (they
  are read from context) and publishes TooltipContentProps / LegendPayload for the
  render-prop shape.
- A React key taken from `item.dataKey`, which v3 lets be a FUNCTION accessor. The
  correct string was already computed two lines above.

The sparkline had no test at all, which is a poor place to be for a chart-library
major: a type-clean upgrade that renders nothing looks exactly like a passing build.
It has one now, asserting a line is actually drawn -- verified by mutation, which
kills 3 of the 4 cases.
@loopover-orb

loopover-orb Bot commented Jul 29, 2026

Copy link
Copy Markdown
Contributor

Tip

✅ LoopOver review result - approve/merge recommended

Review updated: 2026-07-29 18:37:59 UTC

7 files · 1 AI reviewer · no blockers · readiness 95/100 · CI green · clean

✅ Suggested Action - Approve/Merge

  • safe to merge

Review summary
This is a well-executed major-version bump of recharts (2.15.4 → 3.10.1) across all three workspaces where it's declared, correcting the referenced issue's narrower scope (which named only one workspace) to avoid resolving two majors in the same tree. It fixes three real v3 API breaks (Tooltip/Legend props moving to context, a function-valued `dataKey` no longer being a valid React key, and a widened `dot` render-prop `key` type) by deriving types from recharts' own exports rather than hand-restating them, and adds a previously-missing sparkline render test that would have caught a silent 'type-checks but draws nothing' regression. The lockfile diff is consistent with the manifest bumps across all three workspaces, and CI is green.

Nits — 4 non-blocking
  • packages/loopover-ui-kit/src/components/chart.tsx: the `ChartLegendContent` prop-type diff nests `{ payload?...; verticalAlign?... } & { hideIcon?...; nameKey?... }` with inconsistent indentation across the two object literals — worth collapsing into one intersected object for readability.
  • apps/loopover-ui/src/components/site/sparkline.tsx: `LineDotProps` derivation via `Extract<..., (props: never) => unknown>` is a clever but non-obvious pattern — the inline comment helps, but a one-line note on why `never` (contravariant extraction) rather than `unknown` would save the next reader a lookup.
  • Consider adding a brief CHANGELOG/README note in packages/loopover-ui-kit about the recharts v2→v3 bump since it's a published package and downstream consumers of `ChartTooltipContent`/`ChartLegendContent` types will see a type signature change.
  • The new sparkline.test.tsx's `getBoundingClientRect` stub/restore pattern (packages/loopover-ui-kit or apps/loopover-ui/src/components/site/sparkline.test.tsx) is reusable for any future recharts-based component test — worth extracting to a shared test helper if a second chart gets tested.

Decision drivers

  • ✅ Code review — No blockers (1 reviewer)
  • ✅ Gate result — Passing (No configured blocker found.)
Context & advisory signals — never blocks the verdict
Signal Result Evidence
Linked issue ✅ Linked #8610
Related work ✅ No active overlap found No same-issue or scoped active PR overlap found.
Change scope ✅ 20/20 Low review scope from cached public metadata (1 linked issue).
Validation posture ✅ 25/25 PR body includes validation/test evidence.
Contributor workload ✅ 10/10 Author activity: 14 registered-repo PR(s), 13 merged, 334 issue(s).
Contributor context ✅ Confirmed Gittensor contributor JSONbored; Gittensor profile; 14 PR(s), 334 issue(s).
Improvement ✅ Minor risk: clean · value: minor · LLM: significant
Linked issue satisfaction

Partially addressed
The PR bumps recharts to v3 across all three workspaces and fixes real breaking API changes (Tooltip/Legend context props, dot key typing, dataKey-as-function key issue) plus adds a new test for the sparkline, directly addressing most of the issue's checklist items, but it provides no before/after screenshot evidence for the visual regression check the issue explicitly requires and doesn't mention

Review context
  • Author: JSONbored
  • Role context: owner (maintainer lane)
  • Public audience mode: oss maintainer
  • Lane context: Repository is registered but has no active allocation in the current snapshot.
  • Public profile languages: not available
  • Official Gittensor activity: 14 PR(s), 334 issue(s).
  • PR-specific overlap: none found.
Contributor next steps
  • Start here: Treat this as maintainer-lane context rather than normal contributor-lane activity.
  • Then work through the remaining 2 steps in the Signals table above.
Signal definitions
  • Related work = same linked issue, overlapping active PRs, or title/path similarity.
  • Change scope = cached public metadata such as size labels, draft state, and review-burden hints.
  • Validation posture = whether the PR provides enough public validation/test evidence for maintainer review.
  • Contributor workload = public contributor activity and cleanup pressure, not a repo-wide quality failure.
  • Contributor context = public GitHub/Gittensor identity context; non-Gittensor status is not a blocker.
🧪 Chat with LoopOver

Ask LoopOver a question about this PR directly in a comment — grounded only in the same cached, public-safe facts shown above, never a new claim.

  • @loopover ask &lt;question&gt; answers contribution-quality Q&A with source citations and freshness.
  • @loopover chat &lt;question&gt; answers in natural prose from cached decision-pack facts via local inference (maintainer/collaborator; read-only).
  • A plain-language @loopover mention with a real question is routed to the closest matching read-only command automatically — no exact syntax required.

Full command reference: https://loopover.ai/docs/loopover-commands

🧪 Experimental — new and may change.

Visual preview
Route Viewport Before (production) After (this PR's preview) Diff
/ desktop before /
before /
after /
after /
/ mobile before / (mobile)
before / (mobile)
after / (mobile)
after / (mobile)

Click any thumbnail to open the full-size screenshot. Before = production · After = this PR's preview deploy.

Scroll preview
Route Before (production) After (this PR's preview)
/ before / (scroll)
before / (scroll)
after / (scroll)
after / (scroll)

A short scroll-through clip (desktop) — click either thumbnail to open the full animation. Evidence for scroll-linked behavior a single screenshot can't show.

🟩 Safe / merged · 🟦 Advisory · 🟨 Held for review · 🟥 Blocked / closed


💰 Earn for open-source contributions like this. Gittensor lets GitHub contributors earn for the work they already do — register to start earning →.

Checked by LoopOver, a quiet PR intelligence layer for OSS maintainers.

  • Re-run LoopOver review

@superagent-security

Copy link
Copy Markdown
Contributor

Superagent didn't find any vulnerabilities or security issues in this PR.

@cloudflare-workers-and-pages

Copy link
Copy Markdown

Deploying with  Cloudflare Workers  Cloudflare Workers

The latest updates on your project. Learn more about integrating Git with Workers.

Status Name Latest Commit Preview URL Updated (UTC)
✅ Deployment successful!
View logs
loopover-ui 3af8979 Commit Preview URL

Branch Preview URL
Jul 29 2026, 06:16 PM

@codecov

codecov Bot commented Jul 29, 2026

Copy link
Copy Markdown

Bundle Report

Changes will decrease total bundle size by 93.56kB (-1.18%) ⬇️. This is within the configured threshold ✅

Detailed changes
Bundle name Size Change
loopover-ui 7.82MB -93.56kB (-1.18%) ⬇️

Affected Assets, Files, and Routes:

view changes for bundle: loopover-ui

Assets Changed:

Asset Name Size Change Total Size Change (%)
assets/add-scalar-classes-BVOO8KZ6.js (New) 2.16MB 2.16MB 100.0% 🚀
assets/tanstack-vendor-DmuOBTK_.js (New) 930.54kB 930.54kB 100.0% 🚀
assets/docs.fumadocs-spike-api-reference-BiYizERa.js (New) 443.45kB 443.45kB 100.0% 🚀
assets/charts-vendor-CcAPoEeQ.js (New) 290.77kB 290.77kB 100.0% 🚀
assets/AgentScalarChatInterface.vue-CR-HVJw_.js (New) 201.7kB 201.7kB 100.0% 🚀
assets/react-vendor-BbFKED--.js (New) 189.49kB 189.49kB 100.0% 🚀
assets/modal-Bh2Pstju.js (New) 184.5kB 184.5kB 100.0% 🚀
assets/client-C5pmRngj.js (New) 151.47kB 151.47kB 100.0% 🚀
assets/self-hosting-operations-jdhwnSpO.js (New) 134.31kB 134.31kB 100.0% 🚀
assets/motion-vendor-THGzLkD2.js (New) 125.39kB 125.39kB 100.0% 🚀
assets/self-hosting-configuration-DwCFaekz.js (New) 116.4kB 116.4kB 100.0% 🚀
assets/maintainer-panel-vRgZejj6.js (New) 78.96kB 78.96kB 100.0% 🚀
assets/tuning-CZsAIqlr.js (New) 67.35kB 67.35kB 100.0% 🚀
assets/what-you-can-verify-we6EqhJX.js (New) 61.2kB 61.2kB 100.0% 🚀
assets/self-hosting-release-checklist-CL3IrDTy.js (New) 51.82kB 51.82kB 100.0% 🚀
assets/verify-this-review-33S95RSl.js (New) 50.91kB 50.91kB 100.0% 🚀
assets/backtest-calibration-BkI7CUDI.js (New) 46.46kB 46.46kB 100.0% 🚀
assets/self-hosting-security-Bfk-kWq9.js (New) 44.97kB 44.97kB 100.0% 🚀
assets/routes-BwZanfho.js (New) 36.41kB 36.41kB 100.0% 🚀
assets/github-app-DI9JRtvp.js (New) 36.16kB 36.16kB 100.0% 🚀
assets/self-hosting-troubleshooting-D77WSh4l.js (New) 33.56kB 33.56kB 100.0% 🚀
assets/how-reviews-work-B4I9Ivku.js (New) 33.09kB 33.09kB 100.0% 🚀
assets/self-hosting-github-app-DfVHqnrm.js (New) 32.96kB 32.96kB 100.0% 🚀
assets/ams-operations-runbook-DzO-4592.js (New) 30.02kB 30.02kB 100.0% 🚀
assets/ams-deployment-CF1MBS0g.js (New) 28.59kB 28.59kB 100.0% 🚀
assets/owner-panel-DyLfvX3b.js (New) 28.18kB 28.18kB 100.0% 🚀
assets/maintainer-self-hosting-DeI66YCt.js (New) 27.91kB 27.91kB 100.0% 🚀
assets/app-DGZRE2ek.js (New) 25.82kB 25.82kB 100.0% 🚀
assets/ams-discovery-plane-CcSBdqwX.js (New) 25.18kB 25.18kB 100.0% 🚀
assets/privacy-security-DhEa8Pk4.js (New) 24.82kB 24.82kB 100.0% 🚀
assets/ui-vendor-BkoA_Smn.js (New) 24.57kB 24.57kB 100.0% 🚀
assets/ams-config-precedence-dtrTQTy_.js (New) 24.19kB 24.19kB 100.0% 🚀
assets/self-hosting-quickstart-BAqMRwqJ.js (New) 24.1kB 24.1kB 100.0% 🚀
assets/ams-kill-switch-incident-MSHDckf7.js (New) 23.44kB 23.44kB 100.0% 🚀
assets/miner-panel-biMAstHf.js (New) 20.24kB 20.24kB 100.0% 🚀
assets/app.runs-84M0G1fA.js (New) 20.22kB 20.22kB 100.0% 🚀
assets/ams-observability-Xj0N10hl.js (New) 20.08kB 20.08kB 100.0% 🚀
assets/ams-goal-spec-Dpo-MoO8.js (New) 19.77kB 19.77kB 100.0% 🚀
assets/self-hosting-backup-scaling-DHHj1VkB.js (New) 18.95kB 18.95kB 100.0% 🚀
assets/federated-fleet-intelligence-BwSKaYxu.js (New) 18.7kB 18.7kB 100.0% 🚀
assets/maintainer-install-trust-sa_WkEVZ.js (New) 18.03kB 18.03kB 100.0% 🚀
assets/beta-onboarding-Btra-9kf.js (New) 17.65kB 17.65kB 100.0% 🚀
assets/api._op-C-KbGH_o.js (New) 17.54kB 17.54kB 100.0% 🚀
assets/self-hosting-docs-audit-BbUViMf-.js (New) 16.6kB 16.6kB 100.0% 🚀
assets/self-hosting-rees-CJsRU-74.js (New) 15.65kB 15.65kB 100.0% 🚀
assets/docs._slug-Dt66RhOu.js (New) 15.63kB 15.63kB 100.0% 🚀
assets/miner-quickstart-_UCI1Q6_.js (New) 15.62kB 15.62kB 100.0% 🚀
assets/self-hosting-ai-providers-DW4Nish9.js (New) 15.52kB 15.52kB 100.0% 🚀
assets/mcp-clients-BFfZPUpp.js (New) 14.54kB 14.54kB 100.0% 🚀
assets/playground-panel-BCXho-F6.js (New) 14.42kB 14.42kB 100.0% 🚀
assets/ams-sizing-CSKUjOej.js (New) 14.17kB 14.17kB 100.0% 🚀
assets/owner-checklist-CvlJYXzU.js (New) 14.12kB 14.12kB 100.0% 🚀
assets/fairness-kjOE3asl.js (New) 13.98kB 13.98kB 100.0% 🚀
assets/self-hosting-unified-ams-orb-C2EM11SP.js (New) 12.04kB 12.04kB 100.0% 🚀
assets/self-hosting-releases-OIMVvnvg.js (New) 12.03kB 12.03kB 100.0% 🚀
assets/ams-unattended-scheduling-CmFBc05c.js (New) 11.58kB 11.58kB 100.0% 🚀
assets/label-policy-BBNS6y7Y.js (New) 11.51kB 11.51kB 100.0% 🚀
assets/miner-coding-agent-Kz2bi4CD.js (New) 11.38kB 11.38kB 100.0% 🚀
assets/capacity-dWQ2po0o.js (New) 10.51kB 10.51kB 100.0% 🚀
assets/troubleshooting-BvtGF1Tk.js (New) 10.34kB 10.34kB 100.0% 🚀
assets/app.audit-BjdQsFXs.js (New) 10.22kB 10.22kB 100.0% 🚀
assets/app.config-generator-BgZxTfTv.js (New) 10.06kB 10.06kB 100.0% 🚀
assets/scoreability-OCOaRii1.js (New) 8.28kB 8.28kB 100.0% 🚀
assets/self-hosting-rees-analyzers-BFDa3uBQ.js (New) 8.25kB 8.25kB 100.0% 🚀
assets/maintainers-CXA9epZe.js (New) 8.06kB 8.06kB 100.0% 🚀
assets/miners-BxCTDCPB.js (New) 7.91kB 7.91kB 100.0% 🚀
assets/self-hosting-rag-CxRS_Rof.js (New) 7.77kB 7.77kB 100.0% 🚀
assets/agents-DUIRFYWm.js (New) 7.74kB 7.74kB 100.0% 🚀
assets/ams-fleet-manifest-cEJPlg_G.js (New) 7.39kB 7.39kB 100.0% 🚀
assets/ams-env-reference-39xo9xWm.js (New) 7.12kB 7.12kB 100.0% 🚀
assets/commands-panel-Xx6qPoXO.js (New) 6.74kB 6.74kB 100.0% 🚀
assets/maintainer-workflow-D3gjtL4a.js (New) 6.52kB 6.52kB 100.0% 🚀
assets/ai-summaries-C9qii1GE.js (New) 6.46kB 6.46kB 100.0% 🚀
assets/digest-panel-KrzEtSjo.js (New) 6.15kB 6.15kB 100.0% 🚀
assets/repos._owner._repo.quality-DXNWL9vt.js (New) 6.14kB 6.14kB 100.0% 🚀
assets/docs-nav-Dlne7qtC.js (New) 6.06kB 6.06kB 100.0% 🚀
assets/docs.index-DVYKFvua.js (New) 5.95kB 5.95kB 100.0% 🚀
assets/loopover-commands-1GsPEE2-.js (New) 5.31kB 5.31kB 100.0% 🚀
assets/branch-analysis-BkHtPQ2O.js (New) 5.29kB 5.29kB 100.0% 🚀
assets/miner-workflow-CO28ozt0.js (New) 4.91kB 4.91kB 100.0% 🚀
assets/api.index-BqPKFY23.js (New) 4.7kB 4.7kB 100.0% 🚀
assets/quickstart-B62b00Qx.js (New) 4.32kB 4.32kB 100.0% 🚀
assets/upstream-drift-t1jJXvGv.js (New) 3.97kB 3.97kB 100.0% 🚀
assets/docs-BCFa6nrX.js (New) 2.93kB 2.93kB 100.0% 🚀
assets/api-DsBuOqvW.js (New) 2.69kB 2.69kB 100.0% 🚀
assets/docs-page-CRosj20q.js (New) 2.1kB 2.1kB 100.0% 🚀
assets/table-*.js (New) 1.75kB 1.75kB 100.0% 🚀
assets/app.workbench-Buj0vVLe.js (New) 1.58kB 1.58kB 100.0% 🚀
assets/tabs-BLdwhlny.js (New) 1.39kB 1.39kB 100.0% 🚀
assets/app.repos-ByM9x7fk.js (New) 1.07kB 1.07kB 100.0% 🚀
assets/input-CtHp3gJ-.js (New) 796 bytes 796 bytes 100.0% 🚀
assets/file-cog-WM4pdav3.js (New) 758 bytes 758 bytes 100.0% 🚀
assets/app.maintainer-YKFs9i-4.js (New) 502 bytes 502 bytes 100.0% 🚀
assets/app.owner-BPDtHB9-.js (New) 474 bytes 474 bytes 100.0% 🚀
assets/app.commands-DTq6Y8-J.js (New) 455 bytes 455 bytes 100.0% 🚀
assets/app.playground-DH2wJ6HC.js (New) 442 bytes 442 bytes 100.0% 🚀
assets/index-o3HIfNF1.js (New) 438 bytes 438 bytes 100.0% 🚀
assets/app.digest-CHEACfD6.js (New) 430 bytes 430 bytes 100.0% 🚀
assets/eye-off-CfGEIM62.js (New) 430 bytes 430 bytes 100.0% 🚀
assets/app.miner-CtNuUgiU.js (New) 422 bytes 422 bytes 100.0% 🚀
assets/key-round-CAbiFXWv.js (New) 355 bytes 355 bytes 100.0% 🚀
assets/bot-D78XDSDo.js (New) 328 bytes 328 bytes 100.0% 🚀
assets/trash-2-DfEUBnNF.js (New) 328 bytes 328 bytes 100.0% 🚀
assets/save-BeJZxXby.js (New) 327 bytes 327 bytes 100.0% 🚀
assets/git-pull-request-arrow-Cd36DAk3.js (New) 321 bytes 321 bytes 100.0% 🚀
assets/list-checks-B0AR3Zm3.js (New) 279 bytes 279 bytes 100.0% 🚀
assets/compass-DCa3B7LM.js (New) 251 bytes 251 bytes 100.0% 🚀
assets/history-Dh8Vz1Jo.js (New) 237 bytes 237 bytes 100.0% 🚀
assets/message-square-CeMX8wVc.js (New) 233 bytes 233 bytes 100.0% 🚀
assets/lock-DB3Dj-m-.js (New) 206 bytes 206 bytes 100.0% 🚀
assets/rotate-cw-DGPfvWFv.js (New) 201 bytes 201 bytes 100.0% 🚀
assets/play-D1dYBIT_.js (New) 190 bytes 190 bytes 100.0% 🚀
assets/circle-check-BwXILDcv.js (New) 178 bytes 178 bytes 100.0% 🚀
assets/search-DHYzhO1f.js (New) 174 bytes 174 bytes 100.0% 🚀
assets/add-scalar-classes-D41R-T27.js (Deleted) -2.16MB 0 bytes -100.0% 🗑️
assets/tanstack-vendor-KsQ4HaYp.js (Deleted) -932.08kB 0 bytes -100.0% 🗑️
assets/docs.fumadocs-spike-api-reference-C4N4waNy.js (Deleted) -443.45kB 0 bytes -100.0% 🗑️
assets/charts-vendor-Ctuzdvzc.js (Deleted) -379.33kB 0 bytes -100.0% 🗑️
assets/AgentScalarChatInterface.vue-2lC6DiYb.js (Deleted) -201.7kB 0 bytes -100.0% 🗑️
assets/react-vendor-BZse5iG4.js (Deleted) -192.96kB 0 bytes -100.0% 🗑️
assets/modal-CHtpkJft.js (Deleted) -184.5kB 0 bytes -100.0% 🗑️
assets/client-Bt4YtpQ3.js (Deleted) -151.47kB 0 bytes -100.0% 🗑️
assets/self-hosting-operations-DWX8-_N1.js (Deleted) -134.31kB 0 bytes -100.0% 🗑️
assets/motion-vendor-tX31MP0E.js (Deleted) -125.38kB 0 bytes -100.0% 🗑️
assets/self-hosting-configuration-1mklU-_N.js (Deleted) -116.4kB 0 bytes -100.0% 🗑️
assets/maintainer-panel-BlBWJPyV.js (Deleted) -78.96kB 0 bytes -100.0% 🗑️
assets/tuning-_XqW8VWg.js (Deleted) -67.35kB 0 bytes -100.0% 🗑️
assets/what-you-can-verify-Cj9CcDTI.js (Deleted) -61.2kB 0 bytes -100.0% 🗑️
assets/self-hosting-release-checklist-B-RCS-69.js (Deleted) -51.82kB 0 bytes -100.0% 🗑️
assets/verify-this-review-Ck0f0_EJ.js (Deleted) -50.91kB 0 bytes -100.0% 🗑️
assets/backtest-calibration-BqECoNVn.js (Deleted) -46.46kB 0 bytes -100.0% 🗑️
assets/self-hosting-security-B1i8UerX.js (Deleted) -44.97kB 0 bytes -100.0% 🗑️
assets/routes-CdgPIiwD.js (Deleted) -36.4kB 0 bytes -100.0% 🗑️
assets/github-app-CCJ128o0.js (Deleted) -36.16kB 0 bytes -100.0% 🗑️
assets/self-hosting-troubleshooting-Qjo9MFul.js (Deleted) -33.56kB 0 bytes -100.0% 🗑️
assets/how-reviews-work-BedvUzLb.js (Deleted) -33.09kB 0 bytes -100.0% 🗑️
assets/self-hosting-github-app-OGthmeNB.js (Deleted) -32.96kB 0 bytes -100.0% 🗑️
assets/ams-operations-runbook-D7PQNKMi.js (Deleted) -30.02kB 0 bytes -100.0% 🗑️
assets/ams-deployment-DLVbIHJB.js (Deleted) -28.59kB 0 bytes -100.0% 🗑️
assets/owner-panel-CYUisJuf.js (Deleted) -28.18kB 0 bytes -100.0% 🗑️
assets/maintainer-self-hosting-9gxct3TQ.js (Deleted) -27.91kB 0 bytes -100.0% 🗑️
assets/app-DNngSU6Q.js (Deleted) -25.82kB 0 bytes -100.0% 🗑️
assets/ams-discovery-plane-BsQZIy8T.js (Deleted) -25.18kB 0 bytes -100.0% 🗑️
assets/privacy-security-BQuEZgwY.js (Deleted) -24.82kB 0 bytes -100.0% 🗑️
assets/ui-vendor-CR2nADRA.js (Deleted) -24.57kB 0 bytes -100.0% 🗑️
assets/ams-config-precedence-Bg8Ez47M.js (Deleted) -24.19kB 0 bytes -100.0% 🗑️
assets/self-hosting-quickstart-BraikMwr.js (Deleted) -24.1kB 0 bytes -100.0% 🗑️
assets/ams-kill-switch-incident-CLI5VnJ2.js (Deleted) -23.44kB 0 bytes -100.0% 🗑️
assets/miner-panel-DLwwuy_N.js (Deleted) -20.24kB 0 bytes -100.0% 🗑️
assets/app.runs-sSAE0Yx_.js (Deleted) -20.22kB 0 bytes -100.0% 🗑️
assets/ams-observability-CLw0NVB8.js (Deleted) -20.08kB 0 bytes -100.0% 🗑️
assets/ams-goal-spec-BP1BblmU.js (Deleted) -19.77kB 0 bytes -100.0% 🗑️
assets/self-hosting-backup-scaling-qWfWgkbb.js (Deleted) -18.95kB 0 bytes -100.0% 🗑️
assets/federated-fleet-intelligence-Op_e3MF8.js (Deleted) -18.7kB 0 bytes -100.0% 🗑️
assets/maintainer-install-trust-BI33gMBc.js (Deleted) -18.03kB 0 bytes -100.0% 🗑️
assets/beta-onboarding-Cwfu_tHO.js (Deleted) -17.65kB 0 bytes -100.0% 🗑️
assets/api._op-CoLRQU8k.js (Deleted) -17.54kB 0 bytes -100.0% 🗑️
assets/self-hosting-docs-audit-DNrqZHNN.js (Deleted) -16.6kB 0 bytes -100.0% 🗑️
assets/self-hosting-rees-LLfkLBVN.js (Deleted) -15.65kB 0 bytes -100.0% 🗑️
assets/docs._slug-peft3wcA.js (Deleted) -15.63kB 0 bytes -100.0% 🗑️
assets/miner-quickstart-cU-rBOPh.js (Deleted) -15.62kB 0 bytes -100.0% 🗑️
assets/self-hosting-ai-providers-DKEGAaZx.js (Deleted) -15.52kB 0 bytes -100.0% 🗑️
assets/mcp-clients-piMY6cFy.js (Deleted) -14.54kB 0 bytes -100.0% 🗑️
assets/playground-panel-PU3NYke4.js (Deleted) -14.42kB 0 bytes -100.0% 🗑️
assets/ams-sizing-DVJhFWss.js (Deleted) -14.17kB 0 bytes -100.0% 🗑️
assets/owner-checklist-Cfadybn5.js (Deleted) -14.12kB 0 bytes -100.0% 🗑️
assets/fairness-BWgcmo7k.js (Deleted) -13.98kB 0 bytes -100.0% 🗑️
assets/self-hosting-unified-ams-orb-DN8sJITm.js (Deleted) -12.04kB 0 bytes -100.0% 🗑️
assets/self-hosting-releases-CZ95nbuT.js (Deleted) -12.03kB 0 bytes -100.0% 🗑️
assets/ams-unattended-scheduling-Dw184y5b.js (Deleted) -11.58kB 0 bytes -100.0% 🗑️
assets/label-policy-Lq5v7KBm.js (Deleted) -11.51kB 0 bytes -100.0% 🗑️
assets/miner-coding-agent-DF2zqlDo.js (Deleted) -11.38kB 0 bytes -100.0% 🗑️
assets/capacity-BhB5kXsT.js (Deleted) -10.51kB 0 bytes -100.0% 🗑️
assets/troubleshooting-5pS6pAwW.js (Deleted) -10.34kB 0 bytes -100.0% 🗑️
assets/app.audit-Dkh3Yazl.js (Deleted) -10.22kB 0 bytes -100.0% 🗑️
assets/app.config-generator-DbggvvSW.js (Deleted) -10.06kB 0 bytes -100.0% 🗑️
assets/scoreability-C0bI3NHl.js (Deleted) -8.28kB 0 bytes -100.0% 🗑️
assets/self-hosting-rees-analyzers-tWtMpp1v.js (Deleted) -8.25kB 0 bytes -100.0% 🗑️
assets/maintainers-CXSZzLmI.js (Deleted) -8.06kB 0 bytes -100.0% 🗑️
assets/miners-BpWKfqxQ.js (Deleted) -7.91kB 0 bytes -100.0% 🗑️
assets/self-hosting-rag-Dn_4-Wy9.js (Deleted) -7.77kB 0 bytes -100.0% 🗑️
assets/agents-DV_-Id6N.js (Deleted) -7.74kB 0 bytes -100.0% 🗑️
assets/ams-fleet-manifest-CfrlfJUA.js (Deleted) -7.39kB 0 bytes -100.0% 🗑️
assets/ams-env-reference-Dh37dJ6E.js (Deleted) -7.12kB 0 bytes -100.0% 🗑️
assets/commands-panel-Bode-dwD.js (Deleted) -6.74kB 0 bytes -100.0% 🗑️
assets/maintainer-workflow-DNfy_YfM.js (Deleted) -6.52kB 0 bytes -100.0% 🗑️
assets/ai-summaries-CRXyf8WY.js (Deleted) -6.46kB 0 bytes -100.0% 🗑️
assets/digest-panel-B_Zg9qeS.js (Deleted) -6.15kB 0 bytes -100.0% 🗑️
assets/repos._owner._repo.quality-Dqn9AzON.js (Deleted) -6.14kB 0 bytes -100.0% 🗑️
assets/docs-nav-BIqKFbvi.js (Deleted) -6.06kB 0 bytes -100.0% 🗑️
assets/docs.index-BHb0IhbG.js (Deleted) -5.95kB 0 bytes -100.0% 🗑️
assets/loopover-commands-DpkVcZ8_.js (Deleted) -5.31kB 0 bytes -100.0% 🗑️
assets/branch-analysis-CahWlpgk.js (Deleted) -5.29kB 0 bytes -100.0% 🗑️
assets/miner-workflow-Dd0FZ_Hi.js (Deleted) -4.91kB 0 bytes -100.0% 🗑️
assets/api.index-CQT2uHxh.js (Deleted) -4.7kB 0 bytes -100.0% 🗑️
assets/quickstart-C-Fx6n4p.js (Deleted) -4.32kB 0 bytes -100.0% 🗑️
assets/upstream-drift-CegaAWIi.js (Deleted) -3.97kB 0 bytes -100.0% 🗑️
assets/docs-qAiOT2qu.js (Deleted) -2.93kB 0 bytes -100.0% 🗑️
assets/api-Cb0Rx4f9.js (Deleted) -2.69kB 0 bytes -100.0% 🗑️
assets/docs-page-Bdlrzgq_.js (Deleted) -2.1kB 0 bytes -100.0% 🗑️
assets/table-DFBbmNy7.js (Deleted) -1.75kB 0 bytes -100.0% 🗑️
assets/app.workbench-B8-aXEvJ.js (Deleted) -1.58kB 0 bytes -100.0% 🗑️
assets/tabs-51LZa_y5.js (Deleted) -1.39kB 0 bytes -100.0% 🗑️
assets/app.repos-B9e650Bs.js (Deleted) -1.07kB 0 bytes -100.0% 🗑️
assets/input-CfDdeNaY.js (Deleted) -796 bytes 0 bytes -100.0% 🗑️
assets/file-cog-BhUULYTt.js (Deleted) -758 bytes 0 bytes -100.0% 🗑️
assets/app.maintainer-BxjJPAe0.js (Deleted) -502 bytes 0 bytes -100.0% 🗑️
assets/app.owner-kwP-3r4_.js (Deleted) -474 bytes 0 bytes -100.0% 🗑️
assets/app.commands-RQvVEVdF.js (Deleted) -455 bytes 0 bytes -100.0% 🗑️
assets/app.playground-mFGRLVQD.js (Deleted) -442 bytes 0 bytes -100.0% 🗑️
assets/index-zcw-Wl3B.js (Deleted) -438 bytes 0 bytes -100.0% 🗑️
assets/app.digest-DaEzua5u.js (Deleted) -430 bytes 0 bytes -100.0% 🗑️
assets/eye-off-BLg9e0B5.js (Deleted) -430 bytes 0 bytes -100.0% 🗑️
assets/app.miner-BBxXhAIL.js (Deleted) -422 bytes 0 bytes -100.0% 🗑️
assets/key-round-BvsOy7nV.js (Deleted) -355 bytes 0 bytes -100.0% 🗑️
assets/bot-C2APo0Tw.js (Deleted) -328 bytes 0 bytes -100.0% 🗑️
assets/trash-2-2CT9Jvtw.js (Deleted) -328 bytes 0 bytes -100.0% 🗑️
assets/save-B8bWpvvI.js (Deleted) -327 bytes 0 bytes -100.0% 🗑️
assets/git-pull-request-arrow-ChIHEQO_.js (Deleted) -321 bytes 0 bytes -100.0% 🗑️
assets/list-checks-DcfQhF8P.js (Deleted) -279 bytes 0 bytes -100.0% 🗑️
assets/compass-DmNwz_Q2.js (Deleted) -251 bytes 0 bytes -100.0% 🗑️
assets/history-Ca4ByVVG.js (Deleted) -237 bytes 0 bytes -100.0% 🗑️
assets/message-square-CQ_NkbeU.js (Deleted) -233 bytes 0 bytes -100.0% 🗑️
assets/lock-E_1n_O0s.js (Deleted) -206 bytes 0 bytes -100.0% 🗑️
assets/rotate-cw-qjwRykgm.js (Deleted) -201 bytes 0 bytes -100.0% 🗑️
assets/play-dR-echoq.js (Deleted) -190 bytes 0 bytes -100.0% 🗑️
assets/circle-check-DtcukxQF.js (Deleted) -178 bytes 0 bytes -100.0% 🗑️
assets/search-kXpgX4hs.js (Deleted) -174 bytes 0 bytes -100.0% 🗑️

@codecov

codecov Bot commented Jul 29, 2026

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 91.75%. Comparing base (8e2d51d) to head (3af8979).
⚠️ Report is 1 commits behind head on main.
✅ All tests successful. No failed tests found.

Additional details and impacted files
@@           Coverage Diff           @@
##             main    #9878   +/-   ##
=======================================
  Coverage   91.75%   91.75%           
=======================================
  Files         919      919           
  Lines      112987   112987           
  Branches    27193    27193           
=======================================
  Hits       103667   103667           
  Misses       8034     8034           
  Partials     1286     1286           
Flag Coverage Δ
backend 95.69% <ø> (ø)
engine 71.81% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

@loopover-orb loopover-orb Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LoopOver approves — the gate is satisfied and CI is green.

@loopover-orb
loopover-orb Bot merged commit 48a3f7c into main Jul 29, 2026
12 checks passed
@loopover-orb
loopover-orb Bot deleted the chore/deps-esbuild-kit-8609 branch July 29, 2026 18:38
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Evaluate recharts v3 migration for apps/loopover-ui

1 participant