Go SDK version 1.8.0 is now available. This release adds cre.OrderedEntries and cre.OrderedEntriesFunc — new helper functions that return a sorted iterator over map entries, removing the boilerplate of manually collecting and sorting keys before iteration. cre.OrderedEntries works with any map whose keys implement cmp.Ordered (strings, integers, etc.), and cre.OrderedEntriesFunc accepts a custom comparator for maps with struct or other non-ordered keys. Use these helpers anywhere you iterate over a map in DON mode to guarantee consistent key ordering across all nodes. This release also adds report verification support to the SDK.