Skip to content

Commit

Permalink
Default availability to provisional on Darwin. (project-chip#1151)
Browse files Browse the repository at this point in the history
  • Loading branch information
bzbarsky-apple authored Sep 28, 2023
1 parent c3ff526 commit cca76eb
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -695,11 +695,13 @@ async function availability(clusterName, options) {

if (introducedVersions === undefined) {
console.log(
`WARNING: Missing "introduced" entry for: '${clusterName}' '${JSON.stringify(
`WARNING: Missing "introduced" or "provisional" entry for: '${clusterName}' '${JSON.stringify(
options.hash
)}'`
);
introducedVersions = 'future';
// Default to provisinal status until we decide otherwise, so we don't
// accidentally ship things as unconditionally available.
return 'MTR_PROVISIONALLY_AVAILABLE';
}

if (introducedVersions === 'future') {
Expand Down

0 comments on commit cca76eb

Please sign in to comment.