From b7b7dfcbbc9589d72ce9244d0554445574e04a17 Mon Sep 17 00:00:00 2001 From: GitHub Date: Thu, 16 Jul 2026 03:59:02 +0000 Subject: [PATCH 1/3] chore: update src/sentry-dotnet to 6.7.0 --- CHANGELOG.md | 6 +++--- src/sentry-dotnet | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d09cdfdc1..b2f4419bb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,9 +4,9 @@ ### Dependencies -- Bump .NET SDK from v6.5.0-33-g0140be0a to v6.6.0 ([#2761](https://github.com/getsentry/sentry-unity/pull/2761)) - - [changelog](https://github.com/getsentry/sentry-dotnet/blob/main/CHANGELOG.md#660) - - [diff](https://github.com/getsentry/sentry-dotnet/compare/6.5.0-33-g0140be0a...6.6.0) +- Bump .NET SDK from v6.5.0-33-g0140be0a to v6.7.0 ([#2761](https://github.com/getsentry/sentry-unity/pull/2761), [#2762](https://github.com/getsentry/sentry-unity/pull/2762)) + - [changelog](https://github.com/getsentry/sentry-dotnet/blob/main/CHANGELOG.md#670) + - [diff](https://github.com/getsentry/sentry-dotnet/compare/6.5.0-33-g0140be0a...6.7.0) ## 4.7.0 diff --git a/src/sentry-dotnet b/src/sentry-dotnet index 8a7a62f60..4385deaaf 160000 --- a/src/sentry-dotnet +++ b/src/sentry-dotnet @@ -1 +1 @@ -Subproject commit 8a7a62f604971b89857aedd6cb1f42baedb91c0a +Subproject commit 4385deaafa1091e2e6b69862b5941c381549d493 From 81d135652f06b5beb15b8447a65f5205881c7fc4 Mon Sep 17 00:00:00 2001 From: bitsandfoxes Date: Thu, 16 Jul 2026 10:17:56 +0200 Subject: [PATCH 2/3] updated logging integration for logger --- .../Integrations/UnityApplicationLoggingIntegration.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Sentry.Unity/Integrations/UnityApplicationLoggingIntegration.cs b/src/Sentry.Unity/Integrations/UnityApplicationLoggingIntegration.cs index 334bb4153..fb12722e2 100644 --- a/src/Sentry.Unity/Integrations/UnityApplicationLoggingIntegration.cs +++ b/src/Sentry.Unity/Integrations/UnityApplicationLoggingIntegration.cs @@ -157,7 +157,7 @@ private void ProcessStructuredLog(string message, LogType logType) _hub.GetTraceIdAndSpanId(out var traceId, out var spanId); SentryLog log = new(_clock.GetUtcNow(), traceId, ToLogLevel(logType), message) { SpanId = spanId }; - log.SetDefaultAttributes(_options, UnitySdkInfo.Sdk); + log.SetDefaultAttributes(_options, _hub.GetScope(), UnitySdkInfo.Sdk); log.SetOrigin("auto.log.unity"); _hub.Logger.CaptureLog(log); From 3d3fcef2eb8de53870f9fa4240483c2b691ff548 Mon Sep 17 00:00:00 2001 From: bitsandfoxes Date: Thu, 16 Jul 2026 10:18:12 +0200 Subject: [PATCH 3/3] updated global.json to be in line with dotnet --- global.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/global.json b/global.json index f4a804a7a..efdc469cd 100644 --- a/global.json +++ b/global.json @@ -1,7 +1,7 @@ { "sdk": { - "version": "10.0.203", - "workloadVersion": "10.0.203", + "version": "10.0.301", + "workloadVersion": "10.0.301", "rollForward": "disable", "allowPrerelease": false }