Conversation
Ships the build fixes for veryfront-issue-inbox#456. `veryfront build` has been broken for every project since 0.1.1206, and 5 of 7 scaffold templates could not build at all. - #3538 prime host contracts in the build extension path - #3541 resolve server-side esm.sh modules with a server target - #3542 keep optional Deno imports optional - #3540 isolate cwd-mutating unit tests The version is embedded in hydration-runtime.generated.ts, so a bump must be followed by `deno task generate`; the manifests check fails otherwise. There is no earlier version to pin to: 0.1.1205 fails the same templates with the CSSProcessor error that #3417 was fixing.
|
Warning Review limit reached
Next review available in: 31 minutes Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available. How can I continue?After more reviews become available, a review can be triggered using the To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews. How do review limits work?CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability. For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window. Please refer docs for additional details. Review details⚙️ Run configurationConfiguration used: Repository UI Review profile: CHILL Plan: Pro Plus Run ID: ⛔ Files ignored due to path filters (1)
📒 Files selected for processing (2)
Comment |
Cuts v0.1.1228, the release that unblocks
veryfront build.Merging this publishes:
version-check(cicd.yml:469) comparesdeno.jsonagainst the previous commit, and a changed stable version gates thereleasejob.Why this release matters
veryfront buildhas been broken for every project since 0.1.1206 — 22 releases. An external report surfaced it on 0.1.1227 (veryfront-issue-inbox#456).There is no earlier version to pin to. 0.1.1205 fails the same templates with the
CSSProcessorerror that #3417 was fixing. A release is the only fix path.What ships
Verification on merged main (
48cd2d5c7)All 7 scaffold templates, each
veryfront init+veryfront buildfrom scratch:minimalai-agent(default)docs-agentagentic-workflowmulti-agent-systemcoding-agentsaas-starterBefore these fixes, 5 of the 7 failed. Page counts are included because
veryfront buildcan exit 0 with zero pages, so "built" alone is not evidence.Hydration checked in a real browser on the
docs-agentbuild served viaveryfront serve: 428 requests all 200, zero console messages, React fibers attached. That matters because #3541 makes SSR evaluate esm.sh'snodebuild while the browser still getses2022, and a parity break there would be invisible to CI.Diff: three files, not two
The version is also embedded in
src/html/hydration-script-builder/hydration-runtime.generated.ts, so a bump must be followed bydeno task generate.My first attempt (#3545) bumped only
deno.jsonandsrc/utils/version-constant.tsand failedci (typecheck)— not on a type error, but on the manifests check:src/utils/version.test.ts:25keeps the first two in sync; nothing pins the generated bundle, so the manifests check is the only thing that catches it.Verified locally:
deno task typecheckexit 0,version.test.ts1 passed,deno fmt --checkclean.Rebased onto
80fb3a022(#3543). The earlier attempt was cut from48cd2d5c7, wheretests (bun)was already failing; #3543 fixed it.