I have a listener on issue update and I need to get the old and new values of all the fields that were modified. I have this set up by doing the following:
List changeItems = event.getChangeLog().getRelated("ChildChangeItem")
I then iterate through the changeItems and get the information I need using oldstring and newstring. The problem is with the Cascading Select field type of which we have a few. Instead of giving just the string of the value like the other issue types it instead gives a string in the form "Parent values: FirstValue(xxxxx)Level 1 values: SecondValue(xxxxx)" where FirstValue and SecondValue are the actual selected options. Is there anyway to get the old and new cascading select options without all the extra information?
Is oldvalue and newvalue any better? The old and new "string" are the display values and not that useful.
However this is something that JIRA is not particularly good at, you always lose type information for the historical values. If all else fails you may need to parse it with a regex.
I only get null for oldvalue and newvalue for the Cascading Selects. I was hoping maybe there was some kind of method I overlooked and I wanted to stay away from parsing, but it looks like that might be my only option for this type of field.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Like I said, this is an area of weakness in jira. If you can use a post-function then you can get better info.
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.