Releases: gurgunday/ghtml
v3.1.0
v3.0.13
After dancing with V8's internals, tracing every instruction's graceful flow through V8 source code, bytecode, and TurboFan's optimized output, we've reached peak performance. Each line has been tuned to the limit, ensuring your server whispers through template rendering with the lightest possible touch on the CPU.
Full Changelog: v3.0.12...v3.0.13
v3.0.12
What's Changed
- fix: treat Symbol the same as array.join in dae37b0 by @gurgunday
Full Changelog: v3.0.10...v3.0.12
v3.0.10
Full Changelog: v3.0.9...v3.0.10
v3.0.9
v3.0.8
Issue: In previous versions, we used == null
to check if values were null
or undefined
. This check inadvertently included document.all
due to its unique behavior of being nullish in equality checks despite being an object. This was causing inconsistencies in certain browser environments where document.all
is used as a legacy feature.
Fix: The equality check has been updated to use the nullish coalescing operator ??
. This ensures that only null
or undefined
values are filtered out.
Full Changelog: v3.0.7...v3.0.8
v3.0.7
Full Changelog: v3.0.6...v3.0.7
v3.0.6
Full Changelog: v3.0.5...v3.0.6