You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+17-1
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,16 @@
1
1
# Changelog
2
2
3
+
## Unreleased
4
+
5
+
> ![Important]
6
+
> Version 8.21.0 introduced an issue for app launch profiling **only for macOS apps that run without a sandbox** (i.e. distributed outside the Mac App Store).
7
+
> This issue could lead to starting the app launch profiler even when it's not configured via the options.
8
+
> We recommend upgrading to at least this version.
9
+
10
+
### Fixes
11
+
12
+
- Non-sandboxed macOS app launch profile configuration are now respected (#5144)
13
+
3
14
## 8.49.1
4
15
5
16
### Fixes
@@ -17,7 +28,7 @@
17
28
- New continuous profiling configuration API (#4952 and #5063)
18
29
19
30
> [!Important]
20
-
> With the addition of the new profiling configuation API, the previous profiling API are deprecated and will be removed in the next major version of the SDK:
31
+
> With the addition of the new profiling configuration API, the previous profiling API are deprecated and will be removed in the next major version of the SDK:
21
32
>
22
33
> -`SentryOptions.enableProfiling`
23
34
> -`SentryOptions.isProfilingEnabled`
@@ -897,6 +908,11 @@ The following two features, disabled by default, were mistakenly added to the re
897
908
898
909
## 8.21.0
899
910
911
+
> ![Important]
912
+
> This version introduced an issue for app launch profiling **only for macOS apps that run without a sandbox** (i.e. distributed outside the Mac App Store).
913
+
> This issue could lead to starting the app launch profiler even when it's not configured via the options.
914
+
> We recommend upgrading to at least version 8.49.2.
915
+
900
916
### Features
901
917
902
918
- Add support for Sentry [Spotlight](https://spotlightjs.com/) (#3642), which is basically Sentry
Copy file name to clipboardExpand all lines: Samples/iOS-Swift/iOS-Swift-UITests/UserFeedbackUITests.swift
+1
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,7 @@ class UserFeedbackUITests: BaseUITest {
8
8
letfm=FileManager.default
9
9
10
10
/// The Application Support directory is different between this UITest runner app and the target app under test. We have to retrieve the target app's app support directory using UI elements and store it here for usage.
11
+
/// - note: The SDK does not use application support for anything. We only use the app support directory for these tests to write marker files from the app indicating which feedback hooks have fired.
0 commit comments