v0.16.11 Expose helper type to help users adopt to using Live structures with interfaces they don't own.
v0.16.10 Restructures a few more internals.
v0.16.9 Restructures a few internals.
v0.16.8 Fix bug in private/internal code.
v0.16.7 Fix bug in private/internal code.
v0.16.6 Fix bug in example code suggested in deprecation warning.
v0.16.5 All packages
- Various internal refactorings
Bug fixes
-
In @liveblocks/client:
- If you're using
@liveblocks/clientin a ES2015 context, you no longer have to polyfillObject.fromEntries().
- If you're using
v0.16.4 All packages
- Improve our generated bundles. They are now even more tree-shakable, and smaller!
- Some APIs are being deprecation and will show warnings in the dev console when used
v0.16.3 Bug fixes
-
In @liveblocks/client:
- Fix bug where internal presence state could not get restored correctly after undo/redo in certain circumstances.
-
In @liveblocks/zustand and @liveblocks/redux:
-
Fixes an issue when initializing an array with items would result in having duplicated items in other clients. Example:
- Client A updates state :
{ list: [0] } - Client B states is updated to :
{ list: [0, 0] }
- Client A updates state :
-
-
v0.16.2 Bug fixes
-
In @liveblocks/client:
- Fix small bug related to new
JsonObjecttype, which would reject some values that were legal JSON objects.
- Fix small bug related to new
-