Skip to content

Latest commit

 

History

History
95 lines (83 loc) · 13.5 KB

issue-guide.md

File metadata and controls

95 lines (83 loc) · 13.5 KB

Issue Guide

This page outlines how the CoreFx team thinks about and handles issues. For us, issues on GitHub represent actionable work that should be done at some future point. It may be as simple as a small product or test bug or as large as the work tracking the design of a new feature. However, it should be work that falls under the charter of CoreFx, which is a collection of foundational libraries that make up the .NET Core development stack. We will keep issues open even if the CoreFx team internally has no plans to address them in an upcoming release, as long as we consider the issue to fall under our purview.

When we close issues

As noted above, we don't close issues just because we don't plan to address them in an upcoming release. So why do we close issues? There are few major reasons:

  1. Issues unrelated to CoreFx. When possible, we'll try to find a better home for the issue and point you to it.
  2. Cross cutting work better suited for another team. Sometimes the line between the framework, languages and runtime blurs. For some issues, we may feel that the work is better suited for the runtime team, language team or other partner. In these cases, we'll close the issue and open it with the partner team. If they end up not deciding to take on the issue, we can reconsider it here.
  3. Nebulous and Large open issues. Large open issues are sometimes better suited for User Voice, especially when the work will cross the boundaries of the framework, language and runtime. A good example of this is the SIMD support we recently added to CoreFx. This started as a User Voice request, and eventually turned into work for both the core libraries and runtime.

Sometimes after debate, we'll decide an issue isn't a good fit for CoreFx. In that case, we'll also close it. Because of this, we ask that you don't start working on an issue until it's tagged with up for grabs or api-approved. Both you and the team will be unhappy if you spend time and effort working on a change we'll ultimately be unable to take. We try to avoid that.

Labels

We use GitHub labels on our issues in order to classify them. We have the following categories per issue:

  • Area: These area-* labels (e.g. area-System.Collections) call out the assembly or assemblies the issue applies to. In addition to labels per assembly, we have a few other area labels: Infrastructure, for issues that relate to our build or test infrastructure, and area-Meta for issues that deal with the repository itself, the direction of the .NET Core Platform, our processes, etc. See full list of areas.
  • Issue Type: These labels classify the type of issue. We use the following types:
  • bug: Bugs in an assembly.
  • api-* (api-approved, api-needs-work): Issues which would add APIs to an assembly (see API Review process for details).
  • enhancement: Improvements to an assembly which do not add new APIs (e.g. performance improvements, code cleanup).
  • test bug: Bugs in the tests for a specific assembly.
  • test enhancement: Improvements in the tests for a specific assembly (e.g. improving test coverage).
  • documentation: Issues related to documentation (e.g. incorrect documentation, enhancement requests).
  • question: Questions about the product, source code, etc.
  • Other:
  • up for grabs: Small sections of work which we believe are well scoped. These sorts of issues are a good place to start if you are new. Anyone is free to work on these issues.
  • needs more info: Issues which need more information to be actionable. Usually this will be because we can't reproduce a reported bug. We'll close these issues after a little bit if we haven't gotten actionable information, but we welcome folks who have acquired more information to reopen the issue.

In addition to the above, we have a handful of other labels we use to help classify our issues. Some of these tag cross cutting concerns (e.g. cross platform, tenet-performance), whereas others are used to help us track additional work needed before closing an issue (e.g. api-needs-exposed).

Milestones

We use milestones to prioritize work for each upcoming release to NuGet.org.

Assignee

We assign each issue to assignee, when the assignee is ready to pick up the work and start working on it. If the issue is not assigned to anyone and you want to pick it up, please say so - we will assign the issue to you. If the issue is already assigned to someone, please coordinate with the assignee before you start working on it.

Note: This is a new scheme introduced in 2016/9. The old scheme used assignees as area owners. We will migrate issues to the new scheme throughout 2016.

Areas

Areas are tracked by labels area-* (e.g. area-System.Collections), or Infrastructure. Each area typically corresponds to one or more contract assemblies.

Area Owners / experts Description Triage Status
area-Meta Issues without clear association to any specific API/contract (e.g. packaging, project-wide docs)
Infrastructure
area-Serialization
System contract assemblies
System.AppContext
System.Buffers
System.CodeDom                 @Priya91
System.Collections @Priya91, @ianhays Triaged
System.ComponentModel
System.ComponentModel.DataAnnotations
System.Composition
System.Console @ianhays
System.Data                       @saurabh500, @YoungGah
System.Data.SqlClient @saurabh500, @YoungGah
System.Diagnostics
System.Diagnostics.Process @Priya91
System.Diagnostics.Tracing       
System.DirectoryServices
System.Drawing
System.Dynamic.Runtime @VSadov, @OmarTawfik
System.Globalization @krwq, @tarekgh
System.IO @JeremyKhune, @ianhays Triaged
System.IO.Compression @ianhays Triaged
System.Linq @VSadov, @OmarTawfik
System.Linq.Expressions @VSadov, @OmarTawfik
System.Linq.Parallel @alexperovich, @kouvel
System.Net
System.Numerics @mellinoe Triaged
System.Reflection
System.Reflection.Emit  
System.Reflection.Metadata @tmat, @nguerrera  
System.Resources              
System.Runtime                  
System.Runtime.CompilerServices    
System.Runtime.Extensions    
System.Runtime.InteropServices @tijoytom, @yizhang82  
System.Security               @bartonjs, @steveharter  
System.ServiceModel        
System.ServiceProcess   @Priya91  
System.Text.Encoding     @krwq, @tarekgh  
System.Text.RegularExpressions @Priya91  
System.Threading             @kouvel, @alexperovich Triaged
System.Transactions       @jimcarley, @qizhanMS, @dmetzgar  
System.Xml                         @sepidehMS, @krwq  Triaged
System                                 Issues without clear contract association (cross-contract, or potentially new contracts)  
Microsoft contract assemblies  
Microsoft.CSharp              
Microsoft.VisualBasic    
Microsoft.Win32                

Note: Area triage will apply the new scheme (issue types and assignee) throughout 2016.