Skip to content

Conversation

github-actions[bot]
Copy link

Bumps modules/sentry-native from 0.7.2 to 0.11.0.

Auto-generated by a dependency updater.

Changelog

0.11.0

Breaking changes:

  • Add user_data parameter to traces_sampler. (#1346)

Fixes:

  • Include stddef.h explicitly in crashpad since future libc++ revisions will stop providing this include transitively. (#1375, crashpad#132)
  • Fall back on JWASM in the MinGW crashpad build only if no CMAKE_ASM_MASM_COMPILER has been defined. (#1375, crashpad#133)
  • Prevent crashpad from leaking Objective-C ARC compile options into any parent target linkage. (#1375, crashpad#134)
  • Fixed a TOCTOU race between session init/shutdown and event capture. (#1377)
  • Make the Windows resource generation aware of config-specific output paths for multi-config generators. (#1383)
  • Remove the ASM language from the top-level CMake project, as this triggered CMake policy CMP194 which isn't applicable to the top-level. (#1384)

Features:

  • Add a configuration to disable logging after a crash has been detected - sentry_options_set_logger_enabled_when_crashed(). (#1371)

Internal:

  • Support downstream Xbox SDK specifying networking initialization mechanism. (#1359)
  • Added crashpad support infrastructure for the external crash reporter feature. (#1375, crashpad#131)

Docs:

  • Document the CMake 4 requirement on macOS SDKROOT due to its empty default for CMAKE_OSX_SYSROOT in the README. (#1368)

Thank you:

0.10.1

Internal:

  • Correctly apply dynamic mutex initialization in unit-tests (fixes running unit-tests in downstream console SDKs). (#1337)

0.10.0

Breaking changes:

  • By using transactions as automatic trace boundaries, transactions will, by default, no longer be part of the same singular trace. This is not the case when setting trace boundaries explicitly (sentry_regenerate_trace() or sentry_set_trace()), which turns off the automatic management of trace boundaries. (#1270)
  • Change transaction sampling to be trace-based. This does not affect you when transactions are used for automatic trace boundaries (as described above), since every transaction is part of a new trace. However, if you manage trace boundaries manually (using sentry_regenerate_trace()) or run the Native SDK inside a downstream SDK like the Unity SDK, where these SDKs will manage the trace boundaries, for a given traces_sample_rate, either all transactions in a trace get sampled or none do with probability equal to that sample rate. (#1254)
  • Moved Xbox toolchains to an Xbox-specific repository sentry-xbox. You can request access to the repository by following the instructions in Xbox documentation. (#1329)

Features:

  • Add sentry_clear_attachments() to allow clearing all previously added attachments in the global scope. (#1290)
  • Automatically set trace boundaries with every transaction. (#1270)
  • Provide sentry_regenerate_trace() to allow users to set manual trace boundaries. (#1293)
  • Add Dynamic Sampling Context (DSC) to events. (#1254)
  • Add sentry_value_new_feedback and sentry_capture_feedback to allow capturing User Feedback. (#1304)
    • Deprecate sentry_value_new_user_feedback and sentry_capture_user_feedback in favor of the new API.
  • Add sentry_envelope_read_from_file, sentry_envelope_get_header, and sentry_capture_envelope. (#1320)
  • Add (u)int64 sentry_value_t type. (#1326)

Meta:

  • Marked deprecated functions with SENTRY_DEPRECATED(msg). (#1308)

Internal:

  • Crash events from Crashpad now have event_id defined similarly to other backends. This makes it possible to associate feedback at the time of crash. (#1319)

0.9.1

Features:

  • The sentry_attach_file/bytes, sentry_scope_attach_file/bytes (and their wide-string variants), and sentry_remove_attachment have been added to modify the list of attachments that are sent along with sentry events after a call to sentry_init. (#1266, #1275)
    • NOTE: When using the crashpad backend on macOS, the list of attachments that will be added at the time of a hard crash will be frozen at the time of sentry_init, and later modifications will not be reflected.
  • Add sentry_attachment_set_content_type to allow specifying the content type of attachments. (#1276)
  • Add sentry_attachment_set_filename to allow specifying the filename of attachments displayed in the Sentry WebUI. (#1285)

Meta:

  • Identify Xbox as a separate SDK name sentry.native.xbox. (#1287)

Internal:

0.9.0

Breaking changes:

  • Limiting the proguard rules in the NDK package moves the burden of the configuration to its users. Please ensure to configure proguard in your project so native methods in your namespace can be symbolicated if they appear in stack traces. (#1250)
  • When tags, contexts, and extra data are applied to events, the event data now takes precedence over the scope data as outlined in the Hub & Scope Refactoring developer document and the linked RFC code example. (#1253)

Features:

  • Provide before_send_transaction callback. (#1236)
  • Add support for capturing events with local scopes. (#1248)
  • Add Windows support for the crashpad_wait_for_upload flag. (#1255, crashpad#126)

Fixes:

  • Reduce the scope of the proguard rules in the NDK package to local namespaces. (#1250)
  • Close the file and return 0 on success when writing raw envelopes. (#1260)
  • Fix event tags, contexts, and extra data to take precedence when applying scope data. (#1253)

Docs:

  • Document convenience PowerShell runners for formatting and tests on Windows. (#1247)

0.8.5

Breaking changes:

  • Use propagation_context as the single source of trace_id for spans and events. Transactions no longer create a new trace, but inherit the trace from the propagation_context created during SDK initialization. This context can be later modified through sentry_set_trace() (primarily used by other SDKs). (#1200)

Features:

  • Add sentry_value_new_user(id, username, email, ip_address) function to avoid ambiguous user-context-keys. (#1228)

Fixes:

  • Remove compile-time check for the libcurl feature AsynchDNS. (#1206)
  • Support musl on Linux. (#1233)

Thank you:

0.8.4

Features:

  • Provide an option for downstream SDKs to attach a view hierarchy file. (#1191)

Fixes:

  • Provide a more defensive automatic thread stack guarantee. (#1196)

0.8.3

Features:

  • Add an option to attach screenshots on Windows to fatal error events. (#1170, crashpad#123)
  • Add an option for Crashpad on Linux to delay application shutdown until the upload of the crash report in the crashpad_handler is complete. This is useful for deployment in Docker or systemd, where the life cycle of additional processes is bound by the application life cycle. (#1153, crashpad#121)
  • Expose traces_sample_rate option for synchronization with Android SDK. (#1176)

Thank you:

0.8.2

Fixes:

  • Provide a mutex-initializer on platforms with no static pthread initializer for recursive mutexes. (#1113)

Features:

Thank you:

Nerixyz

0.8.1

Features:

  • Added sentry_set_trace(). The primary use for this is to allow other SDKs to propagate their trace context. This allows Sentry to connect events on all layers. (#1137)

0.8.0

Breaking changes:

  • Return type of sentry_capture_minidump() and sentry_capture_minidump_n() changed from void to sentry_uuid_t to retrieve the event-id for a successful minidump upload. (#1138)

Features:

  • Ensure support for http_proxy and https_proxy environment variables across all transports. (#1111)

Fixes:

  • Ensure that sentry_capture_minidump() fails if the provided minidump path cannot be attached, instead of sending a crash event without minidump. (#1138)
  • Fix Xbox OS name being reported incorrectly. (#1148)

Thank you:

zsd4yr

0.7.20

Features:

  • Auto-detect the latest GDK and Windows SDK for the Xbox build. (#1124)
  • Enable debug-option by default when running in a debug-build. (#1128)

Fixes:

  • Allow older toolchains with assemblers that don't support PAC-stripping instructions on aarch64 to compile crashpad. (#1125, crashpad#118)
  • Set default max_spans to 1000. (#1132)

0.7.19

Fixes:

0.7.18

Features:

0.7.17

Features:

  • [NDK] Expose option to set handler strategy. (#1099)
  • Add Linux distributions to the OS context. (#963)

Fixes:

  • Add metadata pointer check to prevent crashes when cleaning the crashpad database. (#1102, crashpad#115)

0.7.16

Features:

  • Add SOCKS5 proxy support for macOS and Linux. (#1063)
  • Extend performance API with explicit timings. (#1093)

0.7.15

Fixes:

  • Fix DLL versioning for projects that add the Native SDK as a CMake subdirectory. (#1086)

0.7.14

Features:

  • Android NDK: Add .loadNativeLibraries() method to allow pre-loading .so files. (#1082)
  • Fill the ucontext_t field in the sentry_ucontext_t [on_crash|before_send]-hook parameter on macOS from the breakpad backend. (#1083, breakpad#39)

Thank you:

saf-e

0.7.13

Features:

  • Provide version information for non-static Windows binaries. (#1076, crashpad#110)
  • Add an alternative handler strategy to inproc to support .NET on Linux and Mono on Android (specifically, .NET MAUI). (#1027)

Fixes:

  • Correct the timeout specified for the upload-task awaiting dispatch_semaphore_wait() when using an HTTP-proxy on macOS. (#1077, crashpad#111)
  • Emit transaction.data inside context.trace.data. (#1075)

Thank you:

olback

0.7.12

Features:

  • Add sentry_capture_minidump() to capture independently created minidumps. (#1067)

Fixes:

  • Add breadcrumb ringbuffer to avoid O(n) memmove on adding more than max breadcrumbs. (#1060)

0.7.11

Fixes:

  • Reject invalid trace- and span-ids in context update from header. (#1046)
  • Lookup GetSystemTimePreciseAsFileTime() at runtime and fall back to GetSystemTimeAsFileTime() to allow running on Windows < 8. (#1051)
  • Allow for empty DSN to still initialize crash handler. (#1059)

0.7.10

Fixes:

  • Correct the timestamp resolution to microseconds on Windows. (#1039)

Thank you:

0.7.9

Fixes:

  • Check file-writer construction when writing envelope to path. (#1036)

0.7.8

Features:

  • Let the envelope serialization stream directly to the file. (#1021)
  • Support 16kb page sizes on Android 15. (#1028)

0.7.7

Fixes:

  • Further clean up of the exported dependency configuration. (#1013, crashpad#106)
  • Clean-up scope flushing synchronization in crashpad-backend. (#1019, crashpad#109)
  • Rectify user-feedback comment parameter guard. (#1020)

Internal:

Thank you:

0.7.6

Fixes:

  • Remove remaining build blockers for the crashpad backend on Windows ARM64 when using LLVM-MINGW. (#1003, crashpad#101)
  • Ensure crashpad targets are included when building as a shared library using our exported CMake config. (#1007)
  • Use find_dependency() instead of find_package() in the exported CMake config. (#1007, #1008, crashpad#104)

Thank you:

0.7.5

Features:

  • Change the timestamp resolution to microseconds. (#995)

Internal:

  • (Android) Switch ndk back to libc++_static, and hide it from prefab (#996)

0.7.4

Fixes:

  • Allow crashpad to run under Epic's Anti-Cheat Client by deferring the full crashpad_handler access rights to the client application until a crash occurred. (#980, crashpad#99)
  • Reserve enough stack space on Windows for our handler to run when the stack is exhausted from stack-overflow. (#982)
  • Only configure a sigaltstack in inproc if no previous configuration exists on Linux and Android. (#982)
  • Store transaction data in the event property extra since the data property is discarded by relay. (#986)

Docs:

  • Add compile-time flag SENTRY_TRANSPORT_COMPRESSION description to the README.md file. (#976)

Internal:

  • Move sentry-android-ndk JNI related parts from sentry-java to sentry-native (#944)
    This will create a pre-built io.sentry:sentry-native-ndk maven artifact, suitable for being consumed by Android apps.

Thank you:

@github-actions github-actions bot force-pushed the deps/modules/sentry-native/0.11.0 branch from d1b5cfe to cfdec62 Compare September 19, 2025 03:32
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant