ESPHome 2025.8.0 not updating

Installation method Home Assistant OS
Core 2025.8.3
Supervisor 2025.08.1
Operating System 16.1
Frontend 20250811.1

Trying to update to ESPHome 2025.8.0 but fails … seeing the following error in Settings > System > Logs > Home Assistant Core :

Logger: homeassistant.components.websocket_api.http.connection
Source: components/websocket_api/commands.py:317
integration: Home Assistant WebSocket API ([documentation],[issues])
First occurred: 1:54:12 PM (3 occurrences)
Last logged: 2:35:24 PM

[281473151332928] Error during service call to update.install: Error compiling <name_of_device>.yaml; Try again in ESPHome dashboard for more information

First time this has happened updating these devices. Appreciate any clarity of what this is telling me and how to solve it? TIA

So it looks like you’ve already updated the ESPHome add-on and maybe did something like ‘update all’ for your ESPHome devices?

If so, seems like it’s having trouble compiling one (or more) of your device YAML files. Follow the error suggestion and do them one-by-one in the ESPHome add-on to see what the issue is; probably a breaking change that you need to fix in your YAML.

UPDATE …

I’m still relatively new with HA & ESP but managed, with your hint, to discover a change in the yaml was needed from arduino to idf … like so:

> esp32:
>    framework:
>      type: arduino

to

> esp32:
>   framework:
>     type: esp-idf

Upon install, it recompiled everything and now works. Again, thanks.