Skip to content

API Review Process.md

Ryan Nowak edited this page Jan 15, 2020 · 6 revisions

Description

Starting from the 5.0, certain areas within the aspnet/AspNetCore repo will require formal API Review process. API changes to the following areas are required to go follow this process:

  • area-mvc
    • feature-model-binding
    • feature-razor-pages
    • feature-JSONPatch
    • feature-discovery
    • feature-formatters
    • feature-api-explorer
    • feature-tag-helpers
  • area-signalr
  • area-hosting

Process

The goal of the API Review process is to ensure that the new APIs are following common patterns and the best practices. Also, it's aimed to help and guide engineers towards better API design decisions. People should feel empowered to submit their APIs for review as besides all the benefits it's also a learning and knowledge sharing experience.

The process is visualized in the below diagram: image

  1. API review process kicks in after the owner for the issue identifies that the work required for the issue will need an API change or addition. In such cases, the issue owner will handle (either himself/herself, or with the community member who has expressed interest in handling the work) driving a design proposal. When working with a community member, the issue owner is responsible for guiding them to an acceptable design.
  2. If the proposed design adds new APIs, mark those issues with the api-suggestion label
  3. When the issue owner thinks the proposal is in a good shape, he/she marks the issue with api-ready-for-review label. Also, the @asp-net-api-reviews team should be notified on the issue.
  4. The asp-net-api-reviews team will host a weekly API review meeting and will review your proposed API change during the next meeting. If you have an API scheduled for review, you must have a representative in the meeting.
  5. Some API reviews can happen through a shorter process. For these situations, simply ping the API review crew for a quicker review, so that it can happen as a conversation.
  6. When an API change/suggestion gets approved, the api-approved label should be added to the issue.
  7. The owner of the issue is now free to work on the implementation of the proposed API.
  8. In case during implementation changes to the original proposal are required, the review should become obsolete and the process should start from the beginning.

What Makes an issue/PR "ready-for-review"?

Before marking an issue as api-ready-for-review, make sure that the issue has the following:

  • A short description that will help reviewers not familiar with this area.
  • The API changes in ref-assembly format. It's fine to link this to the generated ref-assembly-code in the PR. If the changes are to an area that does produce ref-assemblies, please write out what it would look like in ref-assembly format for us to review.

Note: Ideally all of the following would be in the top comment on an issue, but that's not always possible when the issue was opened by a user. As a rule, we don't edit or replace user comments except for formatting, or if they break the rules. In this case it's fine to post a new comment on the issue, OR to edit the top post and insert a link. If you edit an external contributor's post to add a link make sure you explain why it was done!

In general, larger changes should have more explanation and context provided, and small changes need less explanation.

Good: This is the API for the widget factory, users use it in startup code to 
configure how their widgets work. We have an overload that accepts URI, but 
not one that accepts string, so we're adding it for convenience.

Bad: Adding a string overload for Widget.ConfigureFactory.

A really large change or feature-area design should probably come with a lot of explanation: example

If you are the "champion" for a community-submitted change

If you are assigned a community-submitted change to champion in our API-review then just put on your pretend pajamas and pretend that it was your change to begin with. Come to the meeting ready to explain why this addition is needed, and why it's the best approach.

API Review Meeting

The API Review meeting should be open to any member of the ASP.NET Core team. And invite will be sent to all the team with pre-booked meeting room and time-slot for these meetings to be hosted. Each API review should include the area owners as mandatory attendees.