June 19, 2026
Taskade developer changelog — June 19, 2026: Utilities Piece: Data Transform Actions, Utilities Piece: Number Summaries.
Last updated
Was this helpful?
Taskade developer changelog — June 19, 2026: Utilities Piece: Data Transform Actions, Utilities Piece: Number Summaries.
Developer highlights. This section tracks API, MCP, SDK, automation, and Taskade Genesis platform changes for developers. For the full product changelog see taskade.com/changelog; for release newsletters see taskade.com/blog/updates.
The Utilities piece gains a set of no-credit, pure-transform actions for reshaping data inline in a flow — no AI call required. Use them between a trigger and a downstream connector to clean, convert, and summarize values.
Generate QR Code (utils.generateQrCode) — render any text or URL into a QR image. Choose a size (150 / 300 / 600 px) and error-correction level (L / M / Q / H). The image is uploaded to your workspace Media library and the action returns mediaId, mediaUrl, mediaKind, and mediaMimeType.
Convert CSV to JSON (utils.convertCsvToJson) — parse a CSV string into structured rows. Set whether the input has a header row, optionally supply a delimiter (auto-detected otherwise). Returns rows (array) and count.
Convert JSON to CSV (utils.convertJsonToCsv) — serialize a JSON array into CSV. Toggle the header row and optionally set a delimiter (defaults to comma). Returns csv (string) and count.
Four discrete actions for summarizing a list of numbers:
Average (utils.calculateAverage) — mean of the supplied numbers. Returns average.
Sum (utils.calculateSum) — total of the supplied numbers. Returns sum.
Count Unique Values (utils.countUniques) — number of distinct values in the list.
Min / Max (utils.getMinMax) — highest or lowest value, selectable via a max / min mode.
Six string-manipulation actions for cleaning and converting text in a flow:
Concatenate Text (utils.concat) — join multiple parts with an optional separator.
Find Text (utils.find) — locate a search value in a string (first match or all), with optional case sensitivity. Returns found, index, indices, and count.
Slugify Text (utils.slugify) — turn text into a URL-safe slug, with optional casing and separator.
Strip HTML (utils.stripHtml) — remove markup and return plain text.
HTML to Markdown (utils.htmlToMarkdown) — convert an HTML fragment to Markdown.
Markdown to HTML (utils.markdownToHtml) — render Markdown to sanitized HTML.
See the Action & Trigger Reference.
General stability, performance, and connector reliability improvements.
Last updated
Was this helpful?
Was this helpful?