Skip to content

chore(deps): update .NET SDK to v5.10.0 #2188

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
- Bump Java SDK from v8.11.1 to v8.12.0 ([#2155](https://github.com/getsentry/sentry-unity/pull/2155))
- [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#8120)
- [diff](https://github.com/getsentry/sentry-java/compare/8.11.1...8.12.0)
- Bump .NET SDK from v5.7.0-beta.0 to v5.7.0 ([#2154](https://github.com/getsentry/sentry-unity/pull/2154))
- [changelog](https://github.com/getsentry/sentry-dotnet/blob/main/CHANGELOG.md#570)
- [diff](https://github.com/getsentry/sentry-dotnet/compare/5.7.0-beta.0...5.7.0)
- Bump .NET SDK from v5.7.0-beta.0 to v5.10.0 ([#2154](https://github.com/getsentry/sentry-unity/pull/2154), [#2188](https://github.com/getsentry/sentry-unity/pull/2188))
- [changelog](https://github.com/getsentry/sentry-dotnet/blob/main/CHANGELOG.md#5100)
- [diff](https://github.com/getsentry/sentry-dotnet/compare/5.7.0-beta.0...5.10.0)
- Bump Cocoa SDK from v8.50.1 to v8.51.0 ([#2160](https://github.com/getsentry/sentry-unity/pull/2160), [#2166](https://github.com/getsentry/sentry-unity/pull/2166))
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#8510)
- [diff](https://github.com/getsentry/sentry-cocoa/compare/8.50.1...8.51.0)
Expand Down
2 changes: 1 addition & 1 deletion src/sentry-dotnet
Submodule sentry-dotnet updated 122 files
9 changes: 9 additions & 0 deletions test/Sentry.Unity.Tests/Stubs/TestHub.cs
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,15 @@ public Task FlushAsync(TimeSpan timeout)
public void ConfigureScope(Action<Scope> configureScope) => _configureScopeCalls.Add(configureScope);

public Task ConfigureScopeAsync(Func<Scope, Task> configureScope) => Task.CompletedTask;
public void SetTag(string key, string value)
{
throw new NotImplementedException();
}

public void UnsetTag(string key)
{
throw new NotImplementedException();
}

public void BindClient(ISentryClient client)
{
Expand Down
Loading