1e41f4b71Sopenharmony_ci# OpenHarmony 4.0.1 Release
2e41f4b71Sopenharmony_ci
3e41f4b71Sopenharmony_ci
4e41f4b71Sopenharmony_ci## Version Description
5e41f4b71Sopenharmony_ci
6e41f4b71Sopenharmony_ciOpenHarmony 4.0.1 Release provides enhanced system security over OpenHarmony 4.0 Release by rectifying functional issues, memory leak issues, and vulnerabilities in open-source components, and system stability issues. The matching SDK version is also updated.
7e41f4b71Sopenharmony_ci
8e41f4b71Sopenharmony_ci
9e41f4b71Sopenharmony_ci## Version Mapping
10e41f4b71Sopenharmony_ci
11e41f4b71Sopenharmony_ci**Table 1** Version mapping of software and tools
12e41f4b71Sopenharmony_ci
13e41f4b71Sopenharmony_ci| Software/Tool| Version| Remarks|
14e41f4b71Sopenharmony_ci| -------- | -------- | -------- |
15e41f4b71Sopenharmony_ci| OpenHarmony | 4.0.1 Release | NA |
16e41f4b71Sopenharmony_ci| Public SDK | Ohos_sdk_public 4.0.10.19 (API Version 10 Release) | This toolkit is intended for application developers and does not contain system APIs that require system permissions. It is provided as standard in DevEco Studio.|
17e41f4b71Sopenharmony_ci| (Optional) HUAWEI DevEco Studio| 4.0 Release | Recommended for developing OpenHarmony applications How to obtain:<br><br>SHA-256 checksum: 2c88cf43e1ef6ba722aac31eccc8ef92f07a9b72e43a9c1df127017828a22137<br><br>SHA-256 checksum: 25e491458eec50b4abddf5bed6aa85893801d70afbce02958f17bd904619405a<br><br>SHA-256 checksum: 284cb01f7b819e0da1d4fcacbbbbe8017ba220b5e3b9b1d5e4cc59ea30456acc |
18e41f4b71Sopenharmony_ci| (Optional) HUAWEI DevEco Device Tool| 4.0 Release | Recommended for developing OpenHarmony smart devices<br>[Click here](https://device.harmonyos.com/cn/develop/ide#download).|
19e41f4b71Sopenharmony_ci
20e41f4b71Sopenharmony_ci
21e41f4b71Sopenharmony_ci## Source Code Acquisition
22e41f4b71Sopenharmony_ci
23e41f4b71Sopenharmony_ci
24e41f4b71Sopenharmony_ci### Prerequisites
25e41f4b71Sopenharmony_ci
26e41f4b71Sopenharmony_ci1. Register your account with Gitee.
27e41f4b71Sopenharmony_ci
28e41f4b71Sopenharmony_ci2. Register an SSH public key for access to Gitee.
29e41f4b71Sopenharmony_ci
30e41f4b71Sopenharmony_ci3. Install the [git client](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git) and [git-lfs](https://gitee.com/vcs-all-in-one/git-lfs?_from=gitee_search#downloading), and configure user information.
31e41f4b71Sopenharmony_ci   ```
32e41f4b71Sopenharmony_ci   git config --global user.name "yourname"
33e41f4b71Sopenharmony_ci   git config --global user.email "your-email-address"
34e41f4b71Sopenharmony_ci   git config --global credential.helper store
35e41f4b71Sopenharmony_ci   ```
36e41f4b71Sopenharmony_ci
37e41f4b71Sopenharmony_ci4. Run the following commands to install the **repo** tool:
38e41f4b71Sopenharmony_ci   ```
39e41f4b71Sopenharmony_ci   curl -s https://gitee.com/oschina/repo/raw/fork_flow/repo-py3 > /usr/local/bin/repo  # If you do not have the permission, download the tool to another directory and configure it as an environment variable by running the chmod a+x /usr/local/bin/repo command.
40e41f4b71Sopenharmony_ci   pip3 install -i https://repo.huaweicloud.com/repository/pypi/simple requests
41e41f4b71Sopenharmony_ci   ```
42e41f4b71Sopenharmony_ci
43e41f4b71Sopenharmony_ci
44e41f4b71Sopenharmony_ci### Acquiring Source Code Using the repo Tool
45e41f4b71Sopenharmony_ci
46e41f4b71Sopenharmony_ci**Method 1 (recommended)**
47e41f4b71Sopenharmony_ci
48e41f4b71Sopenharmony_ciUse the **repo** tool to download the source code over SSH. (You must have an SSH public key for access to Gitee.)
49e41f4b71Sopenharmony_ci
50e41f4b71Sopenharmony_ci- Obtain the source code from the version branch. You can obtain the latest source code of the version branch, which includes the code that has been incorporated into the branch up until the time you run the following commands:
51e41f4b71Sopenharmony_ci   ```
52e41f4b71Sopenharmony_ci   repo init -u git@gitee.com:openharmony/manifest.git -b OpenHarmony-4.0.1-Release --no-repo-verify
53e41f4b71Sopenharmony_ci   repo sync -c
54e41f4b71Sopenharmony_ci   repo forall -c 'git lfs pull'
55e41f4b71Sopenharmony_ci   ```
56e41f4b71Sopenharmony_ci   
57e41f4b71Sopenharmony_ci- Obtain the source code from the version tag, which is the same as that released with the version.
58e41f4b71Sopenharmony_ci   ```
59e41f4b71Sopenharmony_ci   repo init -u git@gitee.com:openharmony/manifest.git -b refs/tags/OpenHarmony-v4.0.1-Release --no-repo-verify
60e41f4b71Sopenharmony_ci   repo sync -c
61e41f4b71Sopenharmony_ci   repo forall -c 'git lfs pull'
62e41f4b71Sopenharmony_ci   ```
63e41f4b71Sopenharmony_ci
64e41f4b71Sopenharmony_ci**Method 2**
65e41f4b71Sopenharmony_ci
66e41f4b71Sopenharmony_ciUse the **repo** tool to download the source code over HTTPS.
67e41f4b71Sopenharmony_ci
68e41f4b71Sopenharmony_ci- Obtain the source code from the version branch. You can obtain the latest source code of the version branch, which includes the code that has been incorporated into the branch up until the time you run the following commands:
69e41f4b71Sopenharmony_ci   ```
70e41f4b71Sopenharmony_ci   repo init -u https://gitee.com/openharmony/manifest -b OpenHarmony-4.0.1-Release --no-repo-verify
71e41f4b71Sopenharmony_ci   repo sync -c
72e41f4b71Sopenharmony_ci   repo forall -c 'git lfs pull'
73e41f4b71Sopenharmony_ci   ```
74e41f4b71Sopenharmony_ci   
75e41f4b71Sopenharmony_ci- Obtain the source code from the version tag, which is the same as that released with the version.
76e41f4b71Sopenharmony_ci   ```
77e41f4b71Sopenharmony_ci   repo init -u https://gitee.com/openharmony/manifest -b refs/tags/OpenHarmony-v4.0.1-Release --no-repo-verify
78e41f4b71Sopenharmony_ci   repo sync -c
79e41f4b71Sopenharmony_ci   repo forall -c 'git lfs pull'
80e41f4b71Sopenharmony_ci   ```
81e41f4b71Sopenharmony_ci
82e41f4b71Sopenharmony_ci
83e41f4b71Sopenharmony_ci### Acquiring Source Code from Mirrors
84e41f4b71Sopenharmony_ci
85e41f4b71Sopenharmony_ci
86e41f4b71Sopenharmony_ci**Table 2** Mirrors for acquiring source code
87e41f4b71Sopenharmony_ci
88e41f4b71Sopenharmony_ci| Source Code                               | Version| Mirror                                                | SHA-256 Checksum                                            | Software Package Size|
89e41f4b71Sopenharmony_ci| --------------------------------------- | ------------ | ------------------------------------------------------------ | ------------------------------------------------------------ | -------- |
90e41f4b71Sopenharmony_ci| Full code base (for mini, small, and standard systems)       | 4.0.1 Release  | [Download](https://repo.huaweicloud.com/openharmony/os/4.0.1-Release/code-v4.0.1-Release.tar.gz) | [Download](https://repo.huaweicloud.com/openharmony/os/4.0.1-Release/code-v4.0.1-Release.tar.gz.sha256) | 30.5 GB |
91e41f4b71Sopenharmony_ci| Hi3861 solution (binary)       | 4.0.1 Release  | [Download](https://repo.huaweicloud.com/openharmony/os/4.0.1-Release/hispark_pegasus.tar.gz) | [Download](https://repo.huaweicloud.com/openharmony/os/4.0.1-Release/hispark_pegasus.tar.gz.sha256) | 27.3 MB |
92e41f4b71Sopenharmony_ci| Hi3516 solution-LiteOS (binary)| 4.0.1 Release  | [Download](https://repo.huaweicloud.com/openharmony/os/4.0.1-Release/hispark_taurus_LiteOS.tar.gz) | [Download](https://repo.huaweicloud.com/openharmony/os/4.0.1-Release/hispark_taurus_LiteOS.tar.gz.sha256) | 302.5 MB |
93e41f4b71Sopenharmony_ci| Hi3516 solution-Linux (binary) | 4.0.1 Release  | [Download](https://repo.huaweicloud.com/openharmony/os/4.0.1-Release/hispark_taurus_Linux.tar.gz) | [Download](https://repo.huaweicloud.com/openharmony/os/4.0.1-Release/hispark_taurus_Linux.tar.gz.sha256) | 193.2 MB |
94e41f4b71Sopenharmony_ci| RK3568 standard system solution (binary)       | 4.0.1 Release  | [Download](https://repo.huaweicloud.com/openharmony/os/4.0.1-Release/dayu200_standard_arm32.tar.gz) | [Download](https://repo.huaweicloud.com/openharmony/os/4.0.1-Release/dayu200_standard_arm32.tar.gz.sha256) | 5.2 GB |
95e41f4b71Sopenharmony_ci| Public SDK package for the standard system (macOS)            | 4.0.10.19     | [Download](https://repo.huaweicloud.com/openharmony/os/4.0.1-Release/ohos-sdk-mac-public.tar.gz) | [Download](https://repo.huaweicloud.com/openharmony/os/4.0.1-Release/ohos-sdk-mac-public.tar.gz.sha256) | 2.0 GB |
96e41f4b71Sopenharmony_ci| Public SDK package for the standard system (macOS-M1)            | 4.0.10.19    | [Download](https://repo.huaweicloud.com/openharmony/os/4.0.1-Release/L2-SDK-MAC-M1-PUBLIC.tar.gz) | [Download](https://repo.huaweicloud.com/openharmony/os/4.0.1-Release/L2-SDK-MAC-M1-PUBLIC.tar.gz.sha256) | 800.7 MB |
97e41f4b71Sopenharmony_ci| Public SDK package for the standard system (Windows\Linux)  | 4.0.10.19     | [Download](https://repo.huaweicloud.com/openharmony/os/4.0.1-Release/ohos-sdk-windows_linux-public.tar.gz) | [Download](https://repo.huaweicloud.com/openharmony/os/4.0.1-Release/ohos-sdk-windows_linux-public.tar.gz.sha256) | 1.1 GB |
98e41f4b71Sopenharmony_ci
99e41f4b71Sopenharmony_ci## Description
100e41f4b71Sopenharmony_ci
101e41f4b71Sopenharmony_ciThis version has the following updates to OpenHarmony 4.0 Release.
102e41f4b71Sopenharmony_ci
103e41f4b71Sopenharmony_ci### Chip and Development Board Adaptation
104e41f4b71Sopenharmony_ci
105e41f4b71Sopenharmony_ciFor details about the adaptation status, see [SIG_DevBoard](https://gitee.com/openharmony/community/blob/master/sig/sig_devboard/sig_devboard.md).
106e41f4b71Sopenharmony_ci
107e41f4b71Sopenharmony_ci
108e41f4b71Sopenharmony_ci## Resolved Issues
109e41f4b71Sopenharmony_ci
110e41f4b71Sopenharmony_ci**Table 3** Resolved issues
111e41f4b71Sopenharmony_ci
112e41f4b71Sopenharmony_ci| Issue No.| Description|
113e41f4b71Sopenharmony_ci| -------- | -------- |
114e41f4b71Sopenharmony_ci| [I7BF3M](https://gitee.com/open_harmony/dashboard?issue_id=I7BF3M) | [OpenHarmony 4.0.7.5] App freezing occurs on launcher because STRINGID:APPLICATION_BLOCK_INPUT is stuck in libeventhandler.z.so. This issue occurs 194 times.|
115e41f4b71Sopenharmony_ci| [I7BFAQ](https://gitee.com/open_harmony/dashboard?issue_id=I7BFAQ) | [OpenHarmony 4.0.9.5] A C++ crash occurs on librender_service_base.z.so due to an error of the RSRenderThread thread in the com.ohos.photos process. This issue occurs 8 times.|
116e41f4b71Sopenharmony_ci| [I7BFCE](https://gitee.com/open_harmony/dashboard?issue_id=I7BFCE) | [OpenHarmony 4.0.9.5] A C++ crash occurs on librender_service_base.z.so due to an error of the com.ohos.mms thread in the com.ohos.mms process. This issue occurs 8 times.|
117e41f4b71Sopenharmony_ci| [I7HZKG](https://gitee.com/open_harmony/dashboard?issue_id=I7HZKG) | [OpenHarmony 4.0.8.3] A C++ crash occurs on libskia_canvaskit.z.so due to an error of the RSRenderThread thread in the msdp process. This issue occurs 10 times.|
118e41f4b71Sopenharmony_ci| [I7QP4W](https://gitee.com/open_harmony/dashboard?issue_id=I7QP4W) | [OpenHarmony 4.0.9.6] A JS crash occurs on setShowContactName of the com.ohos.mms process. This issue occurs 10 times.|
119e41f4b71Sopenharmony_ci| [I7QPBJ](https://gitee.com/open_harmony/dashboard?issue_id=I7QPBJ) | [OpenHarmony 4.0.9.6] A JS crash occurs on setReceiveContactValue of the com.ohos.mms process. This issue occurs 24 times.|
120e41f4b71Sopenharmony_ci| [I7RBGF](https://gitee.com/open_harmony/dashboard?issue_id=I7RBGF) | [OpenHarmony 4.0.9.6] App freezing occurs on the com.ohos.camera process because THREAD_BLOCK_6S is stuck in libsamgr_proxy.z.so. This issue occurs 202 times.|
121e41f4b71Sopenharmony_ci| [I7RSJJ](https://gitee.com/open_harmony/dashboard?issue_id=I7RSJJ) | [OpenHarmony 4.0.10.1] A C++ crash occurs on libgstreamer.z.so due to an error of the PlayerEngine thread of the media_service process. This issue occurs 12 times.|
122e41f4b71Sopenharmony_ci| [I7S75S](https://gitee.com/open_harmony/dashboard?issue_id=I7S75S) | [OpenHarmony 4.0.10.1] A C++ crash occurs on libipc_core.z.so due to an error of the IPC_1_28750 thread of the wifi_manager_se process. This issue occurs 8 times.|
123e41f4b71Sopenharmony_ci| [I7SAIU](https://gitee.com/open_harmony/dashboard?issue_id=I7SAIU) | [OpenHarmony 4.0.10.1] A C++ crash occurs on librender_service_base.z.so due to an error of the com.ohos.photos thread of the com.ohos.photos process. This issue occurs 12 times.|
124e41f4b71Sopenharmony_ci| [I7SCU4](https://gitee.com/open_harmony/dashboard?issue_id=I7SCU4) | [OpenHarmony 4.0.10.1] App freezing occurs on the com.ohos.photos process because THREAD_BLOCK_6S is stuck in libark_jsruntime.so. This issue occurs 20 times.|
125e41f4b71Sopenharmony_ci| [I7TGTW](https://gitee.com/open_harmony/dashboard?issue_id=I7TGTW) | [OpenHarmony 4.0.10.2] A C++ crash occurs on libace.z.so due to an error of the com.ohos.photos thread of the com.ohos.photos process. This issue occurs 443 times.|
126e41f4b71Sopenharmony_ci| [I7UUBH](https://gitee.com/open_harmony/dashboard?issue_id=I7UUBH) | [OpenHarmony 4.0.10.3] [Application subsystem] [ToC] [RK3568] [High probability 5/10] When Airplane mode is quickly enabled and disabled for multiple times in Settings, the WLAN icon on Control Panel is on while WLAN is disabled in Settings.|
127e41f4b71Sopenharmony_ci| [I7VBL8](https://gitee.com/open_harmony/dashboard?issue_id=I7VBL8) | [OpenHarmony 4.0.10.3] A C++ crash occurs on libcontactsdataability.z.so due to an error of the IPC_0_20828 thread of the com.ohos.contactsdataability process. This issue occurs 8 times.|
128e41f4b71Sopenharmony_ci| [I7X7N7](https://gitee.com/open_harmony/dashboard?issue_id=I7X7N7) | [OpenHarmony 4.0.10.3] A C++ crash occurs on libsurface.z.so due to an error of the IPC_0_645 thread of the render_service process. This issue occurs 11 times.|
129e41f4b71Sopenharmony_ci| [I7XKYN](https://gitee.com/open_harmony/dashboard?issue_id=I7XKYN) | [OpenHarmony 4.0.10.5] A C++ crash occurs on libweb_engine.so due to an error of the com.ohos.note thread of the com.ohos.note process. This issue occurs 6 times.|
130e41f4b71Sopenharmony_ci| [I7YRQG](https://gitee.com/open_harmony/dashboard?issue_id=I7YRQG) | [OpenHarmony_4.0.10.6] [USB service subsystem] [ToC] [RK3568] [Inevitable] The test_request test suite of the HDI interface is interrupted after eight test cases are executed.|
131e41f4b71Sopenharmony_ci| [I814ML](https://gitee.com/open_harmony/dashboard?issue_id=I814ML) | [OpenHarmony 4.0.10.6] A C++ crash occurs on libmedia_service.z.so due to an error of the IPC_0_648 thread of the media_service process. This issue occurs 22 times.|
132e41f4b71Sopenharmony_ci| [I815FD](https://gitee.com/open_harmony/dashboard?issue_id=I815FD) | [OpenHarmony 4.0.10.6] A C++ crash occurs on the ffrtwk/CPU-2-0 thread of the /system/bin/hdcd process. This issue occurs 14 times.|
133e41f4b71Sopenharmony_ci| [I82CA5](https://gitee.com/open_harmony/dashboard?issue_id=I82CA5) | [OpenHarmony 4.0.10.7] A C++ crash occurs on libipc_core.z.so due to an error of the IPC_4_12571 thread of the wifi_manager_se process. This issue occurs 15 times.|
134e41f4b71Sopenharmony_ci| [I82Q8W](https://gitee.com/open_harmony/dashboard?issue_id=I82Q8W) | [OpenHarmony 4.0.10.7] A C++ crash occurs on libsocket.z.so due to an error of the WorkerThread thread of the com.ohos.smartperf process. This issue occurs 8 times.|
135e41f4b71Sopenharmony_ci| [I81MUU](https://gitee.com/open_harmony/dashboard?issue_id=I81MUU) | [OpenHarmony 4.0.10.7] [RK3568] [Pressure test] [ToC] [Inevitable 10/10] Memory leakage occurs when a user touches an image folder in Gallery to browse images in grid form and then exits repeatedly. The memory usage increases to 200 MB within 8 hours.|
136e41f4b71Sopenharmony_ci| [I82DBO](https://gitee.com/open_harmony/dashboard?issue_id=I82DBO) | [OpenHarmony 4.0.10.7] [RK3568] [Pressure test] [ToC] [Inevitable 10/10] Memory leakage occurs when Wi-Fi is repeatedly enabled and disabled in Settings. The memory usage increases to 50 MB within 2 hours.|
137e41f4b71Sopenharmony_ci| [I82HFQ](https://gitee.com/open_harmony/dashboard?issue_id=I82HFQ) | [OpenHarmony 4.0.10.7sp5] App freezing occurs on the ohos.samples.distributedmusicplayer process because the UI_BLOCK_6S thread is stuck in libmedia_client.z.so. This issue occurs 50 times.|
138e41f4b71Sopenharmony_ci| [I82J4V](https://gitee.com/open_harmony/dashboard?issue_id=I82J4V) | [OpenHarmony 4.0.10.7] [RK3568] [Pressure test] [ToC] [High probability] [Manual] When an icon is dragged back and forth, a C++ crash occurs on libskia_canvaskit.z.so in the RSRenderThread thread of the msdp process.|
139e41f4b71Sopenharmony_ci| [I84866](https://gitee.com/open_harmony/dashboard?issue_id=I84866) | [OpenHarmony 4.0.10.9sp1] The com.ohos.smartperf process is stuck in libace.z.so due to APP_INPUT_BLOCK. This issue occurs 61 times.|
140e41f4b71Sopenharmony_ci| [I84QZZ](https://gitee.com/open_harmony/dashboard?issue_id=I84QZZ) | [OpenHarmony 4.0.10.9sp1] A C++ crash occurs on libcamera_pipeline_core.z.so due to an error of the collect#2 thread in the camera_host process. This issue occurs 9 times.|
141e41f4b71Sopenharmony_ci| [I84R11](https://gitee.com/open_harmony/dashboard?issue_id=I84R11) | [OpenHarmony 4.0.10.9sp1] A C++ crash occurs on libcamera_host_vdi_impl_1.0.z.so due to an error of the IPC_5_24615 thread in the camera_host process. This issue occurs 16 times.|
142e41f4b71Sopenharmony_ci| [I8661O](https://gitee.com/open_harmony/dashboard?issue_id=I8661O) | [OpenHarmony 4.0.10.10] App freezing occurs on the com.ohos.camera process because THREAD_BLOCK_6S is stuck in libsamgr_proxy.z.so. This issue occurs 335 times.|
143e41f4b71Sopenharmony_ci| [I869MO](https://gitee.com/open_harmony/dashboard?issue_id=I869MO) | [OpenHarmony 4.0.10.10] [RK3568] [Pressure test] [ToC] [Inevitable 10/10] Memory leakage occurs in libmediaquery when a user repeatedly touches an image in Gallery to maximize it and then exits. The memory usage increases to 180 MB within 12 hours.|
144e41f4b71Sopenharmony_ci| [I869WH](https://gitee.com/open_harmony/dashboard?issue_id=I869WH) | [OpenHarmony 4.0.10.10] A JS crash occurs in drawHighlighted of the com.ohos.smartperf process. This issue occurs 17 times.|
145e41f4b71Sopenharmony_ci| [I86M99](https://gitee.com/open_harmony/dashboard?issue_id=I86M99) | [OpenHarmony 4.0.10.10] [RK3568] [Pressure test] [ToC] [Inevitable 10/10] Memory leak occurs on Foundation during the wukong test.|
146e41f4b71Sopenharmony_ci| [I87XCI](https://gitee.com/open_harmony/dashboard?issue_id=I87XCI) | [OpenHarmony 4.1.2.1] App freezing occurs in the clock application. This issue occurs 16 times.       |
147e41f4b71Sopenharmony_ci| [I88UHY](https://gitee.com/open_harmony/dashboard?issue_id=I88UHY) | [OpenHarmony 4.0.10.11sp1] The com.ohos.photos process is stuck in libmediaquery.z.so due to THREAD_BLOCK_6S. This issue occurs 8 times.|
148e41f4b71Sopenharmony_ci| [I88UVQ](https://gitee.com/open_harmony/dashboard?issue_id=I88UVQ) | [OpenHarmony 4.0.10.10] [RK3568] [Pressure test] [ToC] [Inevitable 10/10] Memory leak occurs on WMS when Foundation is split during the wukong test.|
149e41f4b71Sopenharmony_ci| [I890O6](https://gitee.com/open_harmony/dashboard?issue_id=I890O6) | [OpenHarmony_4.0.10.11] [Kernel subsystem] [ToC] [RK3568] [Inevitable 3/3] When traces are captured in the application sliding scenario, the stub point (H: HandleEndScene) in the trace is lost.|
150e41f4b71Sopenharmony_ci| [I89EUH](https://gitee.com/open_harmony/dashboard?issue_id=I89EUH) | [OpenHarmony 4.0.10.11sp2] App freezing occurs on the com.ohos.camera process because THREAD_BLOCK_6S is stuck in libsamgr_proxy.z.so. This issue occurs 732 times.|
151e41f4b71Sopenharmony_ci| [I89FA5](https://gitee.com/open_harmony/dashboard?issue_id=I89FA5) | [Weekly Branch] [RK3568] [Distributed Data] [ToC] [Inevitable 3/3] The DctsDistributedObjectDisJsTest test case fails.|
152e41f4b71Sopenharmony_ci| [I89JHP](https://gitee.com/open_harmony/dashboard?issue_id=I89JHP) | [OpenHarmony 4.0 Release] [RK3568] [DSoftBus] [ToC] [Inevitable 3/3] The SUB_Softbus_Trans_Comp_SendBytes_Fun_0800 test case provides the same function but is not compatible with earlier versions.|
153e41f4b71Sopenharmony_ci| [I8A7Y4](https://gitee.com/open_harmony/dashboard?issue_id=I8A7Y4) | [OpenHarmony_4.1.2.2] [USB service subsystem] [ToC] [RK3568] [Inevitable] The broadcast listening test case about port function switching used by test_usbevent cannot be executed, and an error is reported when the UT test suite is executed.|
154e41f4b71Sopenharmony_ci| [I8AR1A](https://gitee.com/open_harmony/dashboard?issue_id=I8AR1A) | [OpenHarmony 4.0.10.11sp2] [4.0 Release] [Application subsystem] [RK3568] [Inevitable] The Gallery application functions abnormally.|
155e41f4b71Sopenharmony_ci| [I8DD5M](https://gitee.com/open_harmony/dashboard?issue_id=I8DD5M) | [OpenHarmony 4.0.10.15] [Application subsystem] [RK3568] [Inevitable 5/5] Gallery widget covers cannot be automatically refreshed.|
156e41f4b71Sopenharmony_ci| [I8DM2R](https://gitee.com/open_harmony/dashboard?issue_id=I8DM2R) | [OpenHarmony 4.0.10.13] App freezing occurs on the com.ohos.camera process because THREAD_BLOCK_6S is stuck in libcamera_framework.z.so. This issue occurs 924 times.|
157e41f4b71Sopenharmony_ci| [I92HFJ](https://gitee.com/open_harmony/dashboard?issue_id=I92HFJ) | [OpenHarmony 4.0.10.16sp2] A C++ crash occurs on libipc_core.z.so in the wifi_manager_se process. This issue occurs 77 times.|
158e41f4b71Sopenharmony_ci| [I957IR](https://gitee.com/open_harmony/dashboard?issue_id=I957IR) | [OpenHarmony 4.0.10.16sp2] App freezing occurs due to THREAD_BLOCK_6S in the ohos.samples.etsclock process. This issue occurs 43 times.|
159e41f4b71Sopenharmony_ci| [I9H8J6](https://gitee.com/open_harmony/dashboard?issue_id=I9H8J6) | It takes a longer time for the file management subsystem to call the OpenSSL interface during startup than that in 4.0.10.11.|
160e41f4b71Sopenharmony_ci| [I90FM1](https://gitee.com/open_harmony/dashboard?issue_id=I90FM1) | [Pressure test] A C++ crash occurs on libipc_core.z.so due to an error of the IPC_2_2577 thread of the wifi_manager_se process. This issue occurs 42 times.|
161e41f4b71Sopenharmony_ci
162e41f4b71Sopenharmony_ci## Fixed Security Vulnerabilities
163e41f4b71Sopenharmony_ci
164e41f4b71Sopenharmony_ci**Table 4** Fixed security vulnerabilities
165e41f4b71Sopenharmony_ci
166e41f4b71Sopenharmony_ci| Issue No.                                                       | Description                                                    |
167e41f4b71Sopenharmony_ci| ------------------------------------------------------------ | ------------------------------------------------------------ |
168e41f4b71Sopenharmony_ci| [I6U81V](https://gitee.com/open_harmony/dashboard?issue_id=I6U81V) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2023-30456          |
169e41f4b71Sopenharmony_ci| [I6V7QA](https://gitee.com/open_harmony/dashboard?issue_id=I6V7QA) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2023-1829            |
170e41f4b71Sopenharmony_ci| [I6V7V2](https://gitee.com/open_harmony/dashboard?issue_id=I6V7V2) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2023-1872            |
171e41f4b71Sopenharmony_ci| [I6X3GE](https://gitee.com/open_harmony/dashboard?issue_id=I6X3GE) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2023-2002           |
172e41f4b71Sopenharmony_ci| [I6Y8IE](https://gitee.com/open_harmony/dashboard?issue_id=I6Y8IE) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2023-2194            |
173e41f4b71Sopenharmony_ci| [I6ZJDC](https://gitee.com/open_harmony/dashboard?issue_id=I6ZJDC) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2023-31436          |
174e41f4b71Sopenharmony_ci| [I6ZUSY](https://gitee.com/open_harmony/dashboard?issue_id=I6ZUSY) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2023-2248           |
175e41f4b71Sopenharmony_ci| [I708T3](https://gitee.com/open_harmony/dashboard?issue_id=I708T3) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2023-2124            |
176e41f4b71Sopenharmony_ci| [I70B17](https://gitee.com/open_harmony/dashboard?issue_id=I70B17) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2023-2483           |
177e41f4b71Sopenharmony_ci| [I71KHX](https://gitee.com/open_harmony/dashboard?issue_id=I71KHX) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2023-32233          |
178e41f4b71Sopenharmony_ci| [I7FM6A](https://gitee.com/open_harmony/dashboard?issue_id=I7FM6A) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2023-35788            |
179e41f4b71Sopenharmony_ci| [I7SZTB](https://gitee.com/open_harmony/dashboard?issue_id=I7SZTB) | [Vulnerability] [OpenHarmony_4.0.10.2] CVE-2015-8955               |
180e41f4b71Sopenharmony_ci| [I7SZWH](https://gitee.com/open_harmony/dashboard?issue_id=I7SZWH) | [Vulnerability] [OpenHarmony_4.0.10.2] CVE-2023-4128               |
181e41f4b71Sopenharmony_ci| [I7XCCQ](https://gitee.com/open_harmony/dashboard?issue_id=I7XCCQ) | [Vulnerability] [OpenHarmony_4.0.10.5] CVE-2022-40982              |
182e41f4b71Sopenharmony_ci| [I934PZ](https://gitee.com/open_harmony/dashboard?issue_id=I934PZ) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2024-23775          |
183e41f4b71Sopenharmony_ci| [I93ART](https://gitee.com/open_harmony/dashboard?issue_id=I93ART) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2023-43615          |
184e41f4b71Sopenharmony_ci| [I944MQ](https://gitee.com/open_harmony/dashboard?issue_id=I944MQ) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2024-25062          |
185e41f4b71Sopenharmony_ci| [I94IJY](https://gitee.com/open_harmony/dashboard?issue_id=I94IJY) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2024-24806          |
186e41f4b71Sopenharmony_ci| [I952U8](https://gitee.com/open_harmony/dashboard?issue_id=I952U8) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2024-762126596168486912|
187e41f4b71Sopenharmony_ci| [I966TM](https://gitee.com/open_harmony/dashboard?issue_id=I966TM) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2024-762126168387227648|
188e41f4b71Sopenharmony_ci| [I966UT](https://gitee.com/open_harmony/dashboard?issue_id=I966UT) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2024-762133623825502208|
189e41f4b71Sopenharmony_ci| [I9BS9L](https://gitee.com/open_harmony/dashboard?issue_id=I9BS9L) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2023-52444           |
190e41f4b71Sopenharmony_ci| [I9BUAF](https://gitee.com/open_harmony/dashboard?issue_id=I9BUAF) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2019-19768          |
191e41f4b71Sopenharmony_ci| [I9C46A](https://gitee.com/open_harmony/dashboard?issue_id=I9C46A) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2023-52438          |
192e41f4b71Sopenharmony_ci| [I9F1XE](https://gitee.com/open_harmony/dashboard?issue_id=I9F1XE) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2021-45485          |
193e41f4b71Sopenharmony_ci| [I9FE7O](https://gitee.com/open_harmony/dashboard?issue_id=I9FE7O) | [Vulnerability] [OpenHarmony 4.0 Release] CVE-2022-3566            |
194e41f4b71Sopenharmony_ci| [I818FO](https://gitee.com/open_harmony/dashboard?issue_id=I818FO) | [Vulnerability] [OpenHarmony 4.0.10.7] CVE-2023-21636              |
195e41f4b71Sopenharmony_ci| [I818G7](https://gitee.com/open_harmony/dashboard?issue_id=I818G7) | [Vulnerability] [OpenHarmony_4.0.10.7] CVE-2023-4881               |
196e41f4b71Sopenharmony_ci
197e41f4b71Sopenharmony_ci## Known Issues
198e41f4b71Sopenharmony_ci
199e41f4b71Sopenharmony_ci**Table 5** Known issues
200e41f4b71Sopenharmony_ci
201e41f4b71Sopenharmony_ci| Issue No.| Description| Impact| To Be Resolved By|
202e41f4b71Sopenharmony_ci| -------- | -------- | -------- | -------- |
203e41f4b71Sopenharmony_ci| I827LU | Memory leakage occurs when Bluetooth is repeatedly enabled and disabled in Settings. A memory leak of 15 MB occurs within one hour.| A memory leak of 8.3 KB occurs for one Bluetooth enable/disable operation. This issue can be resolved by restarting the device. The impact is controllable.<br>You are advised to use the protocol stack of the Bluetooth module built in the chip or hardware to avoid this issue.| May 30|
204e41f4b71Sopenharmony_ci
205e41f4b71Sopenharmony_ci <!--no_check-->