Since 1.10.2 version of the add-on, our custom fields are searchable using JQL. Instead of "affectsBundle" and "fixedInBundle" JQLs you can create and use custom fields. Since they use Lucene Index for search they are faster and additionally they are more intuitive to use.


Plugin provides 3 new JQL functions to query issues at bundle level. These JQL functions allows you to query issues related with bundles easily. You don't need to specify each component and version name separately inside your JQL and you don't need to maintain it as you change bundle content. You can just use bundle name to query issues with these functions:

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".