Skip to content

Commit 14882b7

Browse files
chore(deps): update .NET SDK to v5.10.0 (#2188)
1 parent 7d17416 commit 14882b7

File tree

3 files changed

+13
-4
lines changed

3 files changed

+13
-4
lines changed

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88

99
### Dependencies
1010

11+
- 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))
12+
- [changelog](https://github.com/getsentry/sentry-dotnet/blob/main/CHANGELOG.md#5100)
13+
- [diff](https://github.com/getsentry/sentry-dotnet/compare/5.7.0-beta.0...5.10.0)
1114
- Bump Java SDK from v8.11.1 to v8.14.0 ([#2155](https://github.com/getsentry/sentry-unity/pull/2155), [#2199](https://github.com/getsentry/sentry-unity/pull/2199))
1215
- [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#8140)
1316
- [diff](https://github.com/getsentry/sentry-java/compare/8.11.1...8.14.0)
14-
- Bump .NET SDK from v5.7.0-beta.0 to v5.7.0 ([#2154](https://github.com/getsentry/sentry-unity/pull/2154))
15-
- [changelog](https://github.com/getsentry/sentry-dotnet/blob/main/CHANGELOG.md#570)
16-
- [diff](https://github.com/getsentry/sentry-dotnet/compare/5.7.0-beta.0...5.7.0)
1717
- 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))
1818
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#8510)
1919
- [diff](https://github.com/getsentry/sentry-cocoa/compare/8.50.1...8.51.0)

src/sentry-dotnet

Submodule sentry-dotnet updated 122 files

test/Sentry.Unity.Tests/Stubs/TestHub.cs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,15 @@ public Task FlushAsync(TimeSpan timeout)
8383
public void ConfigureScope(Action<Scope> configureScope) => _configureScopeCalls.Add(configureScope);
8484

8585
public Task ConfigureScopeAsync(Func<Scope, Task> configureScope) => Task.CompletedTask;
86+
public void SetTag(string key, string value)
87+
{
88+
throw new NotImplementedException();
89+
}
90+
91+
public void UnsetTag(string key)
92+
{
93+
throw new NotImplementedException();
94+
}
8695

8796
public void BindClient(ISentryClient client)
8897
{

0 commit comments

Comments
 (0)