-
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
Remove deprecated inbound and outbound queues on IDeltaManager #22282
Changes from all commits
f345f58
6b1d9b8
43cb01d
6c40c0f
a24b921
40c4b14
6249ee3
4e58079
be2c990
673fe40
8cce39c
f4ad396
8c47df1
e1a17ab
34fafda
dc038dc
37c5589
355cfcc
d07babf
6710b81
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
--- | ||
"@fluidframework/aqueduct": minor | ||
"@fluidframework/container-definitions": minor | ||
"@fluidframework/container-loader": minor | ||
"@fluidframework/container-runtime": minor | ||
"@fluidframework/container-runtime-definitions": minor | ||
"@fluidframework/datastore": minor | ||
"@fluidframework/devtools-core": minor | ||
"@fluidframework/fluid-static": minor | ||
"@fluidframework/runtime-definitions": minor | ||
"@fluidframework/runtime-utils": minor | ||
"@fluid-private/test-end-to-end-tests": minor | ||
"@fluidframework/test-runtime-utils": minor | ||
"@fluidframework/test-utils": minor | ||
--- | ||
--- | ||
"section": legacy | ||
--- | ||
|
||
The inbound and outbound properties have been removed from IDeltaManager | ||
|
||
The inbound and outbound properties were deprecated in a previous release and have been removed from IDeltaManager. Please check pull request [#19636](https://github.com/microsoft/FluidFramework/pull/19636) for alternative APIs. | ||
|
||
This is the link to the [Release Notes](https://github.com/microsoft/FluidFramework/blob/main/RELEASE_NOTES/2.0.0-rc.2.0.0.md#container-definitions-deprecate-ideltamanagerinbound-and-ideltamanageroutbound) | ||
which contains more instructions on the alternatives. |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -140,7 +140,11 @@ | |
"typescript": "~5.4.5" | ||
}, | ||
"typeValidation": { | ||
"broken": {}, | ||
"broken": { | ||
"Interface_IFluidContainerInternal": { | ||
"backCompat": false | ||
} | ||
}, | ||
Comment on lines
+143
to
+147
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm very naive - is this safe? cc: @ChumpChief There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The breaking changes will have these. However, since we first deprecated it and now properly removing it, then it is fine. |
||
"entrypoint": "public" | ||
} | ||
} |
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.
I would recommend including the migration / replacement API instructions directly here, rather than linking to a PR / release notes. That's a lot of navigation steps for our users to jump through to get the information they need.
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.
Will paste here. I added link to the release notes as well. But I can certainly copy those here.