Features:
- Symbolicate stack frames in crash daemon on Windows. (#1595)
- Add offline caching support to the new experimental
nativebackend. (#1585)
Fixes:
- Fix
cache_keepto only cache envelopes when HTTP send fails, instead of unconditionally on restart. (#1585) - Fix external crash reporter to work with the new experimental
nativebackend. (#1589) - Fix crash daemon premature exit on Windows (#1600)
- native: Fix incorrect stacktraces on Linux by merging ELF segment mappings from
/proc/pid/maps. Without merging,base_of_imagepointed to the code segment instead of the real ELF load base, breaking server-side CFI unwinding. (#1588) - native: Fix single-frame stacktraces on x86_64 and
-fomit-frame-pointerbuilds by capturing DWARF-based backtraces (via libunwind) in the signal handler. The daemon now prefers these over FP-based walking, which fails when RBP is used as a general-purpose register. (#1588) - native: Fix missing thread names on Windows (#1601)