Skip to main content

Release r202618

What's new

This release contains the following new features:

AI assistant (internal beta)

Over the past months we have been working on an AI assistant for the automator. This release contains the first version, which has been made available as an internal beta for techwork staff. We will share more details once the assistant becomes generally available.

The automator AI assistant

Use existing functions as callbacks

AutomatorScript now allows passing an existing function by name as a callback argument, as you can in standard JavaScript:

let numbers = ["1.5", "2", "3.5"].map(parseFloat);
// => [1.5, 2, 3.5]
let present = [0, 1, "", 2, null].filter(Boolean);
// => [1, 2]

Previously, the callback had to be wrapped in an arrow function, like values.filter((value) => Boolean(value)).

Other changes

This release contains a number of smaller changes:

  • Fix: generating new webhook credentials on an account did not mark the profile as changed, so the change could not be saved.

Timeline

The expected deployment dates for this release are:

EnvironmentDate
DemoFriday, July 17th
ProductionTuesday, July 21st

The deployment to the Production environment will be conducted outside of office hours (Central European Time Zone), usually between 8 and 10pm.