Searching sydvast (Sydväst) on sv.wikipedia.org triggers inconsistent behavior:
Completion finds it (even if not properly ranked) : https://sv.wikipedia.org/w/api.php?action=opensearch&format=json&formatversion=2&search=sydvast&namespace=0&limit=10&suggest=true
The go feature works: https://sv.wikipedia.org/w/index.php?search=sydvast&title=Special:S%C3%B6k&go=G%C3%A5+till
But a classic fulltext search does not find the page: https://sv.wikipedia.org/w/index.php?title=Special:S%C3%B6k&profile=default&fulltext=Search&search=sydvast&searchengineselect=on
This is most likely a regression with the new fulltext builder activated for BM25. This new builder uses a filter + scoring query approach, sadly asciifolding being on by default on some special fields (all_near_match) but not activated on other text fields the filter will exclude this page.
A quick workaround would be to add new SHOULD clause on the all_near_match field.
The proper fix would be to fix this inconsistency in the analysis chain.