System Health details

Checklist
Describe the issue
** This is a duplicate of #125 - it was labeled as a 'Feature Request' that might not be seen. **
Home Assistant Core is warning that ha-aquanta is using a deprecated import path for DhcpServiceInfo.
This will break in Home Assistant Core 2026.2 (February 2026).
Current log warning
DhcpServiceInfo was used from aquanta, this is a deprecated constant which will be removed in HA Core 2026.2. Use homeassistant.helpers.service_info.dhcp.DhcpServiceInfo instead
Suggested fix
Update the import path in manifest.json or relevant files:
# Old:
from homeassistant.components.dhcp import DhcpServiceInfo
# New:
from homeassistant.helpers.service_info.dhcp import DhcpServiceInfo
### Reproduction steps
1. Start Home Assistant with Aquanta custom integration enabled
2. Check logs after boot
3. Observe deprecation warning regarding DhcpServiceInfo
### Debug logs
```Text
message already contains the exact deprecation line.
Diagnostics dump
No response
System Health details
Checklist
Describe the issue
** This is a duplicate of #125 - it was labeled as a 'Feature Request' that might not be seen. **
Home Assistant Core is warning that
ha-aquantais using a deprecated import path forDhcpServiceInfo.This will break in Home Assistant Core
2026.2(February 2026).Current log warning
DhcpServiceInfo was used from aquanta, this is a deprecated constant which will be removed in HA Core 2026.2. Use homeassistant.helpers.service_info.dhcp.DhcpServiceInfo instead
Suggested fix
Update the import path in
manifest.jsonor relevant files:Diagnostics dump
No response