v1.1.0
June 2026
Batch rendering, template variables, async callbacks
New
Batch rendering —
POST /v1/batch renders multiple HTML templates in a single API call. Plan limits: Starter ≤10, Pro/Scale ≤50 items. Returns array of images with partial failure support.
New
Template variables — inject dynamic values into HTML using
{{key}} syntax. Pass a vars object alongside your HTML on both /v1/render and /v1/batch. No need to rebuild HTML for each render.
New
Async callback — pass a
callback_url to fire-and-forget a render. Returns 202 Accepted immediately; result is POSTed to your URL when done. Pro+ only.
New
waitUntil parameter — control Playwright's page load strategy:
load | domcontentloaded | networkidle. Useful for pages that load content asynchronously.
New
n8n node v1.1.0 — n8n-nodes-renderpix updated with Render Batch operation and template variable support. Install via npm or search RenderPix in the n8n node library.
New
Dashboard: Recent Renders — last 20 renders now visible in the dashboard with timestamp, format, dimensions, and render time.
New
GitHub repository — codebase is now public at github.com/ozgurdogus/renderpix.
Fix
Dashboard loading bug — fixed
async function tr() issue that caused dashboard to hang on load in all browsers.