6.0.0
Major Changes
-
#241
e8cbf66
Thanks @developit! - Improve performance by another 5-10% usingswitch
and short-circuiting, and move pretty-printing + shallow rendering intopreact-render-to-string/jsx
. -
#282
6376f62
Thanks @JoviDeCroock! - Remove trailing space for void_elements, this could fail some test_assertions as
<img />
will become<img/>
, the otherVOID_ELEMENTS
this will be applied for
can be found here -
#286
7a8b590
Thanks @JoviDeCroock! - Remove the castin to VNode forpreact/debug
, this is fixed in Preact >= 10.13.0
Patch Changes
-
#286
7a8b590
Thanks @JoviDeCroock! - Change style calculation to use a Set rather than Regex -
#285
a0546fe
Thanks @JoviDeCroock! - Fix CJS export -
#288
0b04860
Thanks @glenchao! - Enumerate draggable attribute, so the output isn'tdraggable
butdraggable="true"
-
#283
3defa9d
Thanks @JoviDeCroock! - Follow up fixes to #278 -
#289
07ebc66
Thanks @JoviDeCroock! - Supportdata
attribute -
#270
5c6877d
Thanks @developit! - improve unmount option hook call performance -
#278
8cf7cef
Thanks @JoviDeCroock! - Improve performance by- storing the void_elements in a Set
- hoisting the
x-link
regex - remove case-insensitive from regexes and calling
.toLowerCase()
instead - caching suffixes for css-props