Skip to content

Releases: bigmoby/addon-wireguard-client

v0.2.2

24 Jun 11:25
Compare
Choose a tag to compare

What’s changed in Wireguard Client Add-on v0.2.2

🛠 Fixs

  • Fixed json formatting for api (thanks to @olpal )

v0.2.1

12 Feb 19:51
Compare
Choose a tag to compare

What’s changed in Wireguard Client Add-on v0.2.1

🚀 Enhancements

  • Add MTU configuration param
  • Readme fix

v0.2.0

27 Dec 10:08
Compare
Choose a tag to compare

What’s changed in Wireguard Client Add-on v0.2.0

🚀 Enhancements

  • Migrate JSON config to YAML
  • Upgrade add-on base image to 11.0.0

⬆️ Dependency updates

  • Upgrade wireguard-tools to 1.0.20210914-r0

v0.1.9

26 Dec 22:22
Compare
Choose a tag to compare

What’s changed in Wireguard Client Add-on v0.1.9

💣 BREAKING CHANGES

  • new peers section in order to configure several peer connection (thanks to Stefan Berggren aka "nsg" https://github.com/nsg for suggest me this feature and give me some hints with his PR)
interface:
  private_key: test_key
  address: 10.6.0.2
  dns:
    - 8.8.8.8
    - 8.8.4.4
  post_up: iptables -t nat -A POSTROUTING -o wg0 -j MASQUERADE
  post_down: iptables -t nat -D POSTROUTING -o wg0 -j MASQUERADE
peer:
  public_key: test_key
  pre_shared_key: test_key
  endpoint: xxxxxxxxxxxxxxx.duckdns.org:51820
  allowed_ips:
    - 10.6.0.0/24
  persistent_keep_alive: 25

should be re-configured in

interface:
  private_key: test_key
  address: 10.6.0.2
  dns:
    - 8.8.8.8
    - 8.8.4.4
  post_up: iptables -t nat -A POSTROUTING -o wg0 -j MASQUERADE
  post_down: iptables -t nat -D POSTROUTING -o wg0 -j MASQUERADE
peers:
  - public_key: test_key
    pre_shared_key: test_key
    endpoint: xxxxxxxxxxxxxxx.duckdns.org:51820
    allowed_ips:
      - 10.6.0.0/24
    persistent_keep_alive: '25'
  - public_key: test_key
    pre_shared_key: test_key
    endpoint: yyyyyyyyyyyyyyy.duckdns.org:51820
    allowed_ips:
      - 10.6.0.1/24
    persistent_keep_alive: '26'
  • dns,post_up,post_down have become optional params

v0.1.8

04 Nov 11:37
Compare
Choose a tag to compare

What’s changed in Wireguard Client Add-on v0.1.8

🛠 Fixs

🚀 Improvements

  • Removing unuseful default Wireguard port specification field
  • Upgrade add-on base image to 10.0.1
  • Upgrade wireguard-tools version to 1.0.20210424-r0

What's Changed

New Contributors

Full Changelog: v0.1.7...v0.1.8

v0.1.7

21 May 11:19
Compare
Choose a tag to compare

🛠 Fixs

  • Hotfix rest API

v0.1.6

19 May 13:43
Compare
Choose a tag to compare

What’s changed in Wireguard Client Add-on v0.1.6

🚀 Improvements

  • Optional pre_shared_key parameter
  • Simple Rest API in order to expose Wireguard status in sensor configuration

🛠 Fixs

  • interface.address is not hardcoded to its /24 mask ~> if mask not specified then /24will be applied otherwise it is possible to assign 10.6.0.0/32

⬆️ Dependency updates

  • Upgrade add-on base image to 9.2.0

v0.1.5

05 Apr 09:10
Compare
Choose a tag to compare

Fixing a big typo for post_down parameter

v0.1.4

05 Apr 09:04
Compare
Choose a tag to compare

Fixing a big typo for post_down parameter

v0.1.3

05 Apr 08:47
Compare
Choose a tag to compare

Fixing PostUp and PostDown type parameters