Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
**Internal**:

- Add `SENTRY_SDK_VERSION` CMake cache variable to allow downstream SDKs to override the SDK version at configuration time. ([#1417](https://github.com/getsentry/sentry-native/pull/1417))
- Updated `crashpad` to 2025-10-22. ([#1426](https://github.com/getsentry/sentry-native/pull/1426), [crashpad#136](https://github.com/getsentry/crashpad/pull/136), [mini_chromium#4](https://github.com/getsentry/mini_chromium/pull/4)).

## 0.11.3

Expand Down
2 changes: 1 addition & 1 deletion external/crashpad
Submodule crashpad updated 207 files
5 changes: 5 additions & 0 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,11 @@ endif()
# backends
if(SENTRY_BACKEND_CRASHPAD)
target_compile_definitions(sentry PRIVATE SENTRY_BACKEND_CRASHPAD)
if(MSVC)
target_compile_options(sentry PRIVATE
$<$<COMPILE_LANGUAGE:C,CXX>:/wd4127> # Conditional expression is constant.
)
endif()
sentry_target_sources_cwd(sentry
backends/sentry_backend_crashpad.cpp
)
Expand Down
Loading