We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When I upgraded to the core-2021.6.0b0 release today I received this error:
Logger: homeassistant.loader Source: loader.py:767 First occurred: 3:24:12 PM (1 occurrences) Last logged: 3:24:12 PM
The custom integration 'ha_strava' does not have a valid version key (None) in the manifest file and was blocked from loading. See https://developers.home-assistant.io/blog/2021/01/29/custom-integration-changes#versions for more details
The text was updated successfully, but these errors were encountered:
If it doesn't get fixed, just add it to manifest.json in your custom component.
{ "domain": "ha_strava", "name": "Strava Home Assistant", "config_flow": true, "documentation": "https://github.com/codingcyclist/ha_strava", "requirements": ["aiohttp==3.6.1", "voluptuous==0.11.7"], "dependencies": [], "codeowners": ["@codingcyclist"] }
becomes.........
{ "domain": "ha_strava", "name": "Strava Home Assistant", "config_flow": true, "documentation": "https://github.com/codingcyclist/ha_strava", "requirements": ["aiohttp==3.6.1", "voluptuous==0.11.7"], "dependencies": [], "codeowners": ["@codingcyclist"], "version": "0.1" }
Sorry, something went wrong.
added the above version line but still no joy...anything else need to be done...has anyone confirmed this change did work for them
apols...forgot the comma at the end of the previous line....all working now
No branches or pull requests
When I upgraded to the core-2021.6.0b0 release today I received this error:
Logger: homeassistant.loader
Source: loader.py:767
First occurred: 3:24:12 PM (1 occurrences)
Last logged: 3:24:12 PM
The custom integration 'ha_strava' does not have a valid version key (None) in the manifest file and was blocked from loading. See https://developers.home-assistant.io/blog/2021/01/29/custom-integration-changes#versions for more details
The text was updated successfully, but these errors were encountered: