Background #

This issue provides a guide on how to analyze and update (in other words, triage) major priority issues in order to make Drupal 8 more stable and plan the next phases of Drupal core development.

Definition of major priority issues: https://www.drupal.org/core/issue-priority#major-bug

Past major triage Contribution days:

Upcoming major triage Contribution days:

Goals #

At the end of major triage we should have:

Understand the current state of the issue #

Note that these instructions are specific to bugs. Tasks and feature requests should be handled differently.

We recommend that you keep a separate file of your notes, and the issue metadata (tags, status, etc) you are planning to change. Make an initial comment saying that you and the person you will be working with are at the Drupalcon Nashville sprint looking at this issue. Try to make the rest of the metadata changes to the issue in one issue update (if possible) rather than making a number of smaller updates (to cut down on the number of notifications). Document the results of each step.

Even if you only do some of the steps, something is better than nothing. The goal is to make forward progress, not solve the issue in a single comment.

  1. Work with a partner. Select an issue from your component's queue (below). Pick a component you are familiar with, it will make things easier.
  2. Read the whole issue, or at least the last few comments to understand the issue. Do so in less than 15 minutes.
    • If you partly understand the issue, or if you have some questions about it, ask someone! You can ask one of the recommended contacts for the component, contributors who have worked on the issue, the contribution leads, or other contributors at the contribution or in IRC.
    • If you do not understand the issue in less than 15 minutes of reading it, choose a different issue.
    • Make note of:
      • Who filed it (Do they have more than 20 commit mentions in Drupal 8? More than 100? Are they a maintainer for the subsystem, an initiative coordinator, or a core committer? See list of maintainers.) Their experience with Drupal 8 lends credibility and validity to the issue.
      • When it was first created. If the issue is really old, then it has a higher chance of being not applicable.
      • When it was last updated. The longer the issue hasn’t been touched, the higher the chance that the issue is not applicable.
  3. Tag the issue with the tag for the Contribution day (e.g. "Nasvhille2017") and comment that you are working on triaging it.
  4. Try to reproduce the issue in the 8.5.x (or latest) HEAD, either on simplytest.me or locally. (If you test locally, start clean and be sure you pull the latest changes from git. `git log` should show commits within the last day or so.)
    • If you can reproduce the issue, leave a comment indicating that you have confirmed that the bug is still present. Document the steps to reproduce in the issue summary if they are not listed there already, and then go on to the next step.
    • If you cannot reproduce the issue:
      • Try to reproduce the issue using the version of Drupal from when the issue was filed. You may need to check a specific commit from a long time ago or even Drupal 7.x. (Use `git log --before=date` to find commits before a certain date.) Be sure to start clean.
      • If you can reproduce the issue using an older version of Drupal 8.x, try to figure out when and how the issue was fixed, and document what you find on the issue. Techniques you can use:
        • Search for "Fixed" and "Closed (fixed)" issues related to the issue.
        • Use `git log -S` or `git log --grep` to search for related commits.
        • Use `git bisect` to find the first commit where the issue is resolved.
      • 4A. If you find a specific issue that fixed it, mark your issue as a duplicate of the issue that fixed it, and move on to the next issue.
      • 4B. If you can reproduce the issue in the latest version of Drupal 7 but not Drupal 8, post a comment indicating that the issue has been resolved in Drupal 8. Set the version to "7.x-dev" and remove the "needs backport to D7" tag if it is there. Move on to the next issue.
      • 4C. If you still can't reproduce the issue, leave a comment indicating that you were unable to reproduce the issue in either the current version or the original version. Document the exact steps you tried (so the next contributor knows what did not work) and tag the issue with "Needs steps to reproduce". Move onto the next issue.
  5. For issues that are still relevant (i.e. you were able to reproduce the bug), identify any duplicate issues. If you close issues as a duplicate, go on to the next steps for the open major issue. (You can disregard the closed one(s) from now on.) Do a best effort to find duplicates. Timebox to less than 30 minutes.
  6. Determine if the issue summary is up to date. If it is not, tag the issue with "Needs issue summary update". You can also update the summary with what you know.
  7. If the issue has a patch, determine whether the latest patch is still relevant. Try applying the patch on a local git checkout. If the patch does not apply, tag it "Needs reroll". Only if the patch applies locally should you send it for re-testing.
  8. Tag the issue with the Triaged for core major current state issue tag.

If you do not finish triaging an issue

Sometimes triaging an issue can take a long time, especially if it is difficult to reproduce. If you don't finish triaging an issue, add a comment that explains what you found so far and which steps you completed, so that the next contributor can build from your work.

Flowchart diagram #

Flowchart for triage process

(PDF version with example comments / draw.io original)

Example comments #

Initial comment

Your initial comment should include:

  1. The usernames of the other contributors you are collaborating with. Make sure to type your co-contributors' usernames correctly!
  2. The contribution or event you are participating in.
  3. A link to this issue, using the issue link shorthand: [#2474049]
  4. The username of anyone helping you as a mentor.

Example initial comment:

@contributor1, @contributor2, and I are working on triaging this issue at Event, following the instructions in #2474049: [meta] Major issue triage. @contributor3 is helping as our mentor.

Add the event tag with your initial comment.

Final comment

Your final comment should include:

  1. The exact steps you used when trying to reproduce the issue.
  2. The branches, releases, or commit hashes you tested with your steps, and what the results were on each.
  3. Links to any duplicate issues you find, using the [#NNNNNNN] issue link shorthand (where NNNNNNN is the Drupal.org node ID for the issue). Also add the issues to the Related issues field.
  4. An explanation for any changes you make to the issue metadata (tags, status, version, etc.).

Some examples:

We were or were not able to reproduce the issue on the latest 8.5.x on simplytest.me. The steps we used were:

  1. Install Drupal 8.5.x with the Standard profile.
  2. Enable the Settings Tray module under the Experimental package.
  3. (etc.)

We confirmed that the patch in comment #17 still applies to 8.5.x and we have sent it for re-testing using the "Add test/retest" link under the patch test results.

or

The latest patch in #17 does not apply to 8.5.x HEAD, so it needs to be rerolled. For this reason, we're adding the "Needs reroll" tag and marking the issue "Needs work".

If the issue is fixed in HEAD but present in an older version:

However, we were able to reproduce the issue with those same steps using an older release (8.2.6) from when this issue was reported back in February of 2017. We looked into it more and determined that this was fixed by [#NNNNNNN], so we are closing this as a duplicate of that issue by adding it to the related issues and marking this "Closed (duplicate)".

If the issue cannot be reproduced at all:

We tried testing on the latest 8.5.x HEAD, 8.2.6 (the latest release as of when the issue was posted), and commit e496c7b3 (a commit on the day the issue was posted) and we were not able to reproduce the issue. The issue does not apply to Drupal 7 since the Settings Tray module was not added until Drupal 8.2.0-beta2. So, we need accurate steps to reproduce the issue in order to resolve it. Tagging "Needs steps to reproduce" and marking "Postponed (maintainer needs more info)" for those reasons.

Major triage queues #

For the first few contributors, here are a few issues tagged Needs triage for core major current state that the committers determined could use verification. So the first contributors can look at those and potentially assess them.

Then, after that, contributors should team up with others, pick one component, and search for that component within this queue:
Drupal 8 major bugs that have not already been triaged.

Updated: 2017-09-03
Component Count Untriaged bug queue
entity system 30 entity system bugs
views.module 29 views.module bugs
configuration system 22 configuration system bugs
forms system 20 forms system bugs
file system 18 file system bugs
install system 14 install system bugs
base system 13 base system bugs
field system 13 field system bugs
comment.module 12 comment.module bugs
language system 12 language system bugs
cache system 12 cache system bugs
routing system 11 routing system bugs
ajax system 11 ajax system bugs
migration system 10 migration system bugs
database system 10 database system bugs
user.module 10 user.module bugs
system.module 10 system.module bugs
simpletest.module 9 simpletest.module bugs
file.module 9 file.module bugs
content_translation.module 9 content_translation.module bugs
user system 9 user system bugs
theme system 8 theme system bugs
node system 7 node system bugs
filter.module 7 filter.module bugs
locale.module 7 locale.module bugs
image system 7 image system bugs
taxonomy.module 7 taxonomy.module bugs
asset library system 6 asset library system bugs
documentation 6 documentation bugs
block.module 6 block.module bugs
rest.module 6 rest.module bugs
request processing system 6 request processing system bugs
extension system 6 extension system bugs
menu system 5 menu system bugs
language.module 5 language.module bugs
image.module 5 image.module bugs
path.module 4 path.module bugs
mail system 4 mail system bugs
text.module 4 text.module bugs
phpunit 4 phpunit bugs
plugin system 4 plugin system bugs
render system 4 render system bugs
config_translation.module 4 config_translation.module bugs
configuration entity system 4 configuration entity system bugs
editor.module 3 editor.module bugs
menu_link_content.module 3 menu_link_content.module bugs
forum.module 3 forum.module bugs
postgresql db driver 3 postgresql db driver bugs
batch system 3 batch system bugs
bootstrap system 3 bootstrap system bugs
contextual.module 3 contextual.module bugs
block_content.module 3 block_content.module bugs
update.module 3 update.module bugs
search.module 3 search.module bugs
sqlite db driver 3 sqlite db driver bugs
other 2 other bugs
settings_tray.module 2 settings_tray.module bugs
book.module 2 book.module bugs
views_ui.module 2 views_ui.module bugs
page_cache.module 2 page_cache.module bugs
Bartik theme 2 Bartik theme bugs
database update system 2 database update system bugs
config.module 2 config.module bugs
token system 2 token system bugs
mysql db driver 2 mysql db driver bugs
toolbar.module 2 toolbar.module bugs
quickedit.module 2 quickedit.module bugs
color.module 2 color.module bugs
rdf.module 2 rdf.module bugs
entity_reference.module 2 entity_reference.module bugs
menu_ui.module 1 menu_ui.module bugs
tour.module 1 tour.module bugs
ckeditor.module 1 ckeditor.module bugs
layout.module 1 layout.module bugs
help.module 1 help.module bugs
inline_form_errors.module 1 inline_form_errors.module bugs
workflows.module 1 workflows.module bugs
content_moderation.module 1 content_moderation.module bugs
serialization.module 1 serialization.module bugs
responsive_image.module 1 responsive_image.module bugs
markup 1 markup bugs
datetime.module 1 datetime.module bugs
number.module 1 number.module bugs
basic_auth.module 1 basic_auth.module bugs
statistics.module 1 statistics.module bugs
edit.module 1 edit.module bugs
link.module 1 link.module bugs
dblog.module 1 dblog.module bugs
big_pipe.module 1 big_pipe.module bugs
lock system 1 lock system bugs
tracker.module 1 tracker.module bugs
javascript 1 javascript bugs
hal.module 1 hal.module bugs
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

xjm’s picture

Issue summary: View changes
heddn’s picture

Issue summary: View changes
cilefen’s picture

Issue summary: View changes
cilefen’s picture

Issue summary: View changes
cilefen’s picture

Issue summary: View changes
cilefen’s picture

Issue summary: View changes
FileSize
461.16 KB
xjm’s picture

Status: Postponed » Active

Welcome to the major issue triage sprint at DrupalCon Los Angeles!

mrf’s picture

mrf, metzlerd, phillamb168, bisong table to right of MAJOR TRIAGE sign looking at Views majors.

https://www.drupal.org/project/issues/search/drupal?project_issue_follow...

xjm’s picture

Issue summary: View changes
johnshortess’s picture

rklawson’s picture

I'm working with a team of three on https://www.drupal.org/node/2310175 for the menu system component.

Notes:
At /admin/config/development/configuration, the page title should be “Configuration Management” and the path should be /admin/config/development/configuration/synchronize, to make the path consistent with the other tasks/subtasks.

We have a patch to solve this by changing the name of the path from “Synchronize” to “Configuration Management.” We tested this, and it appears to be working correctly.

We also evaluated other areas of the site to ensure that “deep linking” was not broken (Configuration Settings > Account Settings and its tasks/subtasks).

Given that the default task requires the “sychronize configuration” permission, there may need to be more work to ensure that users can access the appropriate subtasks (some use “export configuration” and “import configuraiton.”

baisong’s picture

cilefen’s picture

Removed references to the "rc target" tag. We are not using that tag today.

bburg’s picture

metzlerd’s picture

jibran’s picture

I think taxonomy.module doesn't need triage only 5 issue all valid.

gapple’s picture

Issue summary: View changes

Updated summary with link to tagged issues

xjm’s picture

Issue summary: View changes
DuaelFr’s picture

Issue summary: View changes

Updated "start clean" links (404)

heddn’s picture

Issue summary: View changes
heddn’s picture

Issue summary: View changes
heddn’s picture

Issue summary: View changes
akalata’s picture

Issue summary: View changes
heddn’s picture

YesCT’s picture

How do we want to tag issues, so we know which still have to be triaged?

Triaged d8 major?

it parallels the critical tag
Triaged D8 critical https://www.drupal.org/project/issues/search/drupal?project_issue_follow...

there were some tagged with a drupalcon name:
Triaged at DrupalCon Los Angeles 2015 https://www.drupal.org/project/issues/search/drupal?project_issue_follow...

those should get whatever generic tag we come up with....

Or... we could "rename" that tag to "Triaged d8 major" some people on d.o have the ability to rename tag taxonomy terms.

cilefen’s picture

"Triaged d8 major" works for me.

heddn’s picture

Triaged D8 Major is acceptable. But we spent a good deal of time splitting this into two parts for triage. So I'd champion for two tags.
1) Triaged D8 Major Current State
2) Triaged D8 Major Acceptance Criteria

xjm’s picture

@heddn, what would the two tags mean?

1) Triaged D8 Major Current State
2) Triaged D8 Major Acceptance Criteria

