v4.1.0
Allows concatenating string and []byte.
This is useful for using the return value of the built-in json() function, for example:
{{ "{foo:"+json("asd")+"}" }}
This would previously render as {foo:[34 97 115 100 34]}
but will now render as {foo:"asd"}
).