Skip to content

Commit 45f6861

Browse files
committed
Update MQTT vendor. Update changelog + bump version.
1 parent ac91023 commit 45f6861

File tree

13 files changed

+581
-40
lines changed

13 files changed

+581
-40
lines changed

docs/config.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ googleAnalytics = "UA-3512995-9"
3232
weight = 4
3333

3434
[params]
35-
version = "2.1.4"
35+
version = "2.1.5"

docs/content/install/config.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,12 @@ GLOBAL OPTIONS:
2929
--mqtt-server value mqtt server (e.g. scheme://host:port where scheme is tcp, ssl or ws) (default: "tcp://127.0.0.1:1883") [$MQTT_SERVER]
3030
--mqtt-username value mqtt server username (optional) [$MQTT_USERNAME]
3131
--mqtt-password value mqtt server password (optional) [$MQTT_PASSWORD]
32+
--mqtt-ca-cert value mqtt CA certificate file (optional) [$MQTT_CA_CERT]
3233
--skip-crc-check skip the CRC status-check of received packets [$SKIP_CRC_CHECK]
3334
--log-level value debug=5, info=4, warning=3, error=2, fatal=1, panic=0 (default: 4) [$LOG_LEVEL]
3435
--help, -h show help
3536
--version, -v print the version
3637
```
3738

3839
Both cli arguments and environment-variables can be used to pass configuration
39-
options.
40+
options.

docs/content/overview/changelog.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,21 @@ menu:
88

99
## Changelog
1010

11+
### 2.1.5
12+
13+
**Improvements:**
14+
15+
* `--gw-mqtt-ca-cert` / `GW_MQTT_CA_CERT` configuration flag was added to
16+
specify an optional CA certificate
17+
(thanks [@minggi](https://github.com/minggi)).
18+
19+
**Bugfixes:**
20+
21+
* MQTT client library update which fixes an issue where during a failed
22+
re-connect the protocol version would be downgraded
23+
([paho.mqtt.golang#116](https://github.com/eclipse/paho.mqtt.golang/issues/116)).
24+
25+
1126
### 2.1.4
1227

1328
* Retry connecting to MQTT broker on startup (thanks @jcampanell-cablelabs).
@@ -70,4 +85,4 @@ menu:
7085

7186
### 1.0.0
7287

73-
Initial release.
88+
Initial release.

vendor/github.com/eclipse/paho.mqtt.golang/README.md

Lines changed: 3 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/eclipse/paho.mqtt.golang/client.go

Lines changed: 5 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/eclipse/paho.mqtt.golang/messageids.go

Lines changed: 32 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/eclipse/paho.mqtt.golang/net.go

Lines changed: 41 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/eclipse/paho.mqtt.golang/packets/connect.go

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/golang.org/x/net/proxy/direct.go

Lines changed: 18 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)