github cue-lang/cue v0.13.0-alpha.2

latest release: v0.13.0-alpha.3
pre-release8 days ago

This release enables the new evalv3 evaluator by default, and introduces initial support for absolute packages.

Changes which may break some users are marked below with: ⚠️

Evaluator

⚠️ The new evaluator is now enabled by default, given that the majority of our test suite and projects in Unity are now working. While a few regressions remain, dozens of bugs are fixed by the new evaluator, and it already shows better performance by orders of magnitude on many projects.

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.

For more information, see our new guide on upgrading from evalv2 to evalv3.

Closedness in evalv3 has been revisited to match the semantics of evalv2 much more closely, while at the same time reducing its overhead for larger configurations. This fixes most "field not allowed" regressions and improves the performance of some configurations by up to 2-5x.

cmd/cue

Initial support for absolute packages is introduced, which allow specifying a remote package at a particular version such as cue export foo.com/data@v1.2.3 or cue vet foo.com/schema@v1.2.3 -d '#schema' data.yaml.

cue get go no longer fails on Go strings containing certain character escape sequences or non-UTF8 bytes.

Encodings

Empty YAML files are now decoded as *null | _ rather than null, allowing them to be unified with struct schemas as if they were an empty struct.

Full list of changes since v0.13.0-alpha.1
  • internal/core/adt: add indirection in some cases by @mpvl in c7a0369
  • cmd/cue: fix up help environment with new defaults by @mvdan in 4810870
  • cue: enable even more tests on evalv3 which pass now by @mvdan in 00f7a21
  • cue: re-enable tests on evalv3 which succeed now by @mvdan in bd1839a
  • internal/core/adt: fix deduping of pattern constraints by @mpvl in 76d6e68
  • internal/core/adt: add tests for Issue 3843 by @mpvl in cf93185
  • cue: add test for issue 3826 by @mpvl in 8cd6b71
  • internal/core/adt: add tests for Issue 3839 by @mpvl in a91e7bf
  • internal/core/adt: correct direction of equivalence set by @mpvl in 760b744
  • encoding/jsonschema: add debug test for external tests by @mpvl in ce10c91
  • encoding/jsonschema: move debugging test to separate file by @mpvl in fc4172f
  • internal/core/adt: rewrite Environments for disjuncts by @mpvl in cdfb056
  • internal/core/adt: add tests for Issue 3825 by @mpvl in a16bbf7
  • internal/core/adt: remove "hole" logic and data structures by @mpvl in 85fb117
  • internal/core/adt: set isOuterStruct field by @mpvl in d13d661
  • internal/core/adt: sharpen criteria by @mpvl in 5423873
  • internal/core/adt: clean up "withinLet" by @mpvl in 7c4b66d
  • enable CUE_EXPERIMENT=evalv3 by default by @mvdan in 1eccc46
  • cmd/cue: prepare testscripts for evalv3 being on by default by @mvdan in a78b158
  • internal/core/adt: drop overlayContext.generation by @mvdan in dbed3d2
  • cue: skip two tests failing on evalv3 by @mvdan in 5e5179c
  • cue/interpreter/wasm: skip tests on evalv3 by @mvdan in d4dd2ce
  • internal/core/adt: disable tests on evalv3 where they fail by @mvdan in 5883337
  • internal/core/adt: finalize in lookup in more cases by @mpvl in cfbeb48
  • internal/core/adt: add tests for 3836 and 3838 by @mpvl in 470a02a
  • cue/testdata: add regression test for https://cuelang.org/issue/3688 by @myitcv in 72567b9
  • cue/testdata: add regression test for https://cuelang.org/issue/3672 by @myitcv in bdeae96
  • internal/core/adt: simplify representation of outer scope by @mpvl in 86e62b2
  • internal/core/adt: reset embedding scopes for subfields by @mpvl in 2cd5ba6
  • internal/core/adt: add tests for issue 3837 by @mpvl in 413d39a
  • mod/module: deprecate ParseImportPath by @rogpeppe in 440b32c
  • cue/load: support specifying an absolute package by @rogpeppe in ccd5b92
  • internal/mod/modload: add ResolveAbsolutePackage by @rogpeppe in 0d32d6e
  • internal/core/adt: obey internal/core/cuedebug defaults in TestEval by @mvdan in 1a40fd4
  • internal/mod/modpkgload: add FindPackageLocations by @rogpeppe in 32b845b
  • cue/ast: add a few ParseImportPath tests by @rogpeppe in d9aaf0a
  • mod/modcache: implement FetchFromCache by @rogpeppe in 9bb88b9
  • internal/filetypes: support richer versions in IsPackage by @rogpeppe in 0105c3f
  • internal/cuedebug: turn openinline off by default by @mvdan in b0b6049
  • internal/core/adt: apply replacements from ancestors by @mpvl in 112c279
  • internal/core/adt: set nested groups by @mpvl in 290590f
  • internal/core/adt: check right Vertex for single-level close by @mpvl in 81ef6bd
  • internal/core/adt: hoist newGroup logic by @mpvl in f7095a9
  • internal/core/adt: add tests for issue 3834 by @mpvl in c437118
  • internal/core/adt: add test for issue 3833 by @mpvl in 93b548d
  • internal/core/adt: ensure shared nodes are evaluated as per request by @mpvl in 5c06b58
  • internal/core/adt: add test for 3835 by @mpvl in 5aea31b
  • cue/testdata: add regression test for https://cuelang.org/issue/3813 by @myitcv in 7d6fe86
  • cue/testdata: add regression test for https://cuelang.org/issue/3805 by @myitcv in 6ae6c99
  • internal/core/adt: stop closing after enclosingEmbed has been activated by @mpvl in e311d45
  • internal/core/adt: add another test for issue 3826 by @mpvl in 25f9087
  • internal/core/adt: fix cycle issue by @mpvl in 3596477
  • cmd/cue: import non-UTF8 Go string constants as CUE bytes by @mvdan in 7d0404a
  • cmd/cue: verify the JSON for equivalence in get_go_json_compat by @mvdan in c65dfa3
  • cmd/cue: support more escape codes from Go string constants by @mvdan in f567a0c
  • cmd/cue: add test case for get go with string escape codes by @mvdan in ce37bb5
  • internal/core/adt: add tests for issue 3827 by @mpvl in b75a12c
  • internal/core/adt: eagerly evaluate let upon lookup by @mpvl in 5414b41
  • internal/core/adt: remove use of arcCC by @mpvl in 8f2ae49
  • internal/core/adt: conditional typo check by @mpvl in d541cce
  • internal/core/adt: disable structure sharing for non-rooted values by @mpvl in 3a76c5c
  • internal/core/adt: fix issue with nested lets by @mpvl in db40a06
  • internal/core/adt: add tests for issue 3801 by @mpvl in 947d33f
  • internal/core/adt: add tests for 3832 by @mpvl in c0356be
  • internal/core/adt: more thorough evaluation for scalar values by @mpvl in 5f12a04
  • Revert "core/adt: Add ellipsis in struct to patterns" by @cuematthew in 04fa872
  • core/adt: Add ellipsis in struct to patterns by @cuematthew in 2c002ae
  • internal/core/adt: add tests for issue 3828 by @mpvl in 4c49cd4
  • internal/core/adt: only reset enclosingEmbed when used by @mpvl in 1e803fa
  • internal/core/adt: add tests for issue 3826 by @mpvl in 61a8b03
  • internal/core/adt: move src check to typocheck by @mpvl in 673d30f
  • internal/core/adt: add test for issue 3824 by @mpvl in c479844
  • internal/core/adt: add test for issue 3819 by @mpvl in 43ed667
  • encoding/yaml: decode empty YAML files as *null | _ by @mvdan in fd79eff
  • internal/core/adt: carry over more task types over disjunction boundaries by @mpvl in e56d550
  • internal/core/adt: add tests for 3770 by @mpvl in 62a5dd0
  • internal/core/adt: remove some unnecessary code by @mpvl in 4172469
  • internal/core/adt: handle nested pending arcs by @mpvl in 93e7321
  • internal/core/adt: add tests for 3729 by @mpvl in 4510dcb
  • internal/core/adt: do not finalize before arcs are processed by @mpvl in cc75560
  • internal/core/adt: add test case for order of resolution by @mpvl in 2cd2912
  • internal/core/adt: add tests for 3780 by @mpvl in 4a800c8
  • internal/core/adt: add test for evalv3 panic by @mpvl in 0db9094
  • internal/core/adt: implementation of flat dynamic closedness by @mpvl in a1cfb1c
  • internal/encoding/yaml: attach a filename position to an empty file "null" by @mvdan in 1ac74ac
  • cmd/cue: add a test case for loading an empty YAML file by @mvdan in 91e843b
  • cmd/cue: reject mod mirror without anything to do by @mvdan in f1c77f6
  • cmd/cue: test mod mirror with no arguments nor --mod by @mvdan in 211b1b0
  • cue: make Value.Default test for whether the vertex was default-able by @cuematthew in 16253d8
  • cmd/cue: update mod mirror help text by @jpluscplusm in d1bf8fe
  • internal/core/adt: set label of current node in Unify by @mpvl in 9e333c6
  • internal/core/adt: arguments are not closed in definitions by @mpvl in 8bae48c
  • internal/core/adt: add tests cases for new closedness by @mpvl in c263e98
  • internal/core/adt: add tests for closing of arguments to validators by @mpvl in bc4f30d
  • internal/core/adt: add tests for issue 3763 by @mpvl in 847f46f
  • internal/core/adt: add tests for issue 3784 by @mpvl in 61cb9a2
  • internal/core/adt: fix update scalar by @mpvl in 28fef96
  • internal/core/adt: add test for issue 3633 by @mpvl in 941f898
  • internal/ci: simplify and improve clearing of all cache entries by @mvdan in 2fe368e
  • cmd/cue: skip mkRunE in the commandGroup wrapper by @mvdan in e919342
  • cmd/cue: avoid confusing "unknown flag" errors in cue mod by @mvdan in 6ab9f11
  • cmd/cue: deduplicate logic to implement command groups by @mvdan in 078125e
  • cmd/cue: add more test cases for unknown flags and commands by @mvdan in 5a359d5
  • cue: Make Value.LookupPath work on patterns for evalv3 by @cuematthew in cbb205e

Don't miss a new cue release

NewReleases is sending notifications on new releases.