Changelog¶
1.5.14 (2025/03/07)¶
-
Added new RUM
Resource
data fieldsresource_first_byte_time
,resource_dns_time
,resource_download_time
,resource_connect_time
,resource_ssl_time
,resource_redirect_time
, supporting enhanced display of Resource timing in Guance and alignment with APM flame graphs. -
Enabled
FTMobileConfig.enableDataIntegerCompatible
by default. -
Added support for disabling SDK internal URLSession Method Swizzling via the macro definition
FT_DISABLE_SWIZZLING_RESOURCE
. -
Optimized data synchronization, added retry logic for failed transmissions.
1.5.13 (2025/02/27)¶
- Optimized page collection logic to prevent missing RUM View collection due to special views.
1.5.12 (2025/02/10)¶
- Adjusted file storage path configuration to fix database creation failure issues in tvOS environment.
- Updated the default
service
and logsource
in the tvOS environment todf_rum_tvos
anddf_rum_tvos_log
respectively. - Fixed inaccurate calculation of
duration
in RUM Action events.
1.5.11 (2025/02/05)¶
- Optimized RUM Resource collection to prevent SDK internal requests from being collected when automatic Resource collection is enabled.
- Fixed Widget Extension skyWalking type trace failures.
1.5.10 (2025/01/21)¶
- Supported intercepting Requests through
FTTraceConfig.traceInterceptor
for custom Trace, and adding custom properties to RUM Resources usingFTRumConfig.resourcePropertyProvider
. - Fixed exceptions caused by dynamic global attribute addition methods under multi-threaded access.
- Optimized WebView data transmission.
1.5.9 (2025/01/08)¶
- Added support for intercepting
URLRequest
through theFTURLSessionDelegate.traceInterceptor
block for custom tracing and modifying spanId and traceId in traces. - Supported collecting network requests initiated via swift async/await URLSession API in RUM Resources.
- Fixed errors in associating LongTask and ANR with Views.
1.5.8 (2024/12/23)¶
- Added support for tvOS.
- Supported limiting the maximum number of cached RUM entries via
FTRUMConfig.rumCacheLimitCount
and setting discard policies viaFTRUMConfig.rumDiscardType
. - Supported restricting total cache size via
FTMobileConfig.enableLimitWithDbSize
. When enabled,FTLoggerConfig.logCacheLimitCount
andFTRUMConfig.rumCacheLimitCount
become ineffective. Supported setting db discard policies viaFTMobileConfig.dbDiscardType
and db cache limits viaFTMobileConfig.dbCacheLimit
.
1.5.7 (2024/12/04)¶
- Supported setting freeze detection thresholds via
FTRUMConfig.freezeDurationMs
. - Optimized the SDK's
shutDown
method to avoid deadlocks or WatchDog crashes caused by main thread synchronous waiting.
1.5.6 (2024/11/13)¶
- Supported configuring deflate compression for synchronized data via
FTMobileConfig.compressIntakeRequests
. - Added
addAction:actionType:property
andstartAction:actionType:property:
methods to RUM, optimizing RUM Action collection logic. - Fixed crashes caused by deprecated NSFileHandle APIs.
1.5.5 (2024/11/06)¶
- Fixed crashes caused by out-of-bounds arrays in
FTResourceMetricsModel
.
1.5.4 (2024/10/18)¶
- Added dynamic settings for global, log, and RUM globalContext attributes.
- Added a method to clear all unsynced data.
- Increased the maximum interval between syncs to 5000 milliseconds.
1.5.3 (2024/10/09)¶
- Fixed memory access errors caused by incorrect property modifiers during LongTask and ANR collection.
- Replaced method signature validation assertions in
FTSwizzler
with internal warning logs. - Optimized decimal precision of collected data.
1.5.2 (2024/08/21)¶
- Fixed the missing
#include <arm/_mcontext.h>
header file issue when compiling with Xcode 16. - Filtered out directly cached or unknown type Resources during automatic RUM-Resource collection to prevent duplication.
- Fixed UITabBarController subview loadingTime calculation logic.
1.5.1 (2024/08/02)¶
- Fixed line protocol data escaping algorithm issues causing sync failures due to newline characters.
- Standardized error messages for errors of type
network_error
to use English descriptions for HTTP status codes. - Optimized data sync logic and fixed crashes caused by accessing released
uploadDelayTimer
in multi-threaded environments. - Fixed crashes caused by incorrect encoding formats when converting OC and C strings during crash data collection.
1.5.0 (2024/06/03)¶
- Added remote IP address resolution for RUM resource network requests.
- Added integer compatibility mode for line protocol data to handle web data type conflicts.
- Added custom status methods for logging.
- Optimized log writing and data sync.
- Handled NSDictionary parameters passed to the SDK to prevent JSON conversion failures and data loss.
1.4.14 (2024/05/29)¶
- Fixed memory access errors caused by accessing destroyed Class objects in
FTSwizzler
. - Fixed data consistency and operation conflict issues when NSMutableDictionary-type parameters were passed as mutable objects.
1.4.13 (2024/05/15)¶
- Optimized RUM LongTask and ANR collection, fixing inaccurate stack trace collection and adding support for fatal freezes.
- Fixed crashes caused by simultaneous multi-threaded operations on NSMutableSet in
FTSwizzler
. - Fixed missing version information in SDK Framework info.plist.
- Fixed performance metric collection failures for Resources when custom NSURLSession did not set delegate.
- Optimized internal log-to-file functionality, adding methods to specify file paths.
1.4.12 (2024/04/26)¶
- Fixed memory leaks caused by calling the shutDown method.
- Fixed crashes caused by conflicts with other libraries during RUM-Resource collection.
- Fixed uncaught exception handler passing issues.
- Fixed data anomalies caused by multiple SDK initializations.
1.4.11 (2024/03/28)¶
- Added support for data sync parameter configuration, including request item data, sync interval time, and log cache entry count.
- Added internal log-to-file methods.
- Fixed errors in obtaining RUM data associated with logs.
- Optimized time-consuming operations.
- Fixed crashes caused by WebView jsBridge, changing WebView references to weak references.