chore(plan-9): final verification + changelog summary

Straggler fixes: web-next and web-tanstack app callers did not pass {}
to queryOptions()/caller calls after Plan 9 added .input(z.object({}).strict())
to siteSettings and header procedures. All 360 tests pass, full typecheck
green across 14 packages. Refactor log §7 updated with verification summary.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-06 16:07:36 +02:00
parent 2b67964213
commit 2df137c70c
3 changed files with 21 additions and 4 deletions

View File

@@ -7,8 +7,8 @@ export default async function Home() {
const caller = appRouter.createCaller({});
const [siteSettings, header, articles] = await Promise.all([
caller.marketingPages.siteSettings(),
caller.navigation.header(),
caller.marketingPages.siteSettings({}),
caller.navigation.header({}),
caller.blog.listArticles({ status: "published", limit: 20 }),
]);