How could I display the version release date on an issue ?
In fact I don't want to put the release date in the version name, I want to display the field release date as a separate field on an issue... I've look in the field config, but there's not field like this.
Maybe I could calculate it somehow ?
Hello,
how to get the version release date out of a single version picker field?
You could use Script Runner plugin and create a scripted field which reads the versions from the issue and displays the release dates.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks I'll give it a shot.
Any tips on how to create the formule or syntax for this need?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If you use a Date Time template for the scripted field you could try something like this:
Date releaseDate = null issue.fixVersions?.each{releaseDate = it.releaseDate} return releaseDate
This returns the release date of the last version found for the issue or null if no versions found (or no release date).
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi!
A problem with this is the data type. I didn t find a way to use the date (for comparison) in scripts or filters.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
What's the problem with the scripted field? Normally you should be able to use the field in filters. Make sure you configured the scripted field for using the Date Time Template and a corresponding search template.
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 Leandro,
Were you able to get the date formatted? I am having the same problem, I am autopopulating a date picker field and I just want the date format without time.
import com.atlassian.jira.project.version.Version
def fixVersions = getFieldById(getFieldChanged())
def Proddate = getFieldByName("Prod Date")
Collection<Version> fixVersionsValue = (Collection<Version>) fixVersions.getValue()
Proddate.setFormValue(fixVersionsValue.releaseDate)
Thanks.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
if someone can answer when this script executed only 1 time the version is released or each time this issue is viewed in a filter?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Peter - yes, I've thought about this, and the reponse would be to always have only one fixversion value which is normaly our case, as we only manage the release versions and not patches.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Just wondering, as an issue can be part of several versions (both fix and affects) how will you choose which release date to show?
Couldn't you just better set a due date for the issue?
Best regards,
Peter
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Atlassian Government Cloud has achieved FedRAMP Authorization at the Moderate level! Join our webinar to learn how you can accelerate mission success and move work forward faster in cloud, all while ensuring your critical data is secure.
Register NowOnline 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.