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
Fixes issue with String and Int comparison. For example, device.appBuildString == "5690201", was converting the appBuildString to an Integer and so the Int to String comparison wasn't working. This was a regression in 1.0.12.
Adds truthiness and string normalization so value such as "true", "false", "1.1" etc are treated as true, false, 1.1. This occurs on both left and right side of an expression.
Adds conversion methods bool.toString(), float.toString(), int.toString(), bool.toString() and string.toBool(),string.toInt(), string.toFloat() to enable typecasting in CEL
Truthiness
Fixes issues with undeclared references for properties by wrapping them in a has(x)? x : Null tertiary expression