Releases: getsentry/symbolicator
Releases · getsentry/symbolicator
0.4.2
0.4.1
Features
- Very basic shared-cache support, allowing multiple symbolicators to share one global cache and have faster warmup times. (#581)
- Support concurrency control and backpressure on uploading to shared cache. (#584)
- Use Google Application Credentials to authenticate to GCS in the shared cache. (#591)
Fixes
- Truncate Malformed and Cache-Specific entries in the cache to match the length of their contents, in case they overwrote some longer, existing entry. (#586)
0.4.0
Features
symbolic
- Bump symbolic to support versioning of CFI Caches. (#467)
- Update symbolic to write versioned CFI Caches, and fix SymCache conversion related to inline-parent offset. (#470)
- Update symbolic to allow processing PDB files with broken inlinee records. (#477)
- Update symbolic to correctly apply bcsymbolmaps to symbol and filenames coming from DWARF. (#479)
- Update symbolic to correctly restore registers when using compact unwinding. (#487)
New Config Settings
- Introduced
max_download_timeout
for source downloads, which defaults to 315s. (#482, #489, #503) - Introduced
streaming_timeout
for source downloads, which defaults to 250s. (#489, #503) - Introduced
connect_timeout
for source downloads, which has a default of 15s. (#491, #496) - Introduced
max_concurrent_requests
config setting, which limits the number of requests that will be processed concurrently. It defaults toSome(120)
. (#521, #537) - Introduced
hostname_tag
(#513) - Introduced
max_lazy_redownloads
andmax_lazy_recomputations
for downloaded and derived caches respectively. These limit the number of downloads and cache computations that can be performed in the background. (#535) - Introduced
custom_tags
for metrics (#569)
Everything else
- S3 sources: add support for custom regions. (#448)
- GCS, S3, HTTP, and local filesystem sources: Attempt to retry failed downloads at least once. (#485)
- Refresh symcaches when a new
BcSymbolMap
becomes available. (#493) - Cache download failures and do not retry the download for a while (#484, #501)
- Introduced a new cache status to represent failures specific to the cache: Download failures that aren't related to the file being missing in download caches and conversion errors in derived caches. Download failure entries expire after 1 hour, and conversion errors expire after 1 day, or after symbolicator is restarted. (#509)
- Malformed and Cache-specific Error cache entries now contain some diagnostic info. (#510)
- Source candidates which symbolicator has failed to download due to non-400 errors are now being returned in symbolication payloads. These candidates include additional diagnostic info which briefly describes the download error. (#512)
- If a DIF object candidate could not be downloaded due to a lack of permissions, their respective entry in a symbolication response will now mention something about permissions instead of marking the candidate as just Missing. (#512, #518)
- Symbolication tasks are being spawned on a tokio 1 Runtime now. (#531)
- Symbolicator now allows explicitly versioning its caches. It will fall back to supported outdated cache versions immediately instead of eagerly waiting for updated cache files. Recomputations of newer cache versions are being done lazily in the background, bounded by new settings
max_lazy_redownloads
andmax_lazy_recomputations
for downloaded and derived caches respectively. (#524, #533, #535) - Remove actix-web in favor of axum. This changes the web framework and also completely switches to the tokio 1 Runtime. (#544)
- Search for all known types of debug companion files during symbolication, in case there exists for example an ELF debug companion for a PE. (#555)
Fixes
- Skip trailing garbage frames after
_start
. (#514) - Respect the build_id provided on the commandline of wasm-split. (#554)
- Update symbolic to a version with more lenient ELF parsing which is able to process invalid flutter 2.5 debug files. (#562)
Tools
symsorter
no longer emits files with empty debug identifiers. (#469)- MacOS universal builds (x86_64 + ARM in one fat binary) of symbolicator, symsorter and wasm-split can be downloaded from GitHub releases now. (#565, #568)
Internal
0.3.4
Features
- Add support for BCSymbolMap auxiliary files which when present on the symbol server will automatically resolve obfuscated symbol names (#403)
- S3 sources: add support for using AWS container credentials provided by IAM task roles. (#417)
- Implement new Symbolication Quality Metrics. (#426)
- Convert stackwalking/cfi loading into a fixpoint iteration. (#450)
Bug Fixes
- Update the mtime of a cache when it is 1h out of date. (#390)
- Bump symbolic to fix large public records. (#385, #387)
- Bump symbolic to support
debug_addr
indexes in DWARF functions. (#389) - Fix retry of DIF downloads from sentry (#397)
- Remove expired cache entries in auxdifs and diagnostics (#444)
- Bump symbolic to update other DWARF and WASM handling dependencies, and improve support for compact unwind information, including stackless functions in MachO, with special handling for
_sigtramp
. (#457)
Tools
wasm-split
can remove names with--strip-names
. (#412)- Linux x64 builds of
symsorter
andwasm-split
can be downloaded from GitHub releases now. (#422)
0.3.3
Features
- Add NotFound status for sources which didn't provide any DIF object candidates. (#327)
- Symbolication responses include download, debug and unwind information about all DIF object files which were looked up on the available object sources. (#309 #316 #324 #344)
Bug Fixes
- Silently ignore unknown fields in minidump and apple crash report requests instead of responding with
400 Bad Request
. (#321) - Update breakpad to allow processing MIPS minidumps and support reading MIPS debug sections. (#325)
- Improve amd64 stack scanning by excluding some false-positive frames. (#325)
- Resolve correct line information for large inline functions.
Internal
- Changed the internal HTTP transport layer. There is no expected difference in the way Symbolicator downloads files from symbol servers, although some internal timeouts and error messages may change. (#335)
- Report more descriptive errors if symbolication fails with internal errors, timeouts or crashes. (#365)
- Remove an unused threadpool. (#370, #378)
0.3.2
0.3.1
0.3.0
Features
- Publish Docker containers to DockerHub at
getsentry/symbolicator
. (#271) - Add
processing_pool_size
configuration option that allows to set the size of the processing pool. (#273) - Use a dedicated
tmp
sub-directory in the cache directory to write temporary files into. (#265) - Use STATSD_SERVER environment variable to set metrics.statsd configuration option (#182)
- Added WASM support. (#301)