All blocks
Devtools
Git Timeline
Commit and release timeline with branches, tags, authors, CI status, and collapsible diff snippets.
Install with shadcn CLI
Adds the block files into your project. Run from an app that already has shadcn initialized.
bash
npx shadcn@latest add @tt-ui/git-timeline
Preview
Live demo of this block in the browser.
Git Timeline
Commit and release timeline with branches, tags, authors, and collapsible diff snippets.
Repository activity
Recent commits, merges, and releases on main.
a3f9c2dmainSuccessAlex Chen
b7e1a04feat/webhook-retrySuccessJordan Rivera
src/webhooks/retry.ts+const MAX_RETRIES = 5;+const BASE_DELAY_MS = 1000;export async function deliverWebhook(payload: Payload) {- await fetch(payload.url, { method: "POST" });+ return retryWithBackoff(() => post(payload), MAX_RETRIES, BASE_DELAY_MS);}- v2.4.1Success
Morgan Shaw
c4d8f91fix/sync-raceWarningTaylor Park
src/workers/sync.ts@@ -42,6 +42,8 @@ async function syncSubscription(id: string) {const lock = await acquireLock(id);+ if (!lock) return;try {await pullRemoteState(id);} finally {await releaseLock(id);}- v2.4.0
Riley Kim
d9a2b17mainDeployingAlex Chen