heddn’s picture

re: #29: It would align with completion of these two phases.

  1. Current state
  2. Acceptance Criteria
xjm’s picture

Thanks @heddn, I see. So the first tag is about ensuring the issue's relevance, and the second is about ensuring the issue's actual eligibility to be committed to whatever branch it is filed against (8.0.x or 8.1.x). That way, all contributors can help "narrow the funnel" into a queue for experienced contributors to assess the issue in terms of the Allowed changes policy.

One option is that we could use simply "Triaged D8 major" for the second category (meeting the acceptance criteria), since it most closely corresponds to "Triaged D8 critical". The main difference is that only committers could tag issues as "Triaged D8 critical", but that was due largely to the fact that it so directly determined the release date. For major issues, I think we can encourage others to use this tag as well. The "Needs release manager review" tag can always be added if there is some doubt.

Based on that, I'd suggest the first tag be instead "Needs D8 major triage". That way, we would crowdsource creating a queue of issues that are still relevant, but need to be assessed for whether they can go into 8.0.x / 8.1.x / etc.

xjm’s picture

Issue summary: View changes

Removing the beta eval item from the steps since we're not in Kansas anymore. :D Also reduced the RC bullet to link to the allowed changes doc and tags now that we have those.

xjm’s picture

Issue summary: View changes

