-
Notifications
You must be signed in to change notification settings - Fork 567
Export StagingMode as legacy/alpha #25377
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
Merged
anthony-murphy
merged 20 commits into
microsoft:main
from
anthony-murphy:runtime-defs-legacy-alpha
Sep 22, 2025
Merged
Changes from 18 commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
cf28d75
Export StagingMode as legacy/alpha and fix infrastructure
anthony-murphy 142546a
Merge branch 'main' of https://github.com/microsoft/FluidFramework in…
anthony-murphy 4d70181
reverts
anthony-murphy 9274b11
bump buildcli version
anthony-murphy 8444526
move to file and clean up tagging and naming
anthony-murphy 0e2d9f2
delete the patch
anthony-murphy 9f25ade
reverts
anthony-murphy fd4f937
add alpha legacy api report
anthony-murphy de65f6e
update code owners to exlude alpha legacy
anthony-murphy 81aac4e
Update packages/runtime/runtime-definitions/package.json
anthony-murphy 21166a3
Update packages/runtime/runtime-definitions/src/stagingMode.ts
anthony-murphy d03d540
Update packages/runtime/runtime-definitions/src/stagingMode.ts
anthony-murphy 4a00c31
Update packages/runtime/runtime-definitions/src/stagingMode.ts
anthony-murphy 62d1f2c
fixes and comments
anthony-murphy 7f952d6
Merge branch 'runtime-defs-legacy-alpha' of https://github.com/anthon…
anthony-murphy d89391a
update lock file
anthony-murphy 4493081
bump version in package
anthony-murphy 3347921
Merge branch 'main' of https://github.com/microsoft/FluidFramework in…
anthony-murphy 9c8301b
Merge branch 'main' of https://github.com/microsoft/FluidFramework in…
anthony-murphy 039e35d
docs
anthony-murphy File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
5 changes: 5 additions & 0 deletions
5
packages/runtime/runtime-definitions/api-extractor/api-extractor-lint-legacyAlpha.cjs.json
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| { | ||
| "$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json", | ||
| "extends": "<projectFolder>/../../../common/build/build-common/api-extractor-lint.entrypoint.json", | ||
| "mainEntryPointFilePath": "<projectFolder>/dist/legacyAlpha.d.ts" | ||
| } |
5 changes: 5 additions & 0 deletions
5
packages/runtime/runtime-definitions/api-extractor/api-extractor-lint-legacyAlpha.esm.json
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| { | ||
| "$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json", | ||
| "extends": "<projectFolder>/../../../common/build/build-common/api-extractor-lint.entrypoint.json", | ||
| "mainEntryPointFilePath": "<projectFolder>/lib/legacyAlpha.d.ts" | ||
| } |
6 changes: 5 additions & 1 deletion
6
packages/runtime/runtime-definitions/api-extractor/api-extractor.legacy.json
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,8 @@ | ||
| { | ||
| "$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json", | ||
| "extends": "<projectFolder>/../../../common/build/build-common/api-extractor-report.esm.legacy.json" | ||
| "extends": "<projectFolder>/../../../common/build/build-common/api-extractor-report.esm.legacy.json", | ||
| "mainEntryPointFilePath": "<projectFolder>/lib/legacyAlpha.d.ts", | ||
|
Contributor
Author
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. this changes as legacyAlpha.d.ts is the bottom most type def, from which all alpha legacies flow |
||
| "apiReport": { | ||
| "reportVariants": ["public", "beta", "alpha"] | ||
| } | ||
| } | ||
Oops, something went wrong.
Oops, something went wrong.
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.
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.
this just included legacy alpha, which is not needed now, as the public and beta rule above will appropriately cover legacy for public and beta, and legacy alpha no longer needs api review
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.
Yay! Less special-ness!