Release Notes¶
ft_sdk¶
Position: The main HarmonyOS RUM and Log SDK, responsible for application basic initialization, RUM data collection, log collection, Trace correlation, and automatic network request tracking.
0.1.14-alpha05 (2026/05/11)¶
- No functional changes. Version number aligned with
ft_sdk_ext.
0.1.14-alpha04 (2026/04/30)¶
- Fixed an issue where dynamic attributes (including user data) were missing during View data confirmation.
- Fixed an occasional instability issue with random UserID assignment.
0.1.14-alpha03 (2026/04/14)¶
- Moved the capability based on
@kit.NetworkKitHttpInterceptorfromft_sdkto the newft_sdk_extmodule to maintain core SDK compatibility with older compilers. - Retained the RCP and Axios-compatible automatic collection capabilities within
ft_sdk. - Added a shared network helper layer to reuse automatic collection logic between the core and extension modules without exposing symbols specific to the new compiler.
0.1.14-alpha02 (2026/04/10)¶
- Added
applyFTAxiosTrack, supporting automatic collection for@ohos/axiosversion 2.2.4 via Axios request/response interceptors. - Retained the Axios automatic collection method based on
interceptorChain, supporting@ohos/axiosversion 2.2.8 and above.
0.1.14-alpha01 (2026/04/02)¶
- Added HTTP automatic collection capability based on
@kit.NetworkKitinterceptors. - Added support for automatic collection of
@ohos/axios, reusing the HTTP interceptor chain. - Unified the API exports for network tracking helpers for RCP and HTTP.
0.1.13-alpha01 (2026/03/13)¶
- Decoupled
ft_nativefromft_sdk, providing a clearer integration method. - When a project depends on
ft_native, Native Crash collection is automatically supported. - Dependency requirement:
ft_native >= 0.1.0-alpha02.
ft_sdk_ext¶
Position: HarmonyOS extension module, hosting APIs related to the @kit.NetworkKit HttpInterceptor chain under newer compiler and platform capabilities.
0.1.14-alpha05 (2026/05/11)¶
- Updated the supported
compatibleApirange to API 22.
0.1.14-alpha04 (2026/04/30)¶
- No functional changes. Version number aligned with
ft_sdk.
0.1.14-alpha03 (2026/04/14)¶
- Added the
ft_sdk_extHAR module to isolate newer HarmonyOS APIs such asHttpInterceptorandHttpRequestContext. - Added
createFTHttpInterceptorChainandapplyFTHttpTrackfor HTTP automatic collection based onHttpInterceptorChain. - Added
applyFTAxiosChainMethodBridgeto supplement request method bridging for AxiosinterceptorChainscenarios. - Aligned the version generation process between
ft_sdk_extandft_sdk, and added local HAR integration instructions.
ft_native¶
Position: HarmonyOS Native Crash extension module, used to supplement native layer crash collection capabilities. Must be used in conjunction with ft_sdk.
0.1.0-alpha02 (2026/03/13)¶
- Decoupled from
ft_sdk, allowing independent integration of Native Crash capability based on dependencies. - Optimized SDK version log output.
- Adapted for
ft_sdk >= 0.1.13-alpha01.
0.1.0-alpha01 (2026/02/09)¶
- Fixed an issue where JavaScript Crashes were incorrectly identified as Native Crashes.
- Added crash type filtering to only report genuine Native Crashes to
FTNativeCrashAdapter. - Prevented duplicate reporting of JS Crashes and Native Crashes.