From ac42589f6881973290cc2ce79ae8e75433c1d472 Mon Sep 17 00:00:00 2001 From: Josh Brown Date: Fri, 10 Jan 2025 17:36:57 -0500 Subject: [PATCH 1/2] disable automatic tracking in Sentry --- Nos/Service/CrashReporting.swift | 3 --- 1 file changed, 3 deletions(-) diff --git a/Nos/Service/CrashReporting.swift b/Nos/Service/CrashReporting.swift index b4e3b6073..ada1b0d0a 100644 --- a/Nos/Service/CrashReporting.swift +++ b/Nos/Service/CrashReporting.swift @@ -28,9 +28,6 @@ class CrashReporting { #elseif DEV options.environment = "debug" #endif - options.enableTracing = true - options.tracesSampleRate = 0.3 // tracing must be enabled for profiling - options.profilesSampleRate = 0.3 // see also `profilesSampler` if you need custom sampling logic // Enable all experimental features options.attachViewHierarchy = true options.enablePreWarmedAppStartTracing = true From e0e57c3a8715bc5b1c118d72f7e70451d01acf77 Mon Sep 17 00:00:00 2001 From: Josh Brown Date: Fri, 10 Jan 2025 18:02:59 -0500 Subject: [PATCH 2/2] update CHANGELOG --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0f89acdf6..76b87a0a4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Internal Changes - Added function for creating a new list and a test verifying list editing. [#112](https://github.com/verse-pbc/issues/issues/112) - Localized strings on the feed filter drop-down view. +- Disabled automatic tracking in Sentry. [#126](https://github.com/verse-pbc/issues/issues/126) ## [1.1] - 2025-01-03Z