Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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 Sep 3, 2025
142546a
Merge branch 'main' of https://github.com/microsoft/FluidFramework in…
anthony-murphy Sep 4, 2025
4d70181
reverts
anthony-murphy Sep 4, 2025
9274b11
bump buildcli version
anthony-murphy Sep 4, 2025
8444526
move to file and clean up tagging and naming
anthony-murphy Sep 4, 2025
0e2d9f2
delete the patch
anthony-murphy Sep 4, 2025
9f25ade
reverts
anthony-murphy Sep 4, 2025
fd4f937
add alpha legacy api report
anthony-murphy Sep 4, 2025
de65f6e
update code owners to exlude alpha legacy
anthony-murphy Sep 4, 2025
81aac4e
Update packages/runtime/runtime-definitions/package.json
anthony-murphy Sep 4, 2025
21166a3
Update packages/runtime/runtime-definitions/src/stagingMode.ts
anthony-murphy Sep 4, 2025
d03d540
Update packages/runtime/runtime-definitions/src/stagingMode.ts
anthony-murphy Sep 4, 2025
4a00c31
Update packages/runtime/runtime-definitions/src/stagingMode.ts
anthony-murphy Sep 4, 2025
62d1f2c
fixes and comments
anthony-murphy Sep 4, 2025
7f952d6
Merge branch 'runtime-defs-legacy-alpha' of https://github.com/anthon…
anthony-murphy Sep 4, 2025
d89391a
update lock file
anthony-murphy Sep 4, 2025
4493081
bump version in package
anthony-murphy Sep 5, 2025
3347921
Merge branch 'main' of https://github.com/microsoft/FluidFramework in…
anthony-murphy Sep 5, 2025
9c8301b
Merge branch 'main' of https://github.com/microsoft/FluidFramework in…
anthony-murphy Sep 22, 2025
039e35d
docs
anthony-murphy Sep 22, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@
# API report changes
/**/api-report/*.public.api.md @microsoft/fluid-cr-api
/**/api-report/*.beta.api.md @microsoft/fluid-cr-api
/**/api-report/*.legacy.*.api.md @microsoft/fluid-cr-api
Copy link
Copy Markdown
Contributor Author

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

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yay! Less special-ness!

/tools/**/api-report/*.api.md # Do not require API review for tools packages

# Changesets and release notes
Expand Down
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"
}
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"
}
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",
Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The 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"]
}
}
Loading
Loading