Reviewed and published.
Thanks for taking the time to provide the required changes!
deranga β made their first commit to this issueβs fork.
New release available for this issue.
Thanks Griff. I'll get this committed and released as soon as possible.
Also ran into this issue whereby the update to 1.4 prevents the autocomplete from returning results.
1.3, previously used the style plugin to render the result fields of the executed view, however the new method attempts to load the 'views machine named' field direct from the loaded result entity.
Depending upon your use case, its possible as a workaround to reconfigure the exposed filter to behave in a similar fashion to 1.3, by unchecking either or both the "Unformatted dropdown" or "Unformatted suggestion" options to off. This then triggers the autocomplete to make use of the style plugin to render output as before.
if (!$use_raw_suggestion || !$use_raw_dropdown) {
$rendered_field = $style_plugin->getField($index, $field_name);
}