Skip to content

Tags: lyraproj/dgo

Tags

v1.0.0-rc4

Toggle v1.0.0-rc4's commit message
Fix lint issue

v1.0.0-rc3

Toggle v1.0.0-rc3's commit message
Add parsing of time and duration and include them in richdata type

v1.0.0-rc2

Toggle v1.0.0-rc2's commit message
Add dgo.Duration type

Adds `dgo.Duration` as a `dgo.Value` representation of `time.Duration`.

v1.0.0-rc1

Toggle v1.0.0-rc1's commit message
Add dgo.Duration type

Adds `dgo.Duration` as a `dgo.Value` representation of `time.Duration`.

v1.0.0-a4

Toggle v1.0.0-a4's commit message
Fix assignment to addressable pointers that are nil

When reflecting to a pointer that is unset but addressable, such as a
field in a struct or an entry in a vector, a zero value must be created
before it is filled with data.

Closes lyraproj/hiera#82

v1.0.0-a3

Toggle v1.0.0-a3's commit message
Fix pointer confusion when assigning map to struct

The Map was not able to `ReflectTo()` a reflect.Value with kind `Struct`
sinc it assumed that all structs would be sent as pointers. That isn't
the case when the call comes from `FromValue()`.

v1.0.0-a2

Toggle v1.0.0-a2's commit message
Let String.String() return string verbatim

v1.0.0-a1

Toggle v1.0.0-a1's commit message
Ensure 100% test coverage

v0.5.1

Toggle v0.5.1's commit message
Remove use of build tag for test code

v0.5.0

Toggle v0.5.0's commit message
Refactor handling of Min() and Max() to common type

This commit adds a sizeRange struct with two uint32 integers for min
and max. This struct implements a common interface used for all types
that have size boundaries.