-
Notifications
You must be signed in to change notification settings - Fork 536
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Prepare to move sharedSequence to sequence-deprecated package (#16829)
sharedSequence is only used by dds in the sequence-deprecated package, so is not needed in the sequence package, this change begins the process of deprecating and moving sharedSequence to sequence-deprecated --------- Co-authored-by: Tony Murphy <[email protected]>
- Loading branch information
1 parent
eefcfcf
commit 0cf2b6d
Showing
9 changed files
with
47 additions
and
6 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
"@fluidframework/sequence": minor | ||
--- | ||
|
||
Deprecate SharedSequence, SubSequence, and IJSONRunSegment | ||
|
||
The types SharedSequence, SubSequence, and IJSONRunSegment are being deprecated and moved. | ||
|
||
They are now, and will continue to be exposed from the @fluid-experimental/sequence-deprecated package. | ||
|
||
New usages of these types should not be added, but they may be necessary for migration. |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
12 changes: 12 additions & 0 deletions
12
experimental/dds/sequence-deprecated/src/sharedSequence.ts
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/*! | ||
* Copyright (c) Microsoft Corporation and contributors. All rights reserved. | ||
* Licensed under the MIT License. | ||
*/ | ||
|
||
/** | ||
* In a future release we will move these types here and export them directly with: | ||
* | ||
* @deprecated SharedSequence is not recommended for use and will be removed in an upcoming release. | ||
* For more info, please see [Github issue 8526](https://github.com/microsoft/FluidFramework/issues/8526) | ||
*/ | ||
export { SubSequence, SharedSequence, IJSONRunSegment } from "@fluidframework/sequence"; |
This file contains 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
This file contains 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