This release fixes a handful of bugs in the new evaluator and its Go API.
Evaluator
The new evaluator, now enabled by default since v0.13.0-alpha.2, is improved to fix regressions in OpenAPI, our CUE Go API, two panics, and a few other bugs which could lead to incorrect errors. Since the last alpha release, two more projects in Unity are fully working with the new evaluator.
As a reminder, the old evaluator is still accessible via CUE_EXPERIMENT=evalv3=0
. If you encounter any errors or other problems, please file an issue with details.
Go API
cuecontext.EvalDefault
still pointed to the old evaluator; it now correctly points to the new evaluator, and follows the CUE_EXPERIMENT=evalv3
flag just like cmd/cue
and the rest of the Go API.
Mirroring cuecontext.EvalExperiment
, the new cuecontext.EvalStable
constant is added to track the latest stable version of the evaluator.
Full list of changes since v0.13.0-alpha.2
cue exp gengotypes
testscript by @mvdan in 18b4ba9