
The macOS Intel packages now ship with Qt 5.15.3 and require macOS 10.13 or later. Support for the syntax "a not in b" with the same meaning as "not a in b" has been added.Ī macOS Arm 64 (Apple Silicon) package is now available. The previous use of whitespace as separator is deprecated and will be removed in a future version. Set elements must now be separated using a comma.Ī filter such as in. This can be used to avoid the complexity of using two levels of character escapes with regular expressions. Literal strings can now be specified using raw string syntax, identical to raw strings in the Python programming language. It is possible to use the syntax “a ~= b” or “a any_ne b” to recover the previous (inconsistent with "=") logic for not equal. This avoids the contradiction (a = b and a != b) being true. In particular this means filter expressions with multi-value fields like “ip.addr != 1.1.1.1” will work as expected (the result is the same as typing “ip.src != 1.1.1.1 and ip.dst != 1.1.1.1”). The expression “a != b” now always has the same meaning as “!(a = b)”.
