Conversation
The deploy-migrations workflow pinned Node 18, but the repo now depends on prisma@7.8.0, which refuses to install on Node <20.19 (preinstall engine gate). npm ci failed before `prisma migrate deploy` ever ran, so the 20260614120000_add_proposal_tally migration never reached production. - Bump setup-node to 22, matching pr-checks/unit-tests/trpc/ci-smoke. - Add workflow_dispatch so a pending migration can be applied without pushing a fresh file under prisma/migrations/** (this workflow only triggers on that path otherwise). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
ci(migrations): run deploy-migrations on Node 22 + allow manual dispatch
…snapshot Months 2 (June) and 3 (July) each had a single one-line task per owner, and June's "Mesh 2.0 + CI" framing no longer matches what actually shipped. - June (M2): expand into the five workstreams actually delivered (Mesh 2.0 groundwork, signing/auth reliability, in-app governance voting, IPFS + rationale, platform UX) plus CI; add a dated mid-month Progress table that cites the merged PRs as evidence (mirrors M1's "Proof of completion"). Mesh 2.0 is honestly marked In progress — runtime is still on @meshsdk/core@^1.9. - July (M3): break FROST kickoff and Wallet V2 into concrete deliverables; add the Mesh 2.0 runtime cutover (carryover) and a production-hardening item (Node-22 migration CI on main, apply ProposalTally, RLS review). - Sync the per-owner aggregated list; flag #122 as closed ahead of schedule. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Add the email notification service (feature/email-notification-center) to Andre's June lane — Resend email channel, notification center + outbox/worker, per-wallet settings, and email verification — marked In progress since the branch isn't merged to preprod yet. Mirror it into the Progress table and the per-owner aggregated list. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Promotes the post-#303 work on
preprodtomain(2 changes).CI fix — unblocks production migrations
deploy-migrationsnow runs on Node 22 + supports manual dispatch (#319). The workflow was pinned to Node 18, which can't installprisma@7.8.0(preinstall engine gate), sonpm cifailed beforeprisma migrate deployever ran — that's why theProposalTallymigration from Release: landing/theme overhaul, governance vote UX + DB-cached tallies, mobile/UX foundations, signing & infra fixes #303 never reached production.Docs
.github/workflows/andROADMAP.mdonly — it does not touchprisma/migrations/**, so merging will not auto-trigger the deploy-migrations workflow.main(now possible viaworkflow_dispatch) to apply the still-pending20260614120000_add_proposal_tallymigration. TheProposalTallytable is currently missing in prod and the governance tally router errors until it exists.🤖 Generated with Claude Code