Product ReleaseJune 9, 2026

convex v1.41.0

convex v1.41.0
Nicolas Ettlin

Nicolas Ettlin

Published on June 9, 2026

Overview

  • It is now possible to set limits on nested queries and mutations with the new transactionLimits option in runQuery/runMutation.
  • npx convex ai-files now installs skills with separate copies of each skill for each coding agent instead of using symlinks. We made this change to avoid known issues with symlinks on Windows.
  • When using Convex in anonymous mode (without a Convex account), npx convex dev now starts a different dashboard server for each deployment. This ensures the dashboard always connects to the right deployment when multiple deployments are running at the same time.

Included Features (1)

#357
Run nested queries/mutations with a fixed limits budget

When running a query or mutation with runQuery/runMutation, the subtransaction can currently do as many reads/writes as it wants. It would be useful to be able to set a fixed limit on how much reads/writes the subtransaction can do.

20(1)
Completed