And also linking that in the step about assessing the issue for patch/minor/major version inclusion.

xjm’s picture

Issue summary: View changes

And fixing the list formatting a smidge.

xjm’s picture

Issue summary: View changes

And updating the background information for RC as well.

xjm’s picture

Issue summary: View changes
xjm’s picture

Issue summary: View changes

Add links for commit mentions and maintainers.

xjm’s picture

Issue summary: View changes
xjm’s picture

Issue summary: View changes
xjm’s picture

Issue summary: View changes
xjm’s picture

Issue summary: View changes
xjm’s picture

Issue tags: +drupalconasia2016

Updated to remove acceptance criteria steps for now -- I will create a separate meta for that.

Welcome to DrupalCon Asia 2016 major issue triage!

xjm’s picture

Issue summary: View changes
xjm’s picture

Issue summary: View changes

The flowchart is not up to date, so commenting it out for now.

xjm’s picture

Issue summary: View changes

For DrupalCon Asia, we'll start from the oldest issues in the major bug queue. Here is a link:

https://www.drupal.org/project/issues/search/drupal?project_issue_follow...

(Edit: Added a tag for issues to skip)

xjm’s picture

Issue summary: View changes
xjm’s picture

Issue summary: View changes
xjm’s picture

prasad_gogate’s picture

swarad07’s picture

Testing this issue, #2621422: Wrong default path for page.html.twig given. Patch works, waiting for tests to finish.

prasad_gogate’s picture

saitanay’s picture

nagwani’s picture

hitesh-jain’s picture

swarad07’s picture

Tested patch here, #2644838: Add test coverage for the editor's max dimension setting, and fix its message when one dimension is unrestricted. The patch works, but the code is missing comments in some places. Marked as Needs work.

nagwani’s picture

aditya.ghan’s picture

