Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

JIRA - the date/time format of versions on a project

Tags:

jira

In a project we can create versions, but the release date format is just d/MMM/yy

Is it possible to have this display the time as well ?

Our datepicker properties are:

jira.date.picker.java.format    d/MMM/yy
jira.date.picker.javascript.format  %e/%b/%y
jira.date.time.picker.java.format   dd/MMM/yy h:mm a
jira.date.time.picker.javascript.format %e/%b/%y %I:%M %p

we are running JIRA version 6.1.2, build 6157

like image 774
Bill Comer Avatar asked Dec 31 '13 11:12

Bill Comer


People also ask

How do I use versions in Jira?

In Jira Software, versions represent points-in-time for a project. They help you organize your work by giving you milestones to aim for. You can assign issues in your project to a specific version, and organize your sprints around completing work in that version. Navigate to your project. In the project menu, click on Releases.

How long does it take to complete a JIRA project?

Complete over 2 weeks or more. You have the Administer Projects permission for all projects on your Scrum or Kanban board. See Managing project permissions for more info. What is a version in Jira Software? In Jira Software, versions represent points-in-time for a project. They help you organize your work by giving you milestones to aim for.

How do I deploy a Jira release?

To deploy a release, you would typically release the version in Jira Software, build the release, then deploy the release to the required environment. Navigate to your project. In the project menu, select Releases.

What is the difference between jql search and JIRA issue?

Show activity on this post. JQL search results are generally fetched directly from the Lucene index, which stores timestamps with only millisecond resolution, whereas fetching the actual issue gets the date directly from the jiraissue table in the database, which can have sub-millisecond resolution (at least depending on your configured database).


1 Answers

realspirituals is right. With standard date field you won't be able to display a time.

Although opposing to the 'Configuring JIRA Options', I found 'Changing the Due Date Input Format', which states the possibility of adding a time component to the due date field. But I couldn't find something similar for Release Dates.

A similar feature request was raisied in May '13 to atlassian.

The only thing I can think of is to add metadata to your version and use a custom field to display it. See here: new field in version tab panel. This way you can further handle with it. If you just want to display the time and not "work" with it, just use the description field for that.

like image 162
Seika85 Avatar answered Dec 15 '22 00:12

Seika85