Skip to content

Commit d1db525

Browse files
chore(deps): update .NET SDK to v5.11.1 (#2207)
1 parent 14882b7 commit d1db525

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
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)
11+
- Bump .NET SDK from v5.7.0-beta.0 to v5.11.1 ([#2154](https://github.com/getsentry/sentry-unity/pull/2154), [#2188](https://github.com/getsentry/sentry-unity/pull/2188), [#2207](https://github.com/getsentry/sentry-unity/pull/2207))
12+
- [changelog](https://github.com/getsentry/sentry-dotnet/blob/main/CHANGELOG.md#5111)
13+
- [diff](https://github.com/getsentry/sentry-dotnet/compare/5.7.0-beta.0...5.11.1)
1414
- 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))
1515
- [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#8140)
1616
- [diff](https://github.com/getsentry/sentry-java/compare/8.11.1...8.14.0)

src/sentry-dotnet

Submodule sentry-dotnet updated 138 files

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,13 @@ public Task FlushAsync(TimeSpan timeout)
8181
}
8282

8383
public void ConfigureScope(Action<Scope> configureScope) => _configureScopeCalls.Add(configureScope);
84+
public void ConfigureScope<TArg>(Action<Scope, TArg> configureScope, TArg arg) =>
85+
ConfigureScope(scope => configureScope.Invoke(scope, arg));
8486

8587
public Task ConfigureScopeAsync(Func<Scope, Task> configureScope) => Task.CompletedTask;
88+
public Task ConfigureScopeAsync<TArg>(Func<Scope, TArg, Task> configureScope, TArg arg) =>
89+
ConfigureScopeAsync(scope => configureScope.Invoke(scope, arg));
90+
8691
public void SetTag(string key, string value)
8792
{
8893
throw new NotImplementedException();

0 commit comments

Comments
 (0)