v0.1.1
Released on 2026-04-19.
vertex runandvertex buildno longer exit silently when a source file contains an unterminated string literal or an unterminated${...}interpolation.- Match expressions that bind the tail of a typed list with a rest pattern
(e.g.
[_, ...rest] => reston aList<Int>) now generate Apex that compiles. Previously the generated code assigned aList<Object>to aList<T>variable, which Salesforce rejected withIllegal assignment from List<Object> to List<T>. - Positional bindings in match-expression arms now carry their element type
(e.g.
Integerrather thanObject), so patterns likematch xs { [head] => head + 1, _ => 0 }compile on Salesforce instead of failing withArithmetic expressions must use numeric arguments.