mirror of
https://github.com/dolthub/dolt.git
synced 2026-05-03 03:10:26 -05:00
521e7b6bae
This is a breaking change!
We used to create empty Go collections `[]int{}` when unmarshalling an
empty Noms collection onto a Go collection that was `nil`. Now we keep
the Go collection as `nil` which means that you will get `[]int(nil)`
for an empty Noms List.
Fixes #2969