mirror of
https://github.com/home-assistant/supervisor.git
synced 2026-02-15 07:27:13 +00:00
1657769044f3e395bccde956b9a2dff4880ff2a5
* Fix parent job sync when parent reaches 100% progress When a child job completes and syncs its progress to a parent job, it can set the parent to 100% progress. However, there are situations where a second child job for the same parent job is created after the parent has already reached 100%. This caused a ValueError when creating a ParentJobSync for subsequent child jobs, as the validator required starting_progress < 100.0. This issue was introduced in #6207 (shipped in 2025.10.0) but only became visible in 2025.10.1 with #6195, which started using progress syncs. The bug manifests during Core update rollbacks when a second docker_interface_install job is created after the parent already reached 100% from the first install. Fix by skipping parent job sync setup when the parent is already done or at 100% progress, as there's no value in syncing progress to a completed parent. * Update comment and add debug message
Home Assistant Supervisor
First private cloud solution for home automation
Home Assistant (former Hass.io) is a container-based system for managing your Home Assistant Core installation and related applications. The system is controlled via Home Assistant which communicates with the Supervisor. The Supervisor provides an API to manage the installation. This includes changing network settings or installing and updating software.
Installation
Installation instructions can be found at https://home-assistant.io/getting-started.
Development
For small changes and bugfixes you can just follow this, but for significant changes open a RFC first. Development instructions can be found here.
Release
Releases are done in 3 stages (channels) with this structure:
- Pull requests are merged to the
mainbranch. - A new build is pushed to the
devstage. - Releases are published.
- A new build is pushed to the
betastage. - The
stable.jsonfile is updated. - The build that was pushed to
betawill now be pushed tostable.
Description
Languages
Python
95.4%
JavaScript
4.5%
