Versions Compared

Key

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


Info
titleYou can Use Custom Fields Instead of JQL Functions

Since 1.10.2 version of the add-on, our custom fields are searchable using JQL, 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:

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

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


Image Modified