🎉 Release of add-on AppDaemon 1.7.0

This commit is contained in:
Community Hass.io Add-ons Bot 2019-02-27 21:06:55 +00:00
parent 768a42fb06
commit bbd0ad62e7
4 changed files with 28 additions and 15 deletions

View file

@ -613,10 +613,10 @@ SOFTWARE.
[airsonos-amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg
[airsonos-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg
[airsonos-i386-shield]: https://img.shields.io/badge/i386-yes-green.svg
[addon-appdaemon3]: https://github.com/hassio-addons/addon-appdaemon3/tree/v1.6.0
[addon-doc-appdaemon3]: https://github.com/hassio-addons/addon-appdaemon3/blob/v1.6.0/README.md
[addon-appdaemon3]: https://github.com/hassio-addons/addon-appdaemon3/tree/v1.7.0
[addon-doc-appdaemon3]: https://github.com/hassio-addons/addon-appdaemon3/blob/v1.7.0/README.md
[appdaemon3-issue]: https://github.com/hassio-addons/addon-appdaemon3/issues
[appdaemon3-version-shield]: https://img.shields.io/badge/version-v1.6.0-blue.svg
[appdaemon3-version-shield]: https://img.shields.io/badge/version-v1.7.0-blue.svg
[appdaemon3-pulls-shield]: https://img.shields.io/docker/pulls/hassioaddons/appdaemon3-armhf.svg
[appdaemon3-aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg
[appdaemon3-amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg

View file

@ -1,11 +1,22 @@
[Full Changelog][changelog]
This release adds a workaround for a long time ongoing issue with using secrets in the AppDaemon configuration file. The automatic token update behavior can now be disabled using the add-on configuration.
### Changed
- Updates AppDaemon to 3.0.2 (#29) (@acockburn)
- Upgrades gcc to 6.4.0-r9
- Switches use of token instead of ha_key
- Adds logic to automatically flush compiled cache on version upgrade
- Improves token update message on startup
- Configure Renovate (#33)
- Updates maintenance year to 2019
- Removes BountySource links
- Removes Anchore.io links
- Refactor of GitLab CI
- Moves Python requirements out of the Dockerfile
- Replaces add-on link with GitHub link
- Python PIP to 18.1
- Fixes spelling error in Dockerfile
- Adds option to disable auto token update
- Upgrades add-on base image to 2.3.2
[changelog]: https://github.com/hassio-addons/addon-appdaemon3/compare/v1.5.0...v1.6.0
[changelog]: https://github.com/hassio-addons/addon-appdaemon3/compare/v1.6.0...v1.7.0
Questions? Join our Discord server! https://discord.me/hassioaddons
Enjoying my add-ons? Consider supporting my work: https://patreon.com/frenck

View file

@ -41,13 +41,13 @@ If you are more interested in stable releases of our add-ons:
[buymeacoffee]: https://www.buymeacoffee.com/frenck
[discord-shield]: https://img.shields.io/discord/478094546522079232.svg
[discord]: https://discord.me/hassioaddons
[docs]: https://github.com/hassio-addons/addon-appdaemon3/blob/v1.6.0/README.md
[docs]: https://github.com/hassio-addons/addon-appdaemon3/blob/v1.7.0/README.md
[forum-shield]: https://img.shields.io/badge/community-forum-brightgreen.svg
[forum]: https://community.home-assistant.io/t/community-hass-io-add-on-appdaemon3/41261?u=frenck
[maintenance-shield]: https://img.shields.io/maintenance/yes/2018.svg
[maintenance-shield]: https://img.shields.io/maintenance/yes/2019.svg
[patreon-shield]: https://www.frenck.nl/images/patreon.png
[patreon]: https://www.patreon.com/frenck
[project-stage-shield]: https://img.shields.io/badge/project%20stage-production%20ready-brightgreen.svg
[release-shield]: https://img.shields.io/badge/version-v1.6.0-blue.svg
[release]: https://github.com/hassio-addons/addon-appdaemon3/tree/v1.6.0
[release-shield]: https://img.shields.io/badge/version-v1.7.0-blue.svg
[release]: https://github.com/hassio-addons/addon-appdaemon3/tree/v1.7.0
[screenshot]: https://github.com/hassio-addons/addon-appdaemon3/raw/master/images/screenshot.png

View file

@ -1,9 +1,9 @@
{
"name": "AppDaemon",
"version": "1.6.0",
"version": "1.7.0",
"slug": "appdaemon3",
"description": "Python Apps and HADashboard using AppDaemon 3.x for Home Assistant",
"url": "https://community.home-assistant.io/t/community-hass-io-add-on-appdaemon3/41261?u=frenck",
"url": "https://github.com/hassio-addons/addon-appdaemon3",
"webui": "http://[HOST]:[PORT:5050]",
"startup": "application",
"arch": [
@ -28,11 +28,13 @@
],
"options": {
"log_level": "info",
"disable_auto_token": false,
"system_packages": [],
"python_packages": []
},
"schema": {
"log_level": "match(^(trace|debug|info|notice|warning|error|fatal)$)",
"disable_auto_token": "bool",
"system_packages": [
"str"
],