Skip to content

Releases: syssi/esphome-zb-gw03

2.1.0

05 Jul 12:26
Compare
Choose a tag to compare

What's Changed

  • Invert green LED by @OToussaint in #37
  • Force colors by @syssi in #41
  • Update to the most recent zigbee firmware version by @syssi in #44
  • Avoid WiFi if you use the Zigbee module by @syssi in #50
  • Support new generic ZHA Zeroconf discovery by @syssi in #51
  • Enable discovery if the device is used as coordinator by @syssi in #52
  • Retrieve package from pull request branch if possible by @syssi in #53
  • Migrate to actions/cache@v4 by @syssi in #55
  • Adopt structure of the ESPHome CI by @syssi in #58
  • Update minimum python version to 3.10 by @syssi in #59
  • Make CI build verbose by @syssi in #60

New Contributors

Full Changelog: 2.0.1...2.1.0

2.0.0

10 Jan 19:07
8671c37
Compare
Choose a tag to compare

This release 2.0.0 makes the ethernet component optional. You can choose between ethernet and wifi by loading the dedicated package:

packages:
  zb-gw03:
    url: https://github.com/syssi/esphome-zb-gw03
    ref: main
    files:
      - packages/core.yaml
      - packages/ethernet.yaml

# vs

packages:
  zb-gw03:
    url: https://github.com/syssi/esphome-zb-gw03
    ref: main
    files:
      - packages/core.yaml
      - packages/wifi.yaml

This is a breaking change! To migrate from version 1.0.0 to version 2.0.0 you have to add the packages/ethernet.yaml to your YAML:

# version 1.0.0
packages:
  zb-gw03:
    url: https://github.com/syssi/esphome-zb-gw03
    ref: main
    files:
      - packages/core.yaml
      - packages/status_led.yaml
      # ...

# version 2.0.0
packages:
  zb-gw03:
    url: https://github.com/syssi/esphome-zb-gw03
    ref: main
    files:
      - packages/core.yaml
      - packages/ethernet.yaml
      - packages/status_led.yaml
      # ...

1.0.0

15 Feb 14:28
f8eb605
Compare
Choose a tag to compare
Update docs because the "watchdog heartbeat timeout" was fixed upstre…