Releases: openconfig/ygot
Releases · openconfig/ygot
v0.10.13
- Add the JoinPaths gNMI utility function.
v0.10.12
v0.10.11
v0.10.10
- Add new path generation flag
-simplify_wildcard_paths
.- When this flag is enabled, the keys from the generated paths are omitted if all keys are wildcarded for a list node. This is an equivalent representation for the path per the gNMI spec. e.g.
map[string]interface{}{"key1": "*", "key2": "*", "union-key": "*"}
is nowmap[string]interface{}{}
.
- When this flag is enabled, the keys from the generated paths are omitted if all keys are wildcarded for a list node. This is an equivalent representation for the path per the gNMI spec. e.g.
- Add new
RFC7951JSONConfig
optionPreferShadowPath
that allows JSON marshalling to prefer using the "shadow-path" name instead of the "path" name.
v0.10.9
- encode empty list as
[]
instead ofnull
when using RFC7951 encoding (credits @cyrilMargaria)
v0.10.8
v0.10.7
v0.10.5
v0.10.4
- Adds the ability to specify an
-include_descriptions
flag on thegenerate
command for Go code (@SeanCondon). - Cache regexp compilations during string validation of
GoStruct
s to improve validate performance.