Skip to content

Commit

Permalink
Release 1.21.0-4
Browse files Browse the repository at this point in the history
Release 1.21.0-4
  • Loading branch information
ciotlosm authored Aug 17, 2021
2 parents 802a863 + cf93519 commit f82c683
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 3 deletions.
4 changes: 3 additions & 1 deletion zigbee2mqtt-edge/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@
"serial": {
"port": "str",
"disable_led": "bool?",
"adapter": "match(^zstack|deconz|zigate|ezsp$)?"
"adapter": "match(zstack|deconz|zigate|ezsp)?"
},
"blocklist": [
"str?"
Expand All @@ -113,6 +113,7 @@
"log_level": "match(^info|debug|warn|error$)?",
"log_directory": "str?",
"log_file": "str?",
"log_output": ["list(console|file|syslog)?"],
"log_rotation": "bool?",
"timestamp_format": "str?",
"baudrate": "int?",
Expand Down Expand Up @@ -144,6 +145,7 @@
"device_options": {
"occupancy_timeout": "int?",
"temperature_precision": "int?",
"humidity_precision": "int?",
"legacy": "bool?"
},
"device_options_string": "str?",
Expand Down
9 changes: 9 additions & 0 deletions zigbee2mqtt/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## 1.21.0-4
- Added `advanced.log_output` config option

## 1.21.0-3
- Added support for `humidity_precision` option under `device_options`

## 1.21.0-2
- Added homeassistant_legacy_entity_attributes option

## 1.21.0-1
- Updated Zigbee2MQTT to version [`1.21.0`](/~https://github.com/Koenkk/zigbee2mqtt/releases/tag/1.21.0)

Expand Down
7 changes: 5 additions & 2 deletions zigbee2mqtt/config.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "Zigbee2mqtt",
"version": "1.21.0-1",
"version": "1.21.0-4",
"slug": "zigbee2mqtt",
"description": "Zigbee2mqtt add-on",
"description": "Use your ZigBee devices without the vendor's bridge or gateway",
"uart": true,
"url": "/~https://github.com/zigbee2mqtt/hassio-zigbee2mqtt/tree/master/zigbee2mqtt",
"startup": "application",
Expand Down Expand Up @@ -113,6 +113,7 @@
"log_level": "match(^info|debug|warn|error$)?",
"log_directory": "str?",
"log_file": "str?",
"log_output": ["list(console|file|syslog)?"],
"log_rotation": "bool?",
"timestamp_format": "str?",
"baudrate": "int?",
Expand All @@ -137,12 +138,14 @@
"homeassistant_discovery_topic": "str?",
"homeassistant_status_topic": "str?",
"homeassistant_legacy_triggers": "bool?",
"homeassistant_legacy_entity_attributes": "bool?",
"ikea_ota_use_test_url": "bool?",
"legacy_api": "bool?"
},
"device_options": {
"occupancy_timeout": "int?",
"temperature_precision": "int?",
"humidity_precision": "int?",
"legacy": "bool?"
},
"device_options_string": "str?",
Expand Down

0 comments on commit f82c683

Please sign in to comment.