-
Notifications
You must be signed in to change notification settings - Fork 2
changelog
Moritz Roessler edited this page Jan 25, 2024
·
8 revisions
- Fixed additional rerenders.
- Add serverside rerendering to allow useEffect calls to happen after data has been fetched from the database
- Bugfixes
- Added PostgreSQL transport to stores.
- Fixed reactivity bug
We fixed the publish mechanism to only publish when there are changes in the rendered component. This has the side-effect that you now need to set a client specific key using the clientKey
utility. Otherwise, components will not update on every connected client. We will see if there's a way around using the utility e.g. by automatically appending client side information.
04.05.2023
- Added
destroy
function to cleanup dynamic components.
- Fixed a memory leak that caused dangling event listeners und additional rerenders.
- Updated the docs.
27.04.2023
- Added reactivity across clients.
- Changing a state properly rerenders the component in the context of each connected client, ensuring multi client realtime state updates.