Denis Koroskin
Denis Koroskin
Very very interested in this work!
@DeagleGross I'm pretty sure this bug and your fix have very little to do with each other. The REAL fix is this: https://github.com/dotnet/aspnetcore/pull/59646 The problem described here is that MultipartReader.ReadNextSectionAsync()...
@r-Larch The boundary is correct from what I can see. Here is a snapshot of what crashpad_handler.exe is uploading when it detects a crash (part of google crashpad): ``` POST...
Hopefully this visualization will help: Semi-transparent nodes are the leaks. Edges are how the nodes are connected to each other. Even though Fragment's _vnode._children was updated to contain the new...
The issue here is that props.children point to the original hierarchy and never change. But Fragment creates its own _children which does change and is accurate. This is probably a...
`Delete props.children on unmount/update/... --> would need Suspense re-implemented will this be safer? `c.props.children = newVNode._children;` this is actually more accurate because newVNode._children is updated in-place with correct references after...