Patch Changes
-
#2205
af4adcd
Thanks @DylanPiercey! - Fix issue where native tags withno-update
were not having their key serialized from the server causing a hydration diffing issue in some cases. -
#2204
11acdf6
Thanks @DylanPiercey! - Fix regression where interpolating null/undefined in a script/style tag was being replaced with an empty string instead of toString'd and added.Eg
<script>${undefined}</>
was changed to render nothing, when previously it outputundefined
as a string inside the script.Note this behavior should not be relied on and will change in the next major of Marko to normalize the interpolated value to an empty string for nullish values.