Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions mosquitto/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 7.0.1

- Fix regression where clients with `/` in their client id (e.g. `govee2mqtt`) were rejected with "ACL denying access to client with dangerous client id" after the mosquitto 2.1 upgrade ([#4564](https://github.com/home-assistant/addons/issues/4564))

## 7.0.0

- Remove unsupported architectures (armhf, armv7, i386)
Expand Down
2 changes: 1 addition & 1 deletion mosquitto/config.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
version: 7.0.0
version: 7.0.1
slug: mosquitto
name: Mosquitto broker
description: An Open Source MQTT broker
Expand Down
4 changes: 4 additions & 0 deletions mosquitto/rootfs/usr/share/tempio/mosquitto.gtpl
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ max_queued_messages 8192

# Authentication plugin
auth_plugin /usr/share/mosquitto/go-auth.so
# Restore pre-7.0 behaviour: allow '/' in client ids and usernames.
# The addon's ACL file does not use pattern substitution (%c/%u), so
# mosquitto 2.1's broker-side rejection of +, #, / is not needed here.
auth_plugin_deny_special_chars false
auth_opt_backends files,http
auth_opt_hasher pbkdf2
auth_opt_cache true
Expand Down
Loading