1# Bundle Manager Subsystem Changelog 2 3## cl.bundlemanager.1 Type of the data Field in RouterItem Is Changed 4 5**Access Level** 6 7Public API 8 9**Change Reason** 10 11In the previous routing table configuration file, only a key of the string type can be configured for the **data** field. The query interface provided by the bundle manager module parses the field value. In this version, this restriction is removed, and the field can be set to a JSON string of any type. The query interface does not parse the field value. Instead, it returns the JSON string, which needs to be parsed by the caller. The type of the **data** field in the query interface is changed from a DataItem array to a string. 12 13**Change Impact** 14 15This change is a non-compatible change. The build will fail if you do not change the type of the **data** field in your code. 16 17**Change Since** 18 19OpenHarmony SDK 5.0.0.24 20 21**Key API/Component Changes** 22 23The type of the **data** field in the **RouterItem** struct provided by the bundle manager module is changed from a DataItem array to a string. 24 25**Adaptation Guide** 26 27Manually parse the JSON string in **data**. 28