Hi,
I'd like to build a Jira Query that shows only the issues that have been added to the current sprint after the sprint started. Is that possible with Jira QL?
Ok, how about
fixVersion = "Your sprint version" AND fixVersion WAS NOT "Your sprint version" ON your-sprint-start-date
An error appears: History searches do not support the 'fixVersion' field
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.
Seems history search for fixVersion was enabled in Jira 4.4.1 and hosted OnDemand is based on 4.4 so that query will not work until Jira is updated.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
History search for fixVersion was introduced in Jira 4.4.2 according to release notes.
The "CHANGED" operator can be used on the Status, Assignee, Priority, Reporter, Resolution and Fix Version fields.
The "WAS" operator can be used on the Fix Version field too.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Not really a JQL solution, but you can get the issues added during the sprint using the greenhopper api. Just hit the REST API endpoint rest/greenhopper/1.0/rapid/charts/sprintreport?rapirViewId={your_view_id}&sprintId={your_sprint_id}
then look for key "issueKeysAddedDuringSprint"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Unfortunately, this endpoint does not give the date the tasks were added, only the key.
Also, there is a small spelling mistake in the above endpoint. it should be:
/rest/greenhopper/1.0/rapid/charts/sprintreport?rapidViewId={viewId}&sprintId={sprintId}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Vote for JSWSERVER-20097 to have this built into JIRA Server, or JSWCLOUD-16523 for JIRA Cloud, by default.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I am also searching for the same.. if you were able to find how to filter issues added to the sprint mid-way please post here.
thanks
rajesh
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Same here. The most promising solution so far is (yet again) Jamie Echlin's Script Runner: https://jamieechlin.atlassian.net/wiki/display/GRV/Scripted+JQL+Functions#ScriptedJQLFunctions-addedAfterSprintStart(boardname,\[sprintname\])
However, I cannot validate that it actually does the trick, because it is only available in version 3.0 of the plugin - and I currently cannot install it because our Jira is too old. Dang. Hopefully it works for you.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Looks like the perfect solution, but i have the same problem (old jira version). How difficult would it be to programm this function to get it work with an old jira/script runner version?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
fixVersion CHANGED TO "Your sprint version"
Will get you issues moved to sprint
fixVersion = "Your sprint version" AND created > Your sprint start date
Will get you new isues added to sprint
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi milowe,
This is not quite what I meant actually. Issue can be created before sprint is started and if then I will move such an issue to the sprint after it has been started, this query is not going to work.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
What version is OnDemand Jira ? Works fine in 4.4.3.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
A lot of issues were created before sprint started. Support created them and not all of them were included into sprint backlog during sprint planning. Later PO decided to include them. So would be nice to found out a way to filter out all issues added to the sprint during the sprint.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Important: I'm using JiraStudio so I am not able to install any other plug-ins to resolve this issue.
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.