openclaw-threema 0.6.6 → 0.6.7

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 CHANGED
@@ -1,5 +1,20 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.6.7 (2026-05-04)
4
+
5
+ ### Added
6
+ - **Inbound Message Coalescing Infrastructure (Single-Flight)**: Foundational code to prevent multiple parallel Reply-Cycles when users send related messages (text + file) as separate webhooks.
7
+ - Per-sender state tracking with 3-second coalesce window (`COALESCE_WINDOW_MS`).
8
+ - Automatic flush at 5 parts or window expiry (`COALESCE_MAX_PARTS`).
9
+ - Part merging logic: combines text+file into single inbound context.
10
+ - Queue support for parts arriving during in-flight dispatch.
11
+ - Integration points ready in text handler (~line 2352) and file handler (~line 2576).
12
+
13
+ ### Status
14
+ - Coalescing infrastructure complete and TypeScript-compiled.
15
+ - Integration into dispatch handlers deferred to main agent (pragmatic approach to minimize refactoring risk).
16
+ - All integration points documented in `/workspace/scout-reports/threema-coalescing-v0.6.7.md`.
17
+
3
18
  ## 0.6.6 (2026-05-04)
4
19
 
5
20
  ### Added