@@ -47,6 +47,21 @@ All notable changes to this project will be documented in this file.
47
47
> For ` serde_rusqlite ` to properly match the column to structs, it must be
48
48
> explicitly named, which is not the case for aggregation functions like
49
49
> ` COUNT(*) ` .
50
+ - Update existing cmd on conflict.
51
+ > When adding a new command, and the command in fact already exists, thus,
52
+ > it's an update, replace the content of the command instead of failing.
53
+ - Reconnect on websocket close.
54
+ - Only create missing subscriptions.
55
+ > Trying to create a new event subscription with the same type fails if
56
+ > one already exists (seems to be the case with reconnects). Thus, only
57
+ > create the subs that are missing.
58
+ - Don't split custom cmd content again.
59
+ > A refactoring leftover that split the content again (due to the same
60
+ > naming of a variable for the whole message payload, before the
61
+ > refactor).
62
+ >
63
+ > This is not needed anymore, and even truncated the content of the
64
+ > content, resulting in unexpected command contents.
50
65
51
66
### 🚜 Refactor
52
67
@@ -88,5 +103,6 @@ All notable changes to this project will be documented in this file.
88
103
- Clean up cargo-deny config.
89
104
- Add justfile for common tasks.
90
105
- Move state module out of folder.
106
+ - Update changelog.
91
107
92
108
<!-- generated by git-cliff -->
0 commit comments