Documentation/project/api-review-process.md
.NET has a long standing history of taking API usability extremely seriously. Thus, we generally review every single API that is added to the product. This page discusses how we conduct design reviews for components that are open sourced.
We will review all publicly exposed API proposed to be added to the product components that are built out of this repo. Those are in both the System.* and Microsoft.* namespaces.
sequenceDiagram
participant R as Requester
participant O as WPF Owners
participant F as API review board
(FXDC)
R ->> O: Files issue under dotnet/wpf
note over O: Assigns owner
note over R, O: Discussion
O ->> F: Label api-ready-for-review
note over F: Performs review
alt is accepted
F ->> R: Label api-approved
else is work needed
F ->> O: Label api-needs-work
else is rejected
F ->> R: Issue is closed
end
Requester files an issue. The issue description should contain a speclet that represents a sketch of the new APIs, including samples on how the APIs are being used. The goal isn't to get a complete API list, but a good handle on how the new APIs would roughly look like and in what scenarios they are being used. Please use this template. The issue should have the label api-suggestion. Here is a good example of an issue following that template.
We assign an owner. We'll assign a dedicated owner from our side that sponsors the issue. This is usually the area owner for which the API proposal or design change request was filed for.
Discussion. The goal of the discussion is to help the assignee to make a decision whether we want to pursue the proposal or not. In this phase, the goal isn't necessarily to perform an in-depth review; rather, we want to make sure that the proposal is actionable, i.e. has a concrete design, a sketch of the APIs and some code samples that show how it should be used. If changes are necessary, the owner will set the label api-needs-work. To make the changes, the requester should edit the top-most issue description. This allows folks joining later to understand the most recent proposal. To avoid confusion, the requester can maintain a tiny change log, like a bolded "Updates:" followed by a bullet point list of the updates that were being made. When the feedback is addressed, the requester should notify the owner to re-review the changes.
Owner makes decision. When the owner believes enough information is available to make a decision, they will update the issue accordingly:
api-ready-for-review. Here is a good example of a strong API proposal.API gets reviewed. The group conducting the review is called FXDC, which stands for framework design core. In the review, we'll take notes and provide feedback. Reviews are streamed live on YouTube. After the review, we'll publish the notes in the API Review repository and at the end of the relevant issue. A good example is the review of immutable collections. Multiple outcomes are possible:
api-ready-for-review is replaced with api-approved.api-ready-for-review with api-needs-work.There are three methods to get an API review:
dotnet/wpf and applying the label api-ready-for-review on it will make your issue show up during API reviews. The downside is that we generally walk the backlog oldest-newest, so your issue might not be looked at for a while. Progress of issues can be tracked via https://aka.ms/ready-for-api-review.api-ready-for-review and blocking. All blocking issues are looked at before we walk the backlog.Unfortunately, we have throughput issues and try our best to get more stuff done. We normally have one two-hour slot per week, but we're currently operating at three two hour slots.
Pull requests against dotnet/wpf shouldn't be submitted before getting approval. Also, we don't want to get work in progress (WIP) PR's. The reason being that we want to reduce the number pending PRs so that we can focus on the work the community expects we take action on.
If you want to collaborate with other people on the design, feel free to perform the work in a branch in your own fork. If you want to track your TODOs in the description of a PR, you can always submit a PR against your own fork. Also, feel free to advertise your PR by linking it from the issue you filed against dotnet/wpf in the first step above.
The .NET design guidelines are captured in the famous book Framework Design Guidelines by Krzysztof Cwalina, Jeremy Barton and Brad Abrams.
A digest with the most important guidelines are available in our documentation. Long term, we'd like to publish the individual guidelines in standalone repo on which we can also accept PRs and -- more importantly for API reviews -- link to.
The API review notes are being published in API Review repository.