forked from microsoft/FluidFramework
-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Upcoming Release: FluidFramework v2.23.0 #26
Comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This issue is automatically updated with a preview of the release notes for the upcoming Fluid Framework release.
To generate release notes locally to commit to the
RELEASE_NOTES
folder in the repo, run the following command:To generate the release notes to paste into the GitHub Release, run the following command:
This should happen automatically as part of the release process, but if you need to generate the release notes manually, you can use the above command.
Fluid Framework v2.23.0
Contents
✨ New Features
Events added for local value changes (#23858)
LatestValueManager
localUpdated
raised whenlocal
is assignedLatestMapValueManager
localItemUpdated
raised whenlocal.set
is calledlocalItemRemoved
raised whenlocal.delete
is calledChange details
Commit:
2896983
Affected packages:
⬆️ Table of contents
The SharedTreeCore.processCore on SharedTreeCore is now deprecated (#23732)
A new function
processMessagesCore
has been added in place ofprocessCore
, which will be called to process multiple messages instead of a single one on the channel. This is part of a feature called "Op bunching" where contiguous ops in a grouped batch are bunched and processed together by the shared object.Implementations of
SharedTreeCore
must now also implementprocessMessagesCore
. For a reference implementation, seeSharedTreeCore.processMessagesCore
.Change details
Commit:
a98b04f
Affected packages:
⬆️ Table of contents
The FluidDataStoreRuntime.process function is now deprecated (#23866)
A new function
processMessages
has been added in its place which will be called to process multiple messages instead of a single one on the data store runtime. This is part of a feature called "Op bunching" where contiguous ops of a given type and to a given data store / DDS are bunched and sent together for processing. Note thatprocess
may still be called in scenarios where this data store runtime (Datastore layer) is running with an older version of data store context (Runtime layer) in the same client. This is to support Fluid layer compatibility.Change details
Commit:
3f44d43
Affected packages:
⬆️ Table of contents
🛠️ Start Building Today!
Please continue to engage with us on GitHub Discussion and Issue pages as you adopt Fluid Framework!
The text was updated successfully, but these errors were encountered: