• v5.0.1 97e2517d3a

    v5.0.1 Stable

    rbrooks released this 2026-06-19 16:51:49 +00:00 | 141 commits to main since this release

    Tea Leaves v5.0.1

    Patch release — fixes a production build break in v5.0.0. No new features, no schema changes.

    Fix

    The dependency audit that landed alongside v5.0.0 (d1334b4, "remove node-cron, upgrade React 19") accidentally dropped @types/multer while removing @types/node-cron. multer itself is still very much in use — file uploads in the media, import, and profile routes depend on the req.file/req.files type augmentation that package provides — so the production TypeScript build (tsc) failed with a wall of "implicitly has an 'any' type" / "Property 'file' does not exist" errors.

    This was invisible in local development because npm run dev (tsx watch) doesn't type-check; it only surfaced when actually building the production Docker image.

    Fix: restored @types/multer to api/package.json.

    If you successfully deployed v5.0.0, this release contains no behavior changes for you. If your v5.0.0 build failed, this is the fix — pull and rebuild.

    Downloads