@turquoisebay/mqtt 0.1.15 → 0.1.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/README.md +6 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.1.16] - 2026-02-03
|
|
9
|
+
|
|
10
|
+
### Docs
|
|
11
|
+
- Remove real IPs from documentation
|
|
12
|
+
- Add security note for trusted MQTT clients
|
|
13
|
+
- Add pairing/handshake TODO
|
|
14
|
+
|
|
8
15
|
## [0.1.15] - 2026-02-03
|
|
9
16
|
|
|
10
17
|
### Added
|
|
@@ -97,6 +104,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
97
104
|
- [ ] GitHub Actions CI
|
|
98
105
|
- [ ] Last Will and Testament support
|
|
99
106
|
- [ ] Multiple topic subscriptions
|
|
107
|
+
- [ ] Pairing/handshake for trusted clients
|
|
100
108
|
|
|
101
109
|
## [0.1.0] - Unreleased
|
|
102
110
|
|
package/README.md
CHANGED
|
@@ -124,11 +124,15 @@ automation:
|
|
|
124
124
|
payload: "{{ trigger.payload }}"
|
|
125
125
|
```
|
|
126
126
|
|
|
127
|
+
## Security
|
|
128
|
+
|
|
129
|
+
**Important:** Any client that can publish to the inbound topic has full access to your OpenClaw agent. Treat MQTT as a **trusted channel only** (restricted broker, auth, private network). If you need untrusted access, add a validation layer before publishing to `openclaw/inbound`.
|
|
130
|
+
|
|
127
131
|
## Development
|
|
128
132
|
|
|
129
133
|
```bash
|
|
130
|
-
# Clone
|
|
131
|
-
git clone
|
|
134
|
+
# Clone (replace with your host)
|
|
135
|
+
git clone ssh://<host>/opt/git/openclaw-mqtt.git
|
|
132
136
|
cd openclaw-mqtt
|
|
133
137
|
|
|
134
138
|
# Install deps
|