From 1adc125ed5eaecb420c6f2b8f2146701dc4e25d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20S=C3=B8rensen?= Date: Mon, 27 Sep 2021 11:45:38 +0200 Subject: [PATCH] Update check config add-on (#2192) --- check_config/CHANGELOG.md | 6 ++++++ check_config/DOCS.md | 4 ++-- check_config/README.md | 2 +- check_config/build.json | 10 +++++----- check_config/config.json | 8 ++++---- check_config/translations/en.yaml | 2 +- 6 files changed, 19 insertions(+), 13 deletions(-) diff --git a/check_config/CHANGELOG.md b/check_config/CHANGELOG.md index 5f733f7..3481979 100644 --- a/check_config/CHANGELOG.md +++ b/check_config/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 3.9.0 + +- Update base image to 2021.09.0 +- Change default version from "latest" to "stable" +- Remove write access to /media + ## 3.8.0 - Update base image to 2021.07.0 diff --git a/check_config/DOCS.md b/check_config/DOCS.md index 326a562..71dfc32 100644 --- a/check_config/DOCS.md +++ b/check_config/DOCS.md @@ -27,14 +27,14 @@ Home Assistant version. Add-on configuration: ```yaml -version: latest +version: stable ``` ### Option: `version` (required) The version of Home Assistant that want to check your configuration against. -- Setting this option to `latest` or `stable` will result in checking your configuration +- Setting this option to `stable` will result in checking your configuration against the latest stable release of Home Assistant. - Setting this option to `beta` will result in checking your configuration against the latest beta release of Home Assistant. diff --git a/check_config/README.md b/check_config/README.md index e707eac..4b1458a 100644 --- a/check_config/README.md +++ b/check_config/README.md @@ -1,6 +1,6 @@ # Home Assistant Add-on: Check Home Assistant configuration -Check your current configuration against any Home Assistant version. +Check your Home Assistant configuration against other versions. ![Supports aarch64 Architecture][aarch64-shield] ![Supports amd64 Architecture][amd64-shield] ![Supports armhf Architecture][armhf-shield] ![Supports armv7 Architecture][armv7-shield] ![Supports i386 Architecture][i386-shield] diff --git a/check_config/build.json b/check_config/build.json index e8674e7..370ba8a 100644 --- a/check_config/build.json +++ b/check_config/build.json @@ -1,9 +1,9 @@ { "build_from": { - "aarch64": "ghcr.io/home-assistant/aarch64-homeassistant-base:2021.07.0", - "amd64": "ghcr.io/home-assistant/amd64-homeassistant-base:2021.07.0", - "armhf": "ghcr.io/home-assistant/armhf-homeassistant-base:2021.07.0", - "armv7": "ghcr.io/home-assistant/armv7-homeassistant-base:2021.07.0", - "i386": "ghcr.io/home-assistant/i386-homeassistant-base:2021.07.0" + "aarch64": "ghcr.io/home-assistant/aarch64-homeassistant-base:2021.09.0", + "amd64": "ghcr.io/home-assistant/amd64-homeassistant-base:2021.09.0", + "armhf": "ghcr.io/home-assistant/armhf-homeassistant-base:2021.09.0", + "armv7": "ghcr.io/home-assistant/armv7-homeassistant-base:2021.09.0", + "i386": "ghcr.io/home-assistant/i386-homeassistant-base:2021.09.0" } } diff --git a/check_config/config.json b/check_config/config.json index c000682..838732e 100644 --- a/check_config/config.json +++ b/check_config/config.json @@ -1,8 +1,8 @@ { "name": "Check Home Assistant configuration", - "version": "3.8.0", + "version": "3.9.0", "slug": "check_config", - "description": "Check current Home Assistant configuration against a new version", + "description": "Check your Home Assistant configuration against other versions", "url": "https://github.com/home-assistant/hassio-addons/tree/master/check_config", "arch": ["armhf", "armv7", "aarch64", "amd64", "i386"], "uart": true, @@ -10,9 +10,9 @@ "startup": "once", "boot": "manual", "init": false, - "map": ["config", "ssl", "media:rw", "share:rw"], + "map": ["config", "ssl", "media", "share:rw"], "options": { - "version": "latest" + "version": "stable" }, "schema": { "version": "str" diff --git a/check_config/translations/en.yaml b/check_config/translations/en.yaml index de1c55e..ebab490 100644 --- a/check_config/translations/en.yaml +++ b/check_config/translations/en.yaml @@ -1,4 +1,4 @@ configuration: version: name: Version - description: The version of Home Assistant to check against, you can use `stable` , `latest`, `dev` and a version \ No newline at end of file + description: The version of Home Assistant to check against, you can use `stable` , `beta`, `dev` or a spesific version \ No newline at end of file