refactor(experimental-tree)!: decouple ISharedTree from ISharedObject#26722
Open
tylerbutler wants to merge 1 commit intotylerbu/experimental-tree-deprecatefrom
Open
refactor(experimental-tree)!: decouple ISharedTree from ISharedObject#26722tylerbutler wants to merge 1 commit intotylerbu/experimental-tree-deprecatefrom
tylerbutler wants to merge 1 commit intotylerbu/experimental-tree-deprecatefrom
Conversation
BREAKING CHANGES: - ISharedTree now extends IFluidLoadable + IEventProvider<ISharedTreeEvents> instead of ISharedObject<ISharedTreeEvents>. Members from IChannel (isAttached, getAttachSummary, summarize, connect, getGCData, attributes, bindToContext) are no longer available on ISharedTree. - ISharedTreeEvents now extends IErrorEvent instead of ISharedObjectEvents. The pre-op and op event signatures from ISharedObjectEvents are no longer available. - ISharedTreeEvents event name fixed: 'appliedSequencedEdit' renamed to 'sequencedEditApplied' to match the actual emitted event. - ISharedTreeEvents renamed to ISharedTreeInternalEvents (internal). The public ISharedTreeEvents is now defined in ISharedTree.ts. These changes remove SharedObject, ISharedObject, ISharedObjectEvents, IChannel, and related DDS infrastructure types from the alpha API surface of @fluid-experimental/tree.
This was referenced Mar 13, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Breaking changes to the
@fluid-experimental/treealpha API surface to remove DDS infrastructure types:ISharedTreenow extendsIFluidLoadable + IEventProvider<ISharedTreeEvents>instead ofISharedObject<ISharedTreeEvents>. Members fromIChannel(isAttached,getAttachSummary,summarize,connect,getGCData,attributes,bindToContext) are no longer available on the interface.ISharedTreeEventsnow extendsIErrorEventinstead ofISharedObjectEvents. Thepre-opandopevent signatures are no longer available (these were documented as internal implementation details).'appliedSequencedEdit'renamed to'sequencedEditApplied'to match the actual emitted event name (SharedTreeEvent.SequencedEditApplied).ISharedTreeEventsrenamed toISharedTreeInternalEvents(not part of public API).This removes
SharedObject,ISharedObject,ISharedObjectEvents,IChannel, and related DDS infrastructure types from the alpha API surface. Part of the custom DDS removal effort (#26184).Depends on: #26721
Test plan