From 09ed65af7133f877adb434a0aecd28a28830dd94 Mon Sep 17 00:00:00 2001 From: "Community Hass.io Add-ons Bot" Date: Tue, 27 Aug 2019 11:16:07 +0000 Subject: [PATCH] :arrow_up: Updating add-on WireGuard to 9070891 --- README.md | 6 +++--- wireguard/CHANGELOG.md | 4 ++-- wireguard/README.md | 6 +++--- wireguard/config.json | 18 ++++++------------ 4 files changed, 14 insertions(+), 20 deletions(-) diff --git a/README.md b/README.md index 22c92357c..1e38f301b 100644 --- a/README.md +++ b/README.md @@ -1210,10 +1210,10 @@ SOFTWARE. [vscode-armhf-shield]: https://img.shields.io/badge/armhf-no-red.svg [vscode-armv7-shield]: https://img.shields.io/badge/armv7-no-red.svg [vscode-i386-shield]: https://img.shields.io/badge/i386-no-red.svg -[addon-wireguard]: https://github.com/hassio-addons/addon-wireguard/tree/36e48fe -[addon-doc-wireguard]: https://github.com/hassio-addons/addon-wireguard/blob/36e48fe/README.md +[addon-wireguard]: https://github.com/hassio-addons/addon-wireguard/tree/9070891 +[addon-doc-wireguard]: https://github.com/hassio-addons/addon-wireguard/blob/9070891/README.md [wireguard-issue]: https://github.com/hassio-addons/addon-wireguard/issues -[wireguard-version-shield]: https://img.shields.io/badge/version-36e48fe-blue.svg +[wireguard-version-shield]: https://img.shields.io/badge/version-9070891-blue.svg [wireguard-pulls-shield]: https://img.shields.io/docker/pulls/hassioaddons/wireguard-armhf.svg [wireguard-aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg [wireguard-amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg diff --git a/wireguard/CHANGELOG.md b/wireguard/CHANGELOG.md index 7ac13d2c0..64ff3c93f 100644 --- a/wireguard/CHANGELOG.md +++ b/wireguard/CHANGELOG.md @@ -1,3 +1,3 @@ -2019/08/26 20:16 UTC - [36e48fe](https://github.com/hassio-addons/addon-wireguard/commit/36e48fec7f464d5a9eab137dd35650cbf37b18b3) by [@frenck](https://github.com/frenck) -> :sparkles: Adds support for forwarding traffic +2019/08/27 11:09 UTC - [9070891](https://github.com/hassio-addons/addon-wireguard/commit/907089110e655d66c4079fcefe61750ad28efc7d) by [@frenck](https://github.com/frenck) +> :hammer: Default value handling for allowed_ips and DNS diff --git a/wireguard/README.md b/wireguard/README.md index c00c7d7ec..bb8816014 100644 --- a/wireguard/README.md +++ b/wireguard/README.md @@ -53,12 +53,12 @@ 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-wireguard/blob/36e48fe/README.md +[docs]: https://github.com/hassio-addons/addon-wireguard/blob/9070891/README.md [forum-shield]: https://img.shields.io/badge/community-forum-brightgreen.svg [forum]: https://community.home-assistant.io/?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-experimental-yellow.svg -[release-shield]: https://img.shields.io/badge/version-36e48fe-blue.svg -[release]: https://github.com/hassio-addons/addon-wireguard/tree/36e48fe \ No newline at end of file +[release-shield]: https://img.shields.io/badge/version-9070891-blue.svg +[release]: https://github.com/hassio-addons/addon-wireguard/tree/9070891 \ No newline at end of file diff --git a/wireguard/config.json b/wireguard/config.json index 114ba2783..7b39d0898 100644 --- a/wireguard/config.json +++ b/wireguard/config.json @@ -1,6 +1,6 @@ { "name": "WireGuard", - "version": "36e48fe", + "version": "9070891", "slug": "wireguard", "description": "Fast, modern, secure VPN tunnel", "url": "https://github.com/hassio-addons/addon-wireguard", @@ -32,23 +32,17 @@ "server": { "host": "hassio.local", "addresses": [ - "10.200.100.8/24", - "10.10.0.1/16" + "172.244.66.2/24" ], - "dns": [ - "1.1.1.1", - "9.9.9.9" - ] + "dns": [] }, "peers": [ { - "name": "", + "name": "hassio", "addresses": [ - "10.200.100.9/24" + "172.244.66.3/24" ], - "allowed_ips": [ - "0.0.0.0/0" - ] + "allowed_ips": [] } ] },