doc(sdk): Add the changelog file.

This commit is contained in:
Ivan Enderlin
2026-06-23 18:48:35 +02:00
parent 13765dddfa
commit ffb1e76d8b

View File

@@ -0,0 +1,7 @@
Ensure a `VectorDiff` is not emitted to subscribers when an event cache is
shrunk because no subscribers is listening to it. If there is no subscribers,
it's useless to send it anyway, and if in the future, a race happens and a
subscriber exists, it must not receive this diff.
At the same time, the way the subscribers are tracked and counted have been
revisited to use less space in memory and use less atomic operations.