-
Notifications
You must be signed in to change notification settings - Fork 535
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
Removed deprecated usages of the option summarizeProtocolTree #23355
base: main
Are you sure you want to change the base?
Conversation
6674943
to
7332a96
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- Looks like
@fluidframework/container-loader
's version ofILoaderOptions
should be removed as well. - Recommend review of
summarizeProtocolTree
hits in code base as well to confirm there are no dangling oddities. - This will need to wait until 2.30 to happen as the related issue was not in the 2.20 break list. I updated issue to be in the 2.30 list.
- Create a branch under main repo under
test/legacy-breaks/client/2.30/
according to legacy break process. - Update the legacy break issue to be associated with replacement PR (test/ branch based) and assuming also removing extra ILoaderOptions per (1), then update issue title and content (recommend following Breaking Change template for content).
@@ -28,6 +28,7 @@ import { | |||
isFluidCodeDetails, | |||
IDeltaManager, | |||
ReadOnlyInfo, | |||
ILoaderOptions, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should update to a type
only import while touching and respect more alphabetizing (most entries are sorted; just the last few are not)
// eslint-disable-next-line import/no-deprecated | ||
import { IDetachedBlobStorage, ILoaderOptions, RelativeLoader } from "./loader.js"; | ||
import { IDetachedBlobStorage, RelativeLoader } from "./loader.js"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you please reformat so that the lint disable applies per import rather than for all imports? Thanks!
7332a96
to
73a5b97
Compare
Removing deprecated code that usage of
summarizeProtocolTree
option from the code. The change is non-breaking in nature. The PR only removes the old unused usages of summarizeProtocolTree.