Versions Compared

Key

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

[2017-07-05] Released

...

Jira Workflow Toolbox 2.2.39

New features

1) Support for doing time calculations on Custom Schedules

Now, you will be able to do any time calculations on the very particular work-schedule(s) of your company or organization.

You can define one or more custom schedules at Administration > Add-ons > JIRA Jira WORKFLOW TOOLBOX > Schedule using Schedules Definition Grammar, which is a very powerful language capable of defining schedules as complex as you might imagine.

...

A typical usage example is: Automatic work log with start and stop work transitions

2) Other new functions added to the parser:

FUNCTIONRETURNED VALUE
issueIDFromKey(string issue_key) : stringReturns the internal ID of issue with key issue_key. This function also admits a comma separated list of issue keys, and returns a comma separated list of internal IDs.
Example: issueIDFromKey("CRM-1") returns "10001".
issueKeyFromID(string issue_ID) : stringReturns the issue key of issue with internal ID issue_ID. This function also admits a comma separated list of issue IDs, and returns a comma separated list of issue keys.
Example: issueIDFromKey("10001") returns "CRM-1".
timeZone(string timeZone_name) : timeZoneReturns the timeZone whose name is represented by string timeZone_name. This function is useful to obtain a timeZone from a string, like the value of a Project Properties.
Example: timeZone("DST") returns DST timeZone.

Bug Fixes

  • Issue #636 - Function latestReleasedVersion() failed when there are version with no release date.