chore(deps): update Native SDK to v0.13.2#4996
Open
github-actions[bot] wants to merge 2 commits intomainfrom
Open
chore(deps): update Native SDK to v0.13.2#4996github-actions[bot] wants to merge 2 commits intomainfrom
github-actions[bot] wants to merge 2 commits intomainfrom
Conversation
Collaborator
|
Ran build manually, since this doesn't appear to have been triggered automatically by our CI workflows for some reason: |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #4996 +/- ##
==========================================
- Coverage 73.90% 73.88% -0.03%
==========================================
Files 497 497
Lines 17957 17957
Branches 3516 3516
==========================================
- Hits 13271 13267 -4
- Misses 3825 3832 +7
+ Partials 861 858 -3 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
8aac444 to
42f6534
Compare
Contributor
Author
Semver Impact of This PR⚪ None (no version bump detected) 📋 Changelog PreviewThis is how your changes will appear in the changelog. Features ✨
Fixes 🐛
Dependencies ⬆️Deps
Other
🤖 This preview updates automatically when you update the PR. |
Fixes: ``` sentry-native.lib(sentry_batcher.obj) : error LNK2019: unresolved external symbol WaitOnAddress referenced in function batcher_thread_func sentry-native.lib(sentry_batcher.obj) : error LNK2019: unresolved external symbol WakeByAddressSingle referenced in function sentry__batcher_enqueue ``` See also: - getsentry/sentry-native#1558
jpnurmi
approved these changes
Mar 11, 2026
Collaborator
There was a problem hiding this comment.
I've updated Sentry.Native.targets to include the new Synchronization.lib dependency on Windows:
It fixed the linking issue caught by integration tests:
sentry-native.lib(sentry_batcher.obj) : error LNK2019: unresolved external symbol WaitOnAddress referenced in function batcher_thread_func
sentry-native.lib(sentry_batcher.obj) : error LNK2019: unresolved external symbol WakeByAddressSingle referenced in function sentry__batcher_enqueue
Flash0ver
approved these changes
Mar 11, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Bumps modules/sentry-native from 0.13.1 to 0.13.2.
Auto-generated by a dependency updater.
Changelog
0.13.2
Features:
nativecrash handling backend as an alternative tocrashpad,breakpad, andinproc. This backend uses an out-of-process daemon that monitors the application for crashes, generates minidumps, and sends crash reports to Sentry. It supports Linux, macOS, and Windows, and is fully compatible with TSAN and ASAN sanitizers. This feature is experimental and under active development. (#1433)sentry_log()for plain-string log messages. (#1566)sentry_set_release()/sentry_set_environment()for updating release and environment after SDK init. (#1555)Fixes: