For the full list of changes, check out the Webiny 6.4.10external link release on GitHub.

Webiny SDK
anchor

Fixed Unchecked Result Access Causing Cryptic Errors (#5625external link)
anchor

{/ REVIEW-PENDING @brunozoric — confirm this entry, then delete this line /}

When using the Result pattern internally, accessing .value on a failed result would break code execution with no meaningful error message. All Result values are now properly checked before access, preventing these cryptic failures and improving error handling throughout the codebase.

Website Builder
anchor

Fixed Grid Column Stacking Flash on SSR (#5628external link)
anchor

{/ REVIEW-PENDING @adrians5j — confirm this entry, then delete this line /}

Grid columns configured to stack at a specific breakpoint would briefly render side-by-side on page load before snapping to stacked layout — or stay broken entirely if the content didn’t hydrate. This happened because stacking was resolved in JavaScript after hydration, not from the actual viewport width.

Stacking is now applied via a scoped CSS media query rendered in the HTML, so the browser applies the correct layout immediately based on viewport width — no JavaScript required, no layout flash.