You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixed a SIGILL crash when processing deeply nested HTML in concurrent operations like scrapeStream and crawlAndScrape. The Markdown converter previously used unbounded recursion to walk the DOM tree. Inside a TaskGroup child task, the smaller per-task stack could overflow on pages with deeply nested elements, producing an illegal-instruction fault on Apple Silicon. The converter now uses an explicit heap stack, handling arbitrarily deep DOM without data loss or depth limits