My select tag looks like this:
<select ng-model="vm.fooModel"
ng-options="item.id as item.name for item in vm.fooOptions" >
<option value="none">Select</option>
</select>
The problem arises when angular 1.6 renders it, as it removes my default option and adds an empty one
<option value="?" selected="selected"></option>
Initially, "vm.fooModel" is set to "none". This used to work fine in Angular 1.5.