v0.11.0
Breaking Changes
- Names within
RequestValues
were changed to be clearer:
diff --git a/ygnmi/context.go b/ygnmi/context.go
index 6650736..bc668fd 100644
--- a/ygnmi/context.go
+++ b/ygnmi/context.go
@@ -20,35 +20,26 @@ import (
// RequestValues contains request-scoped values for ygnmi queries.
type RequestValues struct {
- // CompressedConfigQuery is a key type that means that the query is
- // uninterested in /state paths.
- CompressedConfigQuery bool
- // CompressedStateQuery is a key type that means that the query is
- // uninterested in /config paths.
- CompressedStateQuery bool
+ // StateFiltered is a key type that means that the query is
+ // uninterested in /state paths and will filter them out.
+ StateFiltered bool
+ // ConfigFiltered is a key type that means that the query is
+ // uninterested in /config paths and will filter them out.
+ ConfigFiltered bool
}
What's Changed
Full Changelog: v0.10.2...v0.11.0