diff --git a/README.md b/README.md index b15dcd3..ba56b4d 100644 --- a/README.md +++ b/README.md @@ -86,10 +86,10 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -[addon-cloudflared]: https://github.com/brenner-tobias/addon-cloudflared/tree/v0.6.0 -[addon-doc-cloudflared]: https://github.com/brenner-tobias/addon-cloudflared/blob/v0.6.0/README.md +[addon-cloudflared]: https://github.com/brenner-tobias/addon-cloudflared/tree/v0.7.0 +[addon-doc-cloudflared]: https://github.com/brenner-tobias/addon-cloudflared/blob/v0.7.0/README.md [cloudflared-issue]: https://github.com/brenner-tobias/addon-cloudflared/issues -[cloudflared-version-shield]: https://img.shields.io/badge/version-v0.6.0-blue.svg +[cloudflared-version-shield]: https://img.shields.io/badge/version-v0.7.0-blue.svg [cloudflared-aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg [cloudflared-amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg [cloudflared-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg diff --git a/cloudflared/CHANGELOG.md b/cloudflared/CHANGELOG.md index 511ab3b..cbd0f6d 100644 --- a/cloudflared/CHANGELOG.md +++ b/cloudflared/CHANGELOG.md @@ -1,14 +1,17 @@ ## What’s changed -- ℹ️ Update Cloudflared to version 2022.3.1 @github-actions (#67) +## 🚨 Breaking change 🚨 -## ✨ New features +It is now mandatory to add the option `warp_routes` if `warp_enable` is set to `true`, +otherwise the add on will not start. -- Add Cloudflare Warp routing @elcajon (#65) +You can safely ignore this if you don't use the Cloudflare Warp functionality. -## 📚 Documentation +- Remove Manager API calls @elcajon (#72) -- Add warp routing documentation @elcajon (#66) +## 🚀 Enhancements + +- Add image signing - CAS Codenotary @elcajon (#69) ## ⬆️ Dependency updates -- Bump frenck/action-addon-information from 1.3.1 to 1.4 @dependabot (#68) +- Bump docker/build-push-action from 2.9.0 to 2.10.0 @dependabot (#70) diff --git a/cloudflared/DOCS.md b/cloudflared/DOCS.md index 5a5da3e..01835bc 100644 --- a/cloudflared/DOCS.md +++ b/cloudflared/DOCS.md @@ -293,10 +293,10 @@ From the above documentation: ### Option: `warp_routes` This option controls which routes will be added to your tunnel. -The default setting (no `warp_routes` configured in add-on configuration) will -route all connected networks through your tunnel. +This option is mandatory if `warp_enable` is set to `true. -You can override this by setting specifing networks (IP/CIDR) in `warp_routes`. +See the example below on how to specifie networks (IP/CIDR) in +`warp_routes`. ```yaml warp_routes: diff --git a/cloudflared/config.yaml b/cloudflared/config.yaml index d250cb9..a52d9bc 100644 --- a/cloudflared/config.yaml +++ b/cloudflared/config.yaml @@ -4,10 +4,11 @@ arch: - armhf - armv7 - i386 +codenotary: dev@brenner.tech description: Use a Cloudflared tunnel (formerly Argo Tunnel) to remotely connect to Home Assistant without opening any ports hassio_api: true -hassio_role: manager +hassio_role: homeassistant image: ghcr.io/brenner-tobias/cloudflared/{arch} init: false map: @@ -39,4 +40,4 @@ schema: - str? slug: cloudflared url: https://github.com/brenner-tobias/addon-cloudflared/ -version: 0.6.0 +version: 0.7.0