xjm’s picture

Category: Task » Plan

Thanks to everyone who participated in the DrupalCon Asia major triage sprint! I've updated the relevant major issues to add proposed issue credit for triagers where appropriate. We clarified the status of some of the oldest major bugs in the queue.

xjm’s picture

Issue summary: View changes
xjm’s picture

Issue summary: View changes
Issue tags: -drupalconasia2016
xjm’s picture

So the flow charts attached above are actually flipped around; the one labeled "Drupal 8 Triage Major Issues Acceptance Criteria Flowchart" is actually the current state flowchart and vice versa. Oops! :)

In the mentoring meeting we discussed updating the flowchart in preparation for DrupalCon NOLA. The acceptance criteria workflow (in the attachment labeled "current state") was pre-release and so is not applicable anymore. However, we are improving the process now so that core committers and subsystem maintainers collaborate to assess those criteria, so we don't need to worry about updating that flowchart.

Starting with DrupalCon Asia, we are focusing on triaging for current state at sprints. The current state flowchart (the one labeled "acceptance criteria") is very close to accurate still and just needs a couple updates:

1. The step that says "Can reproduce in 8.0.x?" should be changed to "Can reproduce in 8.2.x?".
2. The step that says "Tag 'Current State Triage Barcelona2015'" should be changed to "Tag 'Triaged for D8 major current state' and with sprint tag".

Version: 8.0.x-dev » 8.1.x-dev

Drupal 8.0.6 was released on April 6 and is the final bugfix release for the Drupal 8.0.x series. Drupal 8.0.x will not receive any further development aside from security fixes. Drupal 8.1.0-rc1 is now available and sites should prepare to update to 8.1.0.

Bug reports should be targeted against the 8.1.x-dev branch from now on, and new development or disruptive changes should be targeted against the 8.2.x-dev branch. For more information see the Drupal 8 minor version schedule and the Allowed changes during the Drupal 8 release cycle.

xjm’s picture

Alright, here is the updated flowchart.

xjm’s picture

I realized also that the endpoints for non-reproducible issues were actually not marked as such and instead pointing to the bubble to tag the issue as triaged. Attached fixes that, plus also adds in the steps to check whether the patch applies.

xjm’s picture

Fiddling the arrows to make them less confusing.

mikeryan’s picture

Issue tags: +drupalconn

I'd like to start tagging some migration issues for NOLA sprinting - I don't see a specific tag in use yet, I'm thinking (a la "drupalconasia2016") "drupalconnola2016" - sound good? Or does it scan like a horrible misspelling (Drupal Canola - Oil of Champions)?

mikeryan’s picture

Issue tags: -drupalconn

(removing bad tag from failed search for existing "drupalconnola2016")

xjm’s picture

Issue summary: View changes
xjm’s picture

Issue tags: +neworleans2016

@mikeryan, @alimac proposed neworleans2016. Using that for now. :) (But yum, canola.)

xjm’s picture

Issue summary: View changes
xjm’s picture

Issue summary: View changes
xjm’s picture

Issue summary: View changes

And welcome to the New Orleans major triage sprint!

For the first few sprinters, here are a few issues tagged Needs triage for D8 major current state that the committers determined could use verification. So the first sprinters can look at those and potentially assess them.

Then, after that, sprinters should team up with others, pick one component, and search for that component within this queue:
Drupal 8 major bugs that have not already been triaged.

xjm’s picture

Issue summary: View changes

Thanks everyone for helping triage major issues at New Orleans! I've found the following usernames of major triage sprint participants for the NOLA sprint:

  1. cilefen
  2. valthebald
  3. catapipper
  4. dbyers55
  5. oadaeh
  6. Stephanie_42
  7. AndrewHD
  8. jdelvillar01
  9. gabesullice
  10. ecrown

I think that is missing several sprinters; let me know via my contact form if so. Also be sure to comment on any issue you helped triage so I can make sure you are credited.

Version: 8.1.x-dev » 8.2.x-dev

Drupal 8.1.9 was released on September 7 and is the final bugfix release for the Drupal 8.1.x series. Drupal 8.1.x will not receive any further development aside from security fixes. Drupal 8.2.0-rc1 is now available and sites should prepare to upgrade to 8.2.0.

