1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
# Deprecation information
## Awaiting on `request_default_bus_name`
By mistake `request_default_bus_name` was made in to async function
even though it was never documented to be one. It is now a blocking
function but returns an awaitable for backwards compatibility.
* **Since**: 0.11.0
* **Warning**: 0.11.0
* **Removed**: 0.14.0
## Importing exceptions from `sdbus` module
All exceptions have been moved to `sdbus.exceptions` to clean up imports.
* **Since**: 0.11.0
* **Warning**: Not possible?
* **Removed**: 1.0.0
## `_connect` and `new_connect` of the `DbusInterfaceCommonAsync` class
Replaced with equivalent `_proxify` and `new_proxy`.
* **Since**: 0.8.4
* **Warning**: 0.9.0
* **Removed**: 1.0.0
## `start_serving` of the `DbusInterfaceCommonAsync` class
Replaced with equivalent but sync `export_to_dbus`.
* **Since**: 0.7.6
* **Warning**: 0.7.6
* **Removed**: 1.0.0
|