diff --git a/README.md b/README.md index 5c1ecdd8..b94bb3be 100644 --- a/README.md +++ b/README.md @@ -817,10 +817,10 @@ SOFTWARE. [glances-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg [glances-armv7-shield]: https://img.shields.io/badge/armv7-yes-green.svg [glances-i386-shield]: https://img.shields.io/badge/i386-yes-green.svg -[addon-grafana]: https://github.com/hassio-addons/addon-grafana/tree/v6.2.0 -[addon-doc-grafana]: https://github.com/hassio-addons/addon-grafana/blob/v6.2.0/README.md +[addon-grafana]: https://github.com/hassio-addons/addon-grafana/tree/v6.3.0 +[addon-doc-grafana]: https://github.com/hassio-addons/addon-grafana/blob/v6.3.0/README.md [grafana-issue]: https://github.com/hassio-addons/addon-grafana/issues -[grafana-version-shield]: https://img.shields.io/badge/version-v6.2.0-blue.svg +[grafana-version-shield]: https://img.shields.io/badge/version-v6.3.0-blue.svg [grafana-aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg [grafana-amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg [grafana-armhf-shield]: https://img.shields.io/badge/armhf-no-red.svg diff --git a/grafana/CHANGELOG.md b/grafana/CHANGELOG.md index dddbd22f..b8a049f1 100644 --- a/grafana/CHANGELOG.md +++ b/grafana/CHANGELOG.md @@ -1,6 +1,19 @@ ## What’s changed +## ✨ New features + +- Add access to Home Assistant configuration so SQLite DB can be used @frenck (#134) +- Add /health as watchdog url @mdegat01 (#129) + +## 📚 Documentation + +- Document anonymous access and limitations @deviantintegral (#101) + ## ⬆️ Dependency updates -- ⬆️ Upgrades Grafana to v7.5.1 @frenck (#124) -- ⬆️ Upgrades Grafana Image Renderer to 2.0.1 @frenck (#125) +- ⬆️ Bump ludeeus/action-shellcheck from 1.0.0 to 1.1.0 @dependabot (#128) +- ⬆️ Bump docker/build-push-action from v2.3.0 to v2.4.0 @dependabot (#130) +- ⬆️ Bump docker/setup-qemu-action from v1.0.1 to v1.0.2 @dependabot (#132) +- ⬆️ Bump docker/setup-buildx-action from v1.1.1 to v1.1.2 @dependabot (#131) +- ⬆️ Upgrades Grafana to v7.5.3 @frenck (#136) +- ⬆️ Upgrades add-on base image to v4.1.4 @frenck (#135) diff --git a/grafana/DOCS.md b/grafana/DOCS.md index 942f4aa8..0535ca06 100644 --- a/grafana/DOCS.md +++ b/grafana/DOCS.md @@ -113,6 +113,26 @@ for Home Assistant. 1. Hit Save & Test +## Anonymous Access + +Anonymous access on a local network is possible by exposing the port in the +add-on configuration, along with setting the following environment variables: + +```yaml +env_vars: + - name: GF_AUTH_ANONYMOUS_ACCESS_ENABLED + value: "true" + - name: GF_AUTH_ANONYMOUS_ACCESS_ORG_NAME + value: "Main Org." + - name: GF_AUTH_ANONYMOUS_ACCESS_ORG_ROLE + value: "Viewer" +``` + +It is not possible to enable anonymous or non-administrator access with Home +Assistant Cloud. This includes embedding Grafana resources with an iframe or +rendered image inside of a dashboard. For more details see +[Anonymous login not working, Grafana add-on 3.0.0 #55](https://github.com/hassio-addons/addon-grafana/issues/55). + ## Known issues and limitations - This add-on does support ARM-based devices, nevertheless, they must diff --git a/grafana/README.md b/grafana/README.md index 8d5a70b0..ea7b74f9 100644 --- a/grafana/README.md +++ b/grafana/README.md @@ -34,6 +34,6 @@ insights to your home. [patreon-shield]: https://frenck.dev/wp-content/uploads/2019/12/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-v6.2.0-blue.svg -[release]: https://github.com/hassio-addons/addon-grafana/tree/v6.2.0 +[release-shield]: https://img.shields.io/badge/version-v6.3.0-blue.svg +[release]: https://github.com/hassio-addons/addon-grafana/tree/v6.3.0 [screenshot]: https://github.com/hassio-addons/addon-grafana/raw/main/images/screenshot.png \ No newline at end of file diff --git a/grafana/config.json b/grafana/config.json index 894ee897..c370d8d9 100644 --- a/grafana/config.json +++ b/grafana/config.json @@ -1,6 +1,6 @@ { "name": "Grafana", - "version": "6.2.0", + "version": "6.3.0", "slug": "grafana", "description": "The open platform for beautiful analytics and monitoring", "url": "https://github.com/hassio-addons/addon-grafana", @@ -15,8 +15,10 @@ "armv7" ], "map": [ + "config", "ssl" ], + "watchdog": "http://[HOST]:1337/api/health", "options": { "plugins": [], "env_vars": [],