-
-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into fix/android-sample-rate
- Loading branch information
Showing
7 changed files
with
42 additions
and
5 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
version = 2.37.0 | ||
version = 2.38.0 | ||
repo = https://github.com/getsentry/sentry-cli |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
version = 8.38.0 | ||
version = 8.39.0 | ||
repo = https://github.com/getsentry/sentry-cocoa |
Submodule sentry-java
updated
91 files
Submodule sentry-native
updated
18 files
+4 −0 | .github/workflows/ci.yml | |
+67 −0 | .github/workflows/codeql.yml | |
+8 −0 | CHANGELOG.md | |
+1 −1 | include/sentry.h | |
+1 −1 | ndk/gradle.properties | |
+6 −1 | scripts/run_tests.ps1 | |
+6 −12 | src/backends/sentry_backend_crashpad.cpp | |
+14 −10 | src/modulefinder/sentry_modulefinder_linux.c | |
+4 −3 | src/path/sentry_path_windows.c | |
+5 −0 | src/sentry_core.c | |
+28 −0 | src/sentry_os.c | |
+2 −0 | src/sentry_os.h | |
+57 −0 | src/sentry_tracing.c | |
+2 −6 | src/sentry_utils.h | |
+2 −2 | tests/assertions.py | |
+1 −1 | tests/test_integration_http.py | |
+117 −0 | tests/unit/test_tracing.c | |
+2 −0 | tests/unit/tests.inc |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
using System; | ||
|
||
namespace Sentry.Unity.Tests.SharedClasses; | ||
|
||
public static class TestEnvironment | ||
{ | ||
/// <summary> | ||
/// See https://docs.github.com/en/actions/writing-workflows/choosing-what-your-workflow-does/store-information-in-variables#default-environment-variables | ||
/// </summary> | ||
public static bool IsGitHubActions | ||
{ | ||
get | ||
{ | ||
var isGitHubActions = Environment.GetEnvironmentVariable("GITHUB_ACTIONS"); | ||
return isGitHubActions?.Equals("true", StringComparison.OrdinalIgnoreCase) == true; | ||
} | ||
} | ||
} |