1# Bundle Manager Subsystem ChangeLog
2
3## cl.bundlemanager.1 Name Change of the Bundle Manager Distributed Query Module
4
5The name of the bundle manager distributed query module in API version 9 is changed from **ohos.bundle.distributedBundle** to **[ohos.bundle.distributedBundleManager](https://gitee.com/openharmony/interface_sdk-js/blob/master/api/@ohos.bundle.distributedBundleManager.d.ts)**. The APIs remain unchanged.
6
7**Change Impacts**
8
9There is no impact on applications that use the APIs of versions earlier than 9. The applications that use the APIs of version 9 need to adapt the new module.
10
11**Key API/Component Changes**
12
13The name of the bundle manager distributed query module is changed from **ohos.bundle.distributedBundle** to **ohos.bundle.distributedBundleManager**. The APIs remain unchanged.
14
15**Adaptation Guide**
16
17Change the module to import from **@ohos.bundle.distributedBundle** to **@ohos.bundle.distributedBundleManager**.
18
19```ts
20import distributedBundle form '@ohos.bundle.distributedBundleManager';
21```
22