Is it possible to configure the filter to also show tasks where the Sprint field has been changed rather than added.
For example, Sprint 1 is changed to Sprint 2.
It's possible to monitor sprint changes with Issue History for Jira if you are ok with using plugins.
You can filter by Sprint and see all changes that were made to the list of issues.
The app is developed by my team. Let me know if you have any questions.
Unfortunately history cannot be queried on the Sprint field natively, but there are a couple of options to explore:
Do you use ScriptRunner? If so, it provides some helpful JQL functions. You can search for issues which are either incomplete in a sprint, or were removed from a sprint after the sprint has started, however you'd be querying specific sprints, rather than simply retrieving the issues where the sprint had been changed. Here's an example query which would return issues which were removed from Sprint 1 and added to Sprint 2:
issueFunction in removedAfterSprintStart("Demo Project Scrum Board", "Example Sprint 1") and sprint = "Example Sprint 2"
Another option, using Automation for Jira, is to use the Sprint changed action as an automation rule trigger, and for the action you could set a label, or an issue property, or some other attribute which can be queried. For example, the rule trigger is field changed, the field is sprint, and the action is to add "sprint_changed" to the labels field.
Then, you can simply query:
Labels = sprint_changed
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.