Value pattern or contains for pick fields in a query
My problem is, that I'd like to create some queries that contain a list of items with a range of values in a specific field, which is a pick field. I could specify this by selecting all desired values in that. But if the pick list gets extended the queries will need manual updates every time the list changes - if the value matches the range. The definition of a specific query for the field and then using it as a sub-query for the other queries would reduce the manual work, but I'd still depend on the information, that the field had changed and a manual update of a query.
Example:
The pick list field could be 'release' with values [v1.0, v1.1, v1.2, v1.2.1, v2.0, v2.1, v2.2, v2.4, v2.5, v3.0, ...].
Now I'd like to filter all items for release v1.x.y. When I now select all the relevant releases. If 'v1.3' would be added I'll have to modify the list in the filter.
Is there a way to specify '(field["release"] contains "v1."' or maybe some RegEx 'field["release"]="v1\..*"' to filter the list? So I would not depend on getting the information, that the field had been changed and the query would automatically contain the new value in the pick list, when it matches the selection.

