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
5 changes: 1 addition & 4 deletions .github/actions/environment/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,6 @@ runs:
shell: bash
run: |
pwd
dotnet workload install \
wasm-tools wasm-tools-net8 maui-android android mobile-librarybuilder \
${{ runner.os == 'macOS' && 'maui-ios maui-maccatalyst maui-windows macos' || '' }} \
${{ runner.os == 'Windows' && 'maui-ios maui-maccatalyst maui-windows' || '' }} \
dotnet workload restore \
--temp-dir "${{ runner.temp }}" \
--skip-sign-check
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@

- Added StartSpan and GetTransaction methods to the SentrySdk ([#4303](https://github.com/getsentry/sentry-dotnet/pull/4303))

### Dependencies

- Bump Native SDK from v0.9.0 to v0.9.1 ([#4309](https://github.com/getsentry/sentry-dotnet/pull/4309))
- [changelog](https://github.com/getsentry/sentry-native/blob/master/CHANGELOG.md#091)
- [diff](https://github.com/getsentry/sentry-native/compare/0.9.0...0.9.1)

## 5.11.2

### Fixes
Expand Down
2 changes: 1 addition & 1 deletion modules/sentry-native
Submodule sentry-native updated 68 files
+1 −1 .github/workflows/ci.yml
+17 −0 CHANGELOG.md
+9 −10 CMakeLists.txt
+5 −2 CONTRIBUTING.md
+2 −0 README.md
+58 −2 examples/example.c
+1 −1 external/breakpad
+1 −1 external/crashpad
+1 −1 external/third_party/lss
+158 −11 include/sentry.h
+1 −1 ndk/gradle.properties
+8 −1 src/CMakeLists.txt
+7 −6 src/backends/sentry_backend_breakpad.cpp
+76 −0 src/backends/sentry_backend_crashpad.cpp
+7 −6 src/backends/sentry_backend_inproc.c
+3 −3 src/modulefinder/sentry_modulefinder_windows.c
+13 −0 src/path/sentry_path.c
+7 −4 src/path/sentry_path_unix.c
+11 −2 src/path/sentry_path_windows.c
+4 −4 src/screenshot/sentry_screenshot_windows.c
+260 −0 src/sentry_attachment.c
+80 −0 src/sentry_attachment.h
+2 −0 src/sentry_backend.h
+107 −40 src/sentry_core.c
+58 −10 src/sentry_envelope.c
+8 −2 src/sentry_envelope.h
+6 −0 src/sentry_json.c
+7 −4 src/sentry_logger.c
+18 −46 src/sentry_options.c
+1 −19 src/sentry_options.h
+8 −7 src/sentry_os.c
+5 −0 src/sentry_path.h
+6 −4 src/sentry_ratelimiter.c
+74 −2 src/sentry_scope.c
+2 −0 src/sentry_scope.h
+3 −0 src/sentry_slice.c
+9 −4 src/symbolizer/sentry_symbolizer_unix.c
+2 −2 src/symbolizer/sentry_symbolizer_windows.c
+4 −0 src/unwinder/sentry_unwinder.c
+26 −4 tests/assertions.py
+3 −4 tests/cmake.py
+1 −1 tests/fixtures/screenshot/CMakeLists.txt
+12 −5 tests/test_integration_crashpad.py
+2 −2 tests/test_integration_http.py
+10 −0 tests/test_unit.py
+20 −4 tests/unit/CMakeLists.txt
+3 −1 tests/unit/fuzz.c
+24 −2 tests/unit/sentry_testsupport.h
+347 −0 tests/unit/test_attachments.c
+1 −0 tests/unit/test_consent.c
+6 −5 tests/unit/test_envelopes.c
+1 −0 tests/unit/test_failures.c
+4 −1 tests/unit/test_fuzzfailures.c
+1 −1 tests/unit/test_modulefinder.c
+3 −1 tests/unit/test_mpack.c
+11 −0 tests/unit/test_path.c
+1 −0 tests/unit/test_ratelimiter.c
+1 −0 tests/unit/test_slice.c
+1 −1 tests/unit/test_symbolizer.c
+4 −1 tests/unit/test_sync.c
+54 −5 tests/unit/test_tracing.c
+1 −1 tests/unit/test_unwinder.c
+46 −46 tests/unit/test_utils.c
+3 −1 tests/unit/test_value.c
+7 −0 tests/unit/tests.inc
+1 −1 tests/win_utils.py
+1 −1 toolchains/xbox/CMakeGDKScarlett.cmake
+2 −2 vendor/acutest.h
Loading