Versions Compared

Key

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

...

  • regexLabel: Matches labels with a regular expression.
    Example: labels stating with "8":
    labels in regexLabel ("8.*")
    
  • regexOption: Matches option with a regular expression.
    Example: Finds all issues where the os field starts with "solaris":
    os in regexOption ("solaris.*")
    
  • regexVersion: Matches version field types with a regular expression.
    Example: Finds all issues with a fixed version starting with "7u"
    fixVersion in regexVersion ("7u.*")
    

Anchor
multireleasetracking
multireleasetracking
Multi-release tracking

In stock JIRA, the fixVersion/s field is used for tracking whether or not a fix has been applied to multiple releases. In other words, the status of a fix across all releases is stored in a single issue. For the purposes of the JDK, this was judged as not providing an adequate level of detail. Information of interest for JDK bug tracking across releases includes

...