c9ffd1274b
This PR - fixes a panic in GetItems when looking up a variable that does not exist. - deprecates GetItems in favor of GetVariableItems which avoids returning a pointer to a map - deprecates ErrVariableNotFound in favor of ErrVariablePathNotFound which is an actual error type - does some minor code cleanup to make linters happier
12 lines
391 B
Plaintext
12 lines
391 B
Plaintext
```release-note:bug
|
|
api: Fixed a bug where Variables.GetItems would panic if variable did not exist
|
|
```
|
|
|
|
```release-note:deprecation
|
|
api: Deprecated Variables.GetItems in favor of Variables.GetVariableItems to avoid returning a pointer to a map
|
|
```
|
|
|
|
```release-note:deprecation
|
|
api: Deprecated ErrVariableNotFound in favor of ErrVariablePathNotFound to correctly represent an error type
|
|
```
|