🎉 Release of add-on AppDaemon 2.0.0

This commit is contained in:
Community Hass.io Add-ons Bot 2019-04-01 18:00:55 +00:00
parent f0ec533289
commit 5075b9b34c
4 changed files with 20 additions and 26 deletions

View file

@ -1,22 +1,19 @@
[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
- 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
- :arrow_up: Upgrades add-on base image to 3.0.1
- :sparkles: Adds ARMv7 support
- :fire: Removes custom log format override
- :hammer: Makes log_level optional
- :arrow_up: Upgrades gcc to 8.2.0-r2
- :arrow_up: Upgrades libffi to 3.2.1-r6
- :arrow_up: Upgrades Python to 3.6.8-r1
- :arrow_up: Upgrades Python PIP to 19.0.3
- :hammer: Rewrite add-on onto Bashio
- :ambulance: Fixes old library call
[changelog]: https://github.com/hassio-addons/addon-appdaemon3/compare/v1.6.0...v1.7.0
[changelog]: https://github.com/hassio-addons/addon-appdaemon3/compare/v1.7.0...v2.0.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.7.0/README.md
[docs]: https://github.com/hassio-addons/addon-appdaemon3/blob/v2.0.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/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.7.0-blue.svg
[release]: https://github.com/hassio-addons/addon-appdaemon3/tree/v1.7.0
[release-shield]: https://img.shields.io/badge/version-v2.0.0-blue.svg
[release]: https://github.com/hassio-addons/addon-appdaemon3/tree/v2.0.0
[screenshot]: https://github.com/hassio-addons/addon-appdaemon3/raw/master/images/screenshot.png

View file

@ -1,6 +1,6 @@
{
"name": "AppDaemon",
"version": "1.7.0",
"version": "2.0.0",
"slug": "appdaemon3",
"description": "Python Apps and HADashboard using AppDaemon 3.x for Home Assistant",
"url": "https://github.com/hassio-addons/addon-appdaemon3",
@ -10,6 +10,7 @@
"aarch64",
"amd64",
"armhf",
"armv7",
"i386"
],
"boot": "auto",
@ -27,13 +28,12 @@
"ssl"
],
"options": {
"log_level": "info",
"disable_auto_token": false,
"system_packages": [],
"python_packages": []
},
"schema": {
"log_level": "match(^(trace|debug|info|notice|warning|error|fatal)$)",
"log_level": "match(^(trace|debug|info|notice|warning|error|fatal)$)?",
"disable_auto_token": "bool",
"system_packages": [
"str"
@ -42,8 +42,5 @@
"str"
]
},
"environment": {
"LOG_FORMAT": "{LEVEL}: {MESSAGE}"
},
"image": "hassioaddons/appdaemon3-{arch}"
}