Hi,
I would like to list all JIRA issues which have been updated within last month
I've tried to use updated field but it is related to Last Updated time. I'm looking for a query which would return me the list of all issues that have been updated in a specific time period.
Consider the following scenario:
What JQL would I use to return all issues updated in June?
Thanks,
Maurycy
Maurycy,
If you're looking for a specific type of update (if the status changed, for example) you can use the 'CHANGED' operator. You can query using: status CHANGED AFTER "2014-06-01" BEFORE "2014-07-01", for example. See https://confluence.atlassian.com/display/JIRA/Advanced+Searching#AdvancedSearching-CHANGED
I hope this helps!
Matheus,
That would work if CHANGED operator is not restricted to Assignee, Fix Version, Priority, Reporter, Resolution and Status fields only.
I would need to check if COMMENT has been changed (updated) or if a work log has been updated (a user has logged time spent against an issue)
Thanks,
Maurycy
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Please, create the feature in my tracker. Will do in queue
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Andrey,
Is it possible to specify list of users?
Thanks,
Maurycy
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Maurycy,
Only by loggedIn user or spacified user.
-- Andrey
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Andrey,
Sounds great - that's almost what I'm looking for.
Just to confirm - your plugin returns list of all isuses that have been commented by currently logged on user. I'm looking for a function which returns issues that have been commented by any user for a specified date range e.g. between -60D and -30D rather than commented in last 2 days
Could your plugin be extended or configured to cover such requirement?
Thanks,
Maurycy.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi, this my plugin
https://marketplace.atlassian.com/plugins/ru.andreymarkelov.atlas.plugins.utils
has functions:
My commented issues JQL Function. This is JQL function "commentedIssues(?)" which returns list of issues that commented of current logged user beginning from ? (in duratioon format 2h, 2d).
User commented issues JQL Function. This is JQL function "userCommentedIssues(?1, ?2)" which returns list of issues that commented of user ?1 beginning from ?2 (in duratioon format 2h, 2d).
Examples:
issue in commentedIssues("2d")
issue in userCommentedIssues("admin", "2d")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.