Skip to content

Releases: home-assistant/supervisor

Hass.io 0.47

24 Jul 22:22
Compare
Choose a tag to compare
  • Allow SYS_ADMIN for mount inside add-ons
  • Show devices and privileged on API (more transparent to user)
  • Bugfix auto-update and check now options before he update it
  • Fix logo bug on UI (@balloob)

Hass.IO 0.46

22 Jul 22:00
Compare
Choose a tag to compare
  • Update UI (@balloob)
  • Fix UI "page not found" (@balloob)
  • Add support for add-on logo
  • New add-on config options "webui"
  • Optimize API

Hass.IO 0.45

17 Jul 07:52
Compare
Choose a tag to compare

Hass.IO 0.44

14 Jul 23:32
Compare
Choose a tag to compare
  • Add support for nested dicts in addons options. Example:
"group": {
    "element1": "bla"
}
  • Use new startup layout for addons. Please change it on our addons. We have now: initialize, system, services, application. To migrate use for before -> services and after -> application

Hass.IO 0.43

12 Jul 00:32
Compare
Choose a tag to compare
  • add landingpage support
  • cleanup handling with json file for store data
  • make a own object for homeassistant + config
  • allow custom homeassistant Image
  • Move snapshot list into /snapshots
  • Move addon list into /addons
  • Selective reload with /snapshots/reload and /addons/reload
  • Fix isoformat datetime strings

Breaking Change:

  • devices will reset to []

HassIO 0.42

07 Jul 12:22
Compare
Choose a tag to compare
  • Support new custom base image

Hass.IO 0.41

06 Jul 22:30
Compare
Choose a tag to compare
  • fix auto update of addons to update only enabled addons

Hass.IO 0.40

06 Jul 22:04
Compare
Choose a tag to compare
  • New user addon options for auto update
  • New user addon options for overwrite network settings
  • Addon config can set timeout individual for stop Container
  • Addon validate type "port"
  • Update API for more details on addon info

Hass.IO 0.39

05 Jul 23:51
Compare
Choose a tag to compare
  • Add snapshot/restore functions
  • Small cleanups/bugfixs

Snapshot is at the moment in beta state. UI support is coming later. We support full snapshot/restore or partial. You can also partial restore from a full snapshot.

Full:
curl -d '{"name": "Test full snapshot"}' http://172.17.0.2/snapshots/new/full
curl -d 'http://172.17.0.2/snapshots/ID/restore/full

Partial (i.e. with homeassistant)
curl -d '{"name": "Test only hass config", "folders": ["homeassistant"]}' http://172.17.0.2/snapshots/new/partial
curl -d '{"homeassistant": true, "folders": ["homeassistant"]}' http://172.17.0.2/snapshots/ID/partial

More details in the API documentation.

HassIO 0.38

29 Jun 10:10
Compare
Choose a tag to compare
  • Refactory hole add-on/repository code for better handling
  • Fix restart bug for add-on (now it performe stop/clear/run)
  • Supervisor make a self update on start if it is not in dev mode
  • Update executor handling for python 3.6
  • Fix bug with handling of add-on options
  • New layouts for add-on store (thanks @balloob)