From 4f733438a596e0c71405f9a2905a1e499eb2f09e Mon Sep 17 00:00:00 2001 From: Ron Petrusha Date: Thu, 5 Sep 2019 14:48:34 +0000 Subject: [PATCH] Added breaking change template (#383) --- .github/ISSUE_TEMPLATE/breaking-change.md | 63 +++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/breaking-change.md diff --git a/.github/ISSUE_TEMPLATE/breaking-change.md b/.github/ISSUE_TEMPLATE/breaking-change.md new file mode 100644 index 0000000..c993239 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/breaking-change.md @@ -0,0 +1,63 @@ +--- +name: ASP.NET Core breaking change +about: Report a breaking change in ASP.NET Core + +--- + +## [Change Title] + +[Brief description of the change] + +### Version introduced + +[Version in which the breaking change first occurred (for example, 3.0 for ASP.NET Core 3.0)] + +### Old behavior + +### New behavior + +### Reason for change + +### Recommended action + +[ Suggested steps if user is affected go here: +- Possible workarounds +- Example of code changes to handle change +] + +### Category + +ASP.NET + +### Affected APIs + +[ If no APIs are affected, this should read: + "Not detectable via API analysis" + + If affected APIs are identifiable, include a link for each. The link takes the form: + + `[friendly description of API](link to API on docs.microsoft.com)` + + For example, `[String.IndexOf(String)](https://docs.microsoft.com/dotnet/api/system.string.indexof#System_String_IndexOf_System_String_) + + For methods, if all overloads are affected, link to the general overloaded method page. For example: + + + + Otherwise, link to the individual method overload. For example: + + + +] + + + +--- +#### Issue metadata + +* Issue type: breaking-change