Versions Compared

Key

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

...

  • affectsBundle: This JQL extension takes a list of bundle names, bundle versions or bundle ids and returns all issues which are reported against a component version contained in the bundle.
  • fixedInBundle: This JQL extension takes a list of bundle names, bundle versions or bundle ids and returns all issues which are fixed by component versions contained in the bundle.
  • componentsOfBundle: This JQL extension takes a bundle name and returns all components inside that bundle. Note that different than above two function this function returns components not the issues. 
  • betweenBundles: Takes two bundle name or bundle version and returns all bundles between given start and end bundle. It either uses "Version Hierarchy" or semantic versioning. You can pass "semantic" as 3rd argument to use semantic versioning even if a version hierarchy is defined for the project.   You can also use "release date" as 3rd argument to order versions according to release date of the bundle instead of version hierarchy or semantic versioning.

Example JQLs:


issue in affectsBundle("Release 1""Release 2") and issue in fixedInBundle("Release 3")

Above JQL will find all issues affecting components added to bundle named “Release 1” and “Release 2” and fixed in “Release 3”.


"Affects Bundle" in betweenBundles("SSM Release 1", "SSM Release 3", "release date")

Above JQL will find all issues which are reported in bundles "SSM Release 1", "SSM Release 2", and "SSM Release 3".

...