Bug reports should be targeted against the 8.2.x-dev branch from now on, and new development or disruptive changes should be targeted against the 8.3.x-dev branch. For more information see the Drupal 8 minor version schedule and the Allowed changes during the Drupal 8 release cycle.

xjm’s picture

Issue summary: View changes

Adding a current table to the summary.

xjm’s picture

Issue summary: View changes
xjm’s picture

Issue summary: View changes

We are sprinting on major triage in a week at DrupalCamp New Jersey.

xjm’s picture

Issue summary: View changes
pwolanin’s picture

Issue summary: View changes
pwolanin’s picture

Do we want to suggest people may downgrade issues?

Need links to the definitions of different priority levels?

cilefen’s picture

Updated the flowchart with 8.4.x.

Version: 8.2.x-dev » 8.3.x-dev

Drupal 8.2.6 was released on February 1, 2017 and is the final full bugfix release for the Drupal 8.2.x series. Drupal 8.2.x will not receive any further development aside from critical and security fixes. Sites should prepare to update to 8.3.0 on April 5, 2017. (Drupal 8.3.0-alpha1 is available for testing.)

Bug reports should be targeted against the 8.3.x-dev branch from now on, and new development or disruptive changes should be targeted against the 8.4.x-dev branch. For more information see the Drupal 8 minor version schedule and the Allowed changes during the Drupal 8 release cycle.

xjm’s picture

Issue summary: View changes

@pwolanin So sprinters should not actually be downgrading the issues in most cases if they are still relevant. The process is to tag them once they're confirmed to be relevant and then the maintainers confirm the priority (or not) since that can take a lot more time to understand. See flowchart.

That said the priority definitions are obviously helpful! Somehow that is not linked in the summary already. I will add it: https://www.drupal.org/core/issue-priority#major-bug

xjm’s picture

Issue summary: View changes

Recent data.

xjm’s picture

Issue summary: View changes
xjm’s picture

xjm’s picture

Issue tags: +DrupalCampNJ2017

For DrupalCamp NJ there are just a few of us so we are coordinating which issues we are triaging in a spreadsheet:
https://docs.google.com/spreadsheets/d/1HIiqu9WPmjRuZc5qG_sn0pwbfYLtoFg5...

Great work so far!

YesCT’s picture

Issue summary: View changes
Issue tags: +FLDC17

updating for florida instructions

JCL324’s picture

Issue summary: View changes
capysara’s picture

Issue summary: View changes
capysara’s picture

Issue summary: View changes
cilefen’s picture

Issue summary: View changes
wturrell’s picture

Issue summary: View changes

Updated issue count table (seemed like this might be useful).

shaal’s picture

Version: 8.3.x-dev » 8.4.x-dev
Issue summary: View changes
Issue tags: +Baltimore2017
xjm’s picture

Issue summary: View changes
xjm’s picture

Issue summary: View changes

We had a good sprint at DrupalCamp Montréal this weekend. A couple followups we identified:

  1. Put this issue link at the top of the PDF and give it a slightly increased margin.
  2. Move instructions on how to identify when an issue was introduced into their own handbook page, and link the handbook page.

Version: 8.4.x-dev » 8.5.x-dev

Drupal 8.4.0-alpha1 will be released the week of July 31, 2017, which means new developments and disruptive changes should now be targeted against the 8.5.x-dev branch. For more information see the Drupal 8 minor version schedule and the Allowed changes during the Drupal 8 release cycle.

xjm’s picture

Issue summary: View changes

I am adding the link to the original, editable draw.io version of the flowchart to the summary, since I keep losing track of it.

We talked about adding sample comments that people could use as templates. I typed up this:

Initial comment

@contributor1, @contributor2, and I are working on triaging this issue at Event, following the instructions in #2474049: [meta] Major issue triage.

Final comment

We were or were not able to reproduce the issue on the latest 8.5.x on simplytest.me. The steps we used were:

  1. Install Drupal 8.5.x with the Standard profile.
  2. Enable the Settings Tray module under the Experimental package.
  3. (etc.)

We confirmed that the patch in comment #17 still applies to 8.5.x and we have sent it for re-testing using the "Add test/retest" link under the patch test results.

or

The latest patch in #17 does not apply to 8.5.x HEAD, so it needs to be rerolled. For this reason, we're adding the "Needs reroll" tag and marking the issue "Needs work".

If the issue is fixed in HEAD but present in an older version:

