You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
lapis: Backslash is now an escape character inside quoted strings. In regex queries that use \ as a regex escape, you'll need to pass \\ now, e.g. before: division.regex=Basel\{1,2\} -> after: division.regex=Basel\\{1,2\\}
Features
lapis: support escaping single quotes in advanced query string values (#1599) (88d59e9)
Bug Fixes
lapis: health check: consider LAPIS "UP" even when SILO is down (#1594) (b9abdf9)
lapis: Before: ?region= would match null regions. After: ?region.isNull=true matches null regions, ?region= matches empty string regions. Empty strings are treated as such, before intFrom= would filter for unbounded int.
Features
lapis: add explicit xxx.isNull filters that let users filter for null or non-null, don't treat "" as null in filters anymore (#1574) (68eb461)
Bug Fixes
lapis: remove unnecessary field valuesAreUnique from database config (#1577) (2067441), closes #1573