konnected-io / noonlight-hass

HomeAssistant integration for Noonlight
42 stars 9 forks source link

No 'version' key in the manifest file - integration will not load in latest HASS version #6

Closed peetipablo closed 3 years ago

peetipablo commented 3 years ago

2021-05-08 09:43:50 WARNING (MainThread) [homeassistant.loader] No 'version' key in the manifest file for custom integration 'noonlight'. As of Home Assistant 2021.6, this integration will no longer be loaded. Please report this to the maintainer of 'noonlight'

This custom component for HASS needs to be updated to include a version key, or else it will not load with home assistant version 2021.6.

ragaimeena commented 3 years ago

please update the version key

curt7000 commented 3 years ago

Yep, noonlight breaks under 2021.6. Please update.

pageb018 commented 3 years ago

Just a heads up, you can fix this by adding

"version": "1.0" to your noonlight manifest file. Located at /config/custom_components/noonlight/manifest.json

Example:

{ "domain": "noonlight", "name": "Noonlight", "documentation": "https://github.com/konnected-io/noonlight-hass", "version": "1.0", "requirements": [ "noonlight==0.1.1" ], "dependencies": [ "http" ], "codeowners": [ "@heythisisnate", "@snicker" ] }