Skip to content

Commit

Permalink
Merge pull request #481 from rstein/v1.16.2
Browse files Browse the repository at this point in the history
Bump version to 1.16.2
  • Loading branch information
ciotlosm committed Dec 2, 2020
2 parents 0a19bed + 90642bd commit 0f277ba
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 5 deletions.
6 changes: 4 additions & 2 deletions zigbee2mqtt-edge/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,8 @@
"keepalive": "int?",
"version": "int?",
"reject_unauthorized": "bool?",
"include_device_information": "bool?"
"include_device_information": "bool?",
"force_disable_retain": "bool?"
},
"serial": {
"port": "str",
Expand Down Expand Up @@ -157,6 +158,7 @@
"new_api": "bool?"
},
"frontend": {
"host": "string?",
"port": "int?"
},
"socat": {
Expand All @@ -170,4 +172,4 @@
}
},
"image": "dwelch2101/zigbee2mqtt-edge-{arch}"
}
}
2 changes: 2 additions & 0 deletions zigbee2mqtt-edge/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ mkdir -p "$DATA_PATH"

# Parse config
cat "$CONFIG_PATH" | jq 'del(.data_path, .zigbee_shepherd_debug, .zigbee_shepherd_devices, .socat)' \
| jq 'if .devices then .devices = (.devices | split(",")|map(gsub("\\s+";"";"g"))) else . end' \
| jq 'if .groups then .groups = (.groups | split(",")|map(gsub("\\s+";"";"g"))) else . end' \
| jq 'if .advanced.ext_pan_id_string then .advanced.ext_pan_id = (.advanced.ext_pan_id_string | (split(",")|map(tonumber))) | del(.advanced.ext_pan_id_string) else . end' \
| jq 'if .advanced.network_key_string then .advanced.network_key = (.advanced.network_key_string | (split(",")|map(tonumber))) | del(.advanced.network_key_string) else . end' \
| jq 'if .device_options_string then .device_options = (.device_options_string|fromjson) | del(.device_options_string) else . end' \
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.16.2
- Updated Zigbee2mqtt to version [`1.16.2`](https://github.com/Koenkk/zigbee2mqtt/releases/tag/1.16.2)
- New configuration options
- `mqtt`
- `force_disable_retain`
- `frontend`
- `host`
- `devices` and `groups` options now accept a comma-separated string of files

## 1.16.1
- Updated Zigbee2mqtt to version [`1.16.1`](https://github.com/Koenkk/zigbee2mqtt/releases/tag/1.16.1)

Expand Down
1 change: 1 addition & 0 deletions zigbee2mqtt/DOCS.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ See the [zigbee2mqtt configuration docs](https://www.zigbee2mqtt.io/information/
- Depending on your configuration, the MQTT server config may need to include the port, typically `1883` or `8883` for SSL communications. For example, `mqtt://core-mosquitto:1883` for Home Assistant's Mosquitto add-on.
- To find out which serial ports you have exposed go to **Supervisor → System → Host system → ⋮ → Hardware**
- Please see this add-on's [documentation on GitHub](https://github.com/danielwelch/hassio-zigbee2mqtt#socat) for further add-on-specific information (using Socat, how to add support for new devices etc.).
- The 'devices' and 'groups' configuration options accept arrays of files since Zigbee2MQTT v1.16.2. In order to maintain backwards compatibility of configurations, the same functionality is achieved in this addon by the use of comma-separated strings.

# Additional Configuration Options
- `network_key_string`
Expand Down
2 changes: 1 addition & 1 deletion zigbee2mqtt/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ FROM $BUILD_FROM
# Add env
ENV LANG C.UTF-8

ENV ZIGBEE2MQTT_VERSION=1.16.1
ENV ZIGBEE2MQTT_VERSION=1.16.2
ENV ARCHIVE=zigbee2mqtt-$ZIGBEE2MQTT_VERSION

RUN apk add --update --no-cache curl jq nodejs npm socat \
Expand Down
6 changes: 4 additions & 2 deletions zigbee2mqtt/config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Zigbee2mqtt",
"version": "1.16.1",
"version": "1.16.2",
"slug": "zigbee2mqtt",
"description": "Zigbee to MQTT Bridge",
"auto_uart": true,
Expand Down Expand Up @@ -94,7 +94,8 @@
"keepalive": "int?",
"version": "int?",
"reject_unauthorized": "bool?",
"include_device_information": "bool?"
"include_device_information": "bool?",
"force_disable_retain": "bool?"
},
"serial": {
"port": "str",
Expand Down Expand Up @@ -157,6 +158,7 @@
"new_api": "bool?"
},
"frontend": {
"host": "string?",
"port": "int?"
},
"socat": {
Expand Down
2 changes: 2 additions & 0 deletions zigbee2mqtt/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ fi

# Parse config
cat "$CONFIG_PATH" | jq 'del(.data_path, .zigbee_shepherd_debug, .zigbee_shepherd_devices, .socat)' \
| jq 'if .devices then .devices = (.devices | split(",")|map(gsub("\\s+";"";"g"))) else . end' \
| jq 'if .groups then .groups = (.groups | split(",")|map(gsub("\\s+";"";"g"))) else . end' \
| jq 'if .advanced.ext_pan_id_string then .advanced.ext_pan_id = (.advanced.ext_pan_id_string | (split(",")|map(tonumber))) | del(.advanced.ext_pan_id_string) else . end' \
| jq 'if .advanced.network_key_string then .advanced.network_key = (.advanced.network_key_string | (split(",")|map(tonumber))) | del(.advanced.network_key_string) else . end' \
| jq 'if .device_options_string then .device_options = (.device_options_string|fromjson) | del(.device_options_string) else . end' \
Expand Down

0 comments on commit 0f277ba

Please sign in to comment.