update CHANGELOG
This commit is contained in:
parent
577e2420b0
commit
5e8b300ca1
|
@ -7,6 +7,8 @@ IMPROVEMENTS:
|
||||||
BUG FIXES:
|
BUG FIXES:
|
||||||
|
|
||||||
* core: Fixing use of remote state with plan files. [GH-741]
|
* core: Fixing use of remote state with plan files. [GH-741]
|
||||||
|
* core: Fix a panic case when certain invalid types were used in
|
||||||
|
the configuration. [GH-691]
|
||||||
|
|
||||||
PLUGIN CHANGES:
|
PLUGIN CHANGES:
|
||||||
|
|
||||||
|
|
|
@ -915,7 +915,7 @@ func (m schemaMap) validateList(
|
||||||
rawV := reflect.ValueOf(raw)
|
rawV := reflect.ValueOf(raw)
|
||||||
if rawV.Kind() != reflect.Slice {
|
if rawV.Kind() != reflect.Slice {
|
||||||
return nil, []error{fmt.Errorf(
|
return nil, []error{fmt.Errorf(
|
||||||
"%s: should be an array", k)}
|
"%s: should be a list", k)}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Now build the []interface{}
|
// Now build the []interface{}
|
||||||
|
|
Loading…
Reference in New Issue