However, we were able to reproduce the issue with those same steps using an older release (8.2.6) from when this issue was reported back in February of 2017. We looked into it more and determined that this was fixed by [#NNNNNNN], so we are closing this as a duplicate of that issue by adding it to the related issues and marking this "Closed (duplicate)".

If the issue cannot be reproduced at all:

We tried testing on the latest 8.5.x HEAD, 8.2.6 (the latest release as of when the issue was posted), and commit e496c7b3 (a commit on the day the issue was posted) and we were not able to reproduce the issue. The issue does not apply to Drupal 7 since the Settings Tray module was not added until Drupal 8.2.0-beta2. So, we need accurate steps to reproduce the issue in order to resolve it. Tagging "Needs steps to reproduce" and marking "Postponed (maintainer needs more info)" for those reasons.

Edit: added another example.

xjm’s picture

Made some changes to hopefully make the flowchart easier to read and less overwhelming. Also added the step numbers to the items.
https://www.draw.io/#G0B6pfQiiJgt4GRVIyZnZOd2NFQzg

xjm’s picture

Issue summary: View changes
xjm’s picture

rachel_norfolk’s picture

Liking the comment templates.

I'm assuming in the diagram at 4a, that's adding the original issue as the duplicated and marking this one as "Closed (duplicate)"?

xjm’s picture

Issue summary: View changes

@rachel_norfolk Yep. The detailed instructions in the summary Maybe this text would be more clear? Seems to fit the bubble:

4A. Find the issue that fixed it; close your issue as duplicate with a comment.

I also updated the corresponding step in the summary with similar wording and a link to https://www.drupal.org/contributor-tasks/duplicates. (It was linked in a different part of the instructions, but not there.)

xjm’s picture

Issue summary: View changes

(Removing "some issues that are postponed to 9.x" from the summary since this actually should almost never be the case with the continuous upgrade path and deprecation policy.)

xjm’s picture

Issue summary: View changes
xjm’s picture

Issue summary: View changes

Adding a list of what the initial and final comments should include along with the examples.

xjm’s picture

One task that someone could do is to create a contributor task handbook page for "Determine when a change was introduced in Drupal core". This would allow us to reduce the "text overload" in the summary a bit. The starting point would be these bullets:

  • Try to reproduce the issue using the version of Drupal from when the issue was filed. You may need to check a specific commit from a long time ago or even Drupal 7.x. (Use `git log --before=date` to find commits before a certain date.) Be sure to start clean.
  • If you can reproduce the issue using an older version of Drupal 8.x, try to figure out when and how the issue was fixed, and document what you find on the issue. Techniques you can use:
    • Search for "Fixed" and "Closed (fixed)" issues related to the issue.
    • Use `git log -S` or `git log --grep` to search for related commits.
    • Use `git bisect` to find the first commit where the issue is resolved.

The handbook page could also incorporate links to references on the relevant git commands. git blame and git log -L could also be added to the strategies for the handbook page. (They are less relevant for triage where the contributor might not know which hunk of code is relevant, but definitely relevant to the topic overall.

xjm’s picture

Issue summary: View changes

(Reordering the added sections a little.)

xjm’s picture

Issue summary: View changes
xjm’s picture

Issue summary: View changes
FileSize
341 KB

I updated the flowchart PDF to include the example comments on the second page, so we can print it as a two-sided handout at sprints.

xjm’s picture

Issue summary: View changes

Updated queues.

xjm’s picture

Issue summary: View changes
xjm’s picture

Issue summary: View changes
xjm’s picture

Issue summary: View changes
xjm’s picture

Issue summary: View changes
xjm’s picture

Issue summary: View changes

(Code filter and issue link filter don't seem to be ordered correctly.)

fgm’s picture

Issue summary: View changes

Version: 8.5.x-dev » 8.6.x-dev

Drupal 8.5.0-alpha1 will be released the week of January 17, 2018, which means new developments and disruptive changes should now be targeted against the 8.6.x-dev branch. For more information see the Drupal 8 minor version schedule and the Allowed changes during the Drupal 8 release cycle.

ekl1773’s picture

Issue summary: View changes
benjifisher’s picture

Issue tags: +Nashville2018

We agreed at the monthly mentoring meeting to add the Nashville2018 tag to this issue.

Version: 8.6.x-dev » 8.7.x-dev

Drupal 8.6.0-alpha1 will be released the week of July 16, 2018, which means new developments and disruptive changes should now be targeted against the 8.7.x-dev branch. For more information see the Drupal 8 minor version schedule and the Allowed changes during the Drupal 8 release cycle.

Version: 8.7.x-dev » 8.8.x-dev

Drupal 8.7.0-alpha1 will be released the week of March 11, 2019, which means new developments and disruptive changes should now be targeted against the 8.8.x-dev branch. For more information see the Drupal 8 minor version schedule and the Allowed changes during the Drupal 8 release cycle.

joelpittet’s picture

Issue summary: View changes
volkswagenchick’s picture

Issue summary: View changes

Version: 8.8.x-dev » 8.9.x-dev

Drupal 8.8.0-alpha1 will be released the week of October 14th, 2019, which means new developments and disruptive changes should now be targeted against the 8.9.x-dev branch. (Any changes to 8.9.x will also be committed to 9.0.x in preparation for Drupal 9’s release, but some changes like significant feature additions will be deferred to 9.1.x.). For more information see the Drupal 8 and 9 minor version schedule and the Allowed changes during the Drupal 8 and 9 release cycles.

volkswagenchick’s picture

Issue tags: +midcamp2020

Tagging for midcamp2020 contribution day
March 21, 2020 10a - 4pm VIRTUALLY

Version: 8.9.x-dev » 9.1.x-dev

Drupal 8.9.0-beta1 was released on March 20, 2020. 8.9.x is the final, long-term support (LTS) minor release of Drupal 8, which means new developments and disruptive changes should now be targeted against the 9.1.x-dev branch. For more information see the Drupal 8 and 9 minor version schedule and the Allowed changes during the Drupal 8 and 9 release cycles.

Version: 9.1.x-dev » 9.2.x-dev

Drupal 9.1.0-alpha1 will be released the week of October 19, 2020, which means new developments and disruptive changes should now be targeted for the 9.2.x-dev branch. For more information see the Drupal 9 minor version schedule and the Allowed changes during the Drupal 9 release cycle.

Version: 9.2.x-dev » 9.3.x-dev

Drupal 9.2.0-alpha1 will be released the week of May 3, 2021, which means new developments and disruptive changes should now be targeted for the 9.3.x-dev branch. For more information see the Drupal core minor version schedule and the Allowed changes during the Drupal core release cycle.

Version: 9.3.x-dev » 9.4.x-dev

Drupal 9.3.0-rc1 was released on November 26, 2021, which means new developments and disruptive changes should now be targeted for the 9.4.x-dev branch. For more information see the Drupal core minor version schedule and the Allowed changes during the Drupal core release cycle.

Version: 9.4.x-dev » 9.5.x-dev

Drupal 9.4.0-alpha1 was released on May 6, 2022, which means new developments and disruptive changes should now be targeted for the 9.5.x-dev branch. For more information see the Drupal core minor version schedule and the Allowed changes during the Drupal core release cycle.

xjm’s picture

Issue summary: View changes

Updating the IS for new tag names.

Version: 9.5.x-dev » 10.1.x-dev

Drupal 9.5.0-beta2 and Drupal 10.0.0-beta2 were released on September 29, 2022, which means new developments and disruptive changes should now be targeted for the 10.1.x-dev branch. For more information see the Drupal core minor version schedule and the Allowed changes during the Drupal core release cycle.

Version: 10.1.x-dev » 11.x-dev

Drupal core is moving towards using a “main” branch. As an interim step, a new 11.x branch has been opened, as Drupal.org infrastructure cannot currently fully support a branch named main. New developments and disruptive changes should now be targeted for the 11.x branch, which currently accepts only minor-version allowed changes. For more information, see the Drupal core minor version schedule and the Allowed changes during the Drupal core release cycle.

xjm’s picture

Something we should have done from the get-go is have child issues per event, since a lot of the work that goes into triage ends up in non-creditable statuses (duplicate, cannot reproduce, etc.). I'm working on adding those children now, although retroactively crediting participants years later will take some archaeology. :)

xjm’s picture

I went ahead and created those issues and credited some of them the best I could. Ran out of steam. Active children still need their credits populated; NW issues have some credits but are missing others. Fixed issues have all or most participants and mentors credited.