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
Loki has added support for an or operator to combine equality line filters, which would remove the need to convert them into regular expressions. I.e., previously to require a line contains either A or B you had to use:
|~ `A|B`
This meant we needed to escape the values A and B (in case they contained regular expression meta-characters). Now we can instead use:
|= `A` or `B`
The text was updated successfully, but these errors were encountered:
Loki has added support for an
or
operator to combine equality line filters, which would remove the need to convert them into regular expressions. I.e., previously to require a line contains eitherA
orB
you had to use:This meant we needed to escape the values
A
andB
(in case they contained regular expression meta-characters). Now we can instead use:The text was updated successfully, but these errors were encountered: