Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Since version v2.5.3  we have added format options for ${createdDate} and ${dueDate}. To both of these variables add .format("") and inside "" use desired date format. eg. $ ${createdDate.format("dd-MM-YYYY HH:mm")

You can use patters specified here: https://docs.oracle.com/javase/8/docs/api/java/time/format/DateTimeFormatter.html#patterns 

Here you can see the example with quarters used in creation and due date: ${createdDate.format("'Q'Q.yyyy")} ${dueDate.format("'Q'Q.yyyy")}:


Info

Note: dueDate in Jira is a date field (compared to creation date which is a date time field), thus it doesn't support formatting for lower than 1d time intervals

...