In JIRA On Demand, is there a way to filter issues by who Updated them? The Changed operator applies only to certain fields.
Thanks very much!
Nope, that is the best you have got.
Use the JQL
status changed BY (username)
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.
Hi! This and many more JQL keywords are supported after installing our plugin. Make sure to check out the JQL Search Extensions for JIRA Cloud - soon also for the server!
All the features are presented in the reference manual. Just install and enjoy the free trial!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Looking to be able to filter/search for any bug that is updated or edited in any field, e.g., Comments or Description; and/or edited by a specific User.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Changing a custom field? ;)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Paul,
The CHANGED operator is available for the following fields:
Assignee, Fix Version, Priority, Reporter, Resolution and Status
Can you advise which update you are unable to query that would be useful?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Epic Link is one example - but really need a generic solution for ANY field changed by user!!!!
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 looking for a generic "ANY field changed by user" type of search.
I understand this information resides in the issue changelog history entries. Is it possible to construct a JQL that filters on the "author" and "created" (date) fields of the changelog entries?
My use case: find all issues that were updated since a given date by a given user (any field updated qualifies -- not just certain key fields)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I need this for Epic link as well, did anyone download this addon mentioned above and have luck? JQL Search Extensions for JIRA Cloud
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This answer is taken from a similar post by the user Daniel Ebers.
It worked great for me, hope it helps resolve for anyone stumbling upon this past 2020.
Alternatively, you could use the updatedBy() function of JQL:
https://support.atlassian.com/jira-software-cloud/docs/advanced-search-reference-jql-functions/
Examples
Find issues that were updated by John Smith:issuekey IN updatedBy(jsmith)
Find issues that were updated by John Smith within the last 8 days:
issuekey IN updatedBy(jsmith, "-8d")
Find issues updated between June and September 2018:issuekey IN updatedBy(jsmith, "2018/06/01", "2018/08/31")
If you try to find issues updated in the last hour, like in the following example, the time will be rounded up to 1 day, as smaller values aren't supported:
issuekey IN updatedBy(jsmith, "-1h")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Is there a way to find issues that were last updated by the current user instead of using a specifically named user?
I need a dashboard used by different users that shows the current user their most recently edited issues via the Filter Results gadget.
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.