diff --git a/CHANGELOG.md b/CHANGELOG.md index 0e737bf873c..a379f1d4c78 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ ## 8.16.1 +### Features + +- SwiftUI support is no longer in Beta (#3441) + ### Fixes - Fix inaccurate number of frames for transactions (#3439) diff --git a/Sources/SentrySwiftUI/SentryTracedView.swift b/Sources/SentrySwiftUI/SentryTracedView.swift index bf3cd710aa3..ca409f93740 100644 --- a/Sources/SentrySwiftUI/SentryTracedView.swift +++ b/Sources/SentrySwiftUI/SentryTracedView.swift @@ -5,8 +5,6 @@ import SwiftUI import SentryInternal #endif -/// - warning: This is an experimental feature and may still have bugs. -/// /// A control to measure the performance of your views and send the result as a transaction to Sentry.io. /// /// You create a transaction by wrapping your views with this. @@ -96,7 +94,6 @@ public struct SentryTracedView: View { @available(iOS 13, macOS 10.15, tvOS 13, watchOS 6.0, *) public extension View { - /// - warning: This is an experimental feature and may still have bugs. func sentryTrace(_ viewName: String? = nil) -> some View { return SentryTracedView(viewName) { return self