Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 5 Next »

Overview

Jira project can contain a lot of versions that represent points-in-time for your project. You can assign issues to versions to find what was done a in particular project version. While project versions live as a flat list of items in Jira, using Versions hierarchy app you can:

  • organize versions into a hierarchy to add meaningful structure

  • visualize parent-child relations between versions

  • add more context when selecting versions from the hierarchy

  • search issues in version and all its nested versions at any level of the hierarchy

Key features

The Versions hierarchy app introduces the following features:

  • add new or existing versions to the hierarchy

  • manage all version details without switching to Releases project tabs

  • view all version details in the hierarchy tree grid

  • add the same version to multiple places in the hierarchy

  • group versions using folders

  • search versions in the hierarchy

  • find issues for any part of a project represented by versions hierarchy

  • select versions from hierarchy when editing issues

  • perform all operations with versions hierarchy using REST API

  • use custom JQL functions to search issues

Glossary

Throughout the documentation, we use some terms which we'd like to briefly explain before you continue.

Term

Comment

Versions hierarchy

The hierarchy of project versions

Item

Item or hierarchy item is an element which is added to the hierarchy. It is the link to a project version or folder

Version

Native Jira project version (release)

Folder

Custom hierarchy item type implemented in Versions hierarchy app

Versions hierarchy picker

The extension of version fieldstype to select versions from the hierarchy

Quick start guide

After installing the app a new project tab "Versions hierarchy" is added to Project navigation tab where you can manage project versions hierarchy aka Versions hierarchy organizer.

By default, only project administrator can manage the versions hierarchy. Project administrator can enable non-project admin users to manage versions hierarchy by granting them “Manage versions hierarchy“ project permission.

When you first land on the Versions hierarchy project tab with the empty hierarchy, take a Quick tour to get familiar with the key features. Quick tour link is also available in Help menu.

Overview

Versions hierarchy project page consists of two parts:

  • toolbar on top of the page

  • hierarchy under the toolbar

Hierarchy toolbar

Using Versions hierarchy toolbar you can:

  • search/filter versions in the hierarchy by its name

  • add existing version/folder - add one or more existing versions/folders to the top of the hierarchy

  • add new version/folder - add new version/folder to the top of the hierarchy

  • expand/collapse all items in the hierarchy

  • find more details about the app and raise support request using Help menu.

  • import/export versions hierarchy from/to another project in the same or different Jira instance

Hierarchy item toolbar

Subcomponents hierarchy consists of hierarchy items - links to corresponding components or folders.

Each hierarchy item has its context menu with a set of available actions.

Action

Description

Expand

Expand all nested items of the target item

View issues

View issues for the target item and all its children items

Edit

Edit version or folder details

Remove

Remove target item from the hierarchy. A confirmation dialog is displayed before the item is removed and contains the following information:

  • item is removed with all its children items, number of items is included

  • neither components nor folders are deleted, only their references in the hierarchy are removed

Add new version

Create and automatically add new version under of after target item

Add a new folder

Create and automatically add a new folder under of after target item

Add existing versions

Add one or more existing versions under of after target item

Add existing folders

Add one or more existing folders under of after target item

Manage hierarchy

Add new version

You can add a new version to the top of the hierarchy using “Add new version” action in the hierarchy or item context menu. In the opened dialog you can specify all version details: name, description, start date, release date.

By default new version is added after the current item at the same level. But you can change the position to add a version under the current item as a last nested item.

Add new folder

When you start with Versions hierarchy app you there are no folders.

Let's quickly recap what a folder is and what it can be used for:

  • folder is an additional hierarchy item type to group other components or folders

  • folder has name (mandatory) and description attributes

  • unlike version, two different folders can have the same name

You can add a new folder using Add new folder action in hierarchy toolbar or item context menu.

Add existing versions

Any existing version can be added to the hierarchy using “Add existing versions“ action.

Similar to adding a new version you can add existing versions to the top of the hierarchy from the hierarchy toolbar or under the target item via its context menu.

In the “Versions“ dialog all available project versions are displayed with the dialog you can select versions that you want to add to the hierarchy.

All available project components are displayed in a table with the following columns:

  • name - component name

  • description - component description

  • used in a hierarchy - how many times the component is added to a hierarchy 

  • actions - component context menu with edit and delete actions

Manage versions

In the “Versions” dialog you can also edit existing or create new versions without switching to the Releases project tab.

Version action

Description

Create

When new version is created in the Add versions dialog it is not added to hierarchy automatically. You would need to select and add it explicitly.

Edit

When version is updated the hierarchy is updated with new details automatically.

Delete

When version is deleted all its references from hierarchy are removed.

All nested items of the deleted version are removed from hierarchy as well.

If the deleted version is associated with some issues a popup dialog is displayed with options to swap issues to another version.

Filter versions

Use filters to find and select versions from the shorter list. Versions can be filtered by:

  • name - free text input

  • usage in a hierarchy - dropdown with the options: used, unused, all

Add existing folders

Adding existing folders to the hierarchy is done via Add folders dialog. It is opened when you click Add existing (folders) from Versions hierarchy toolbar or hierarchy item context menu.

All available project folders are displayed in the list with the following columns:

  • name - mandatory non-unique folder name

  • description - optional folder description

  • used in a hierarchy - how many times the folder has been added to the hierarchy.

  • actions - context menu with edit and delete actions

Select an individual folder or bulk select all folders that you want to add to the hierarchy.

Manage folders

Add folders dialog is where you can manage project folders.

Edit and delete actions are located in each folder context menu.

Folder action

Description

Create

When a new folder is created in “Folders“ dialog it is not added to hierarchy automatically, you need to select and add it explicitly.

Edit

When a folder is updated the hierarchy is updated with new details automatically.

Delete

When a folder is deleted all its references from hierarchy are removed.

All nested items of a deleted folder are removed from hierarchy as well.

Filter folders

Use filters to find and select folders from the shorter list. Folders can be filtered by:

  • name - free text input

  • usage in a hierarchy - dropdown with the options: used, unused, all

Find issues

You can find issues for a particular part of the project represented by some version and its nested items:

  1. using hierarchy item View issues context action

  2. via JQL search with the help of custom JQL functions: subversions() and vrSubfolder()

View issues

Click on “View issues” action in the item context menu to open the View issues dialog with the list of issues.

Issues are displayed as a table and contain the following details:

  • key - issue key linked to the issue page

  • summary - summary

  • versions - all issue versions from fixVersion field

In the example below there are three versions are organized in a three-level hierarchy where each version has one issue directly associated with it.

View issues result for Version 1.0 component contains all three issues.

In the background View issues screen utilizes JQL search capabilities to find the required issues and you can switch to Jira Issue Navigator to get more details about the issues.

JQL search

Versions hierarchy app adds two custom JQL functions to search issues in versions hierarchy: subversions and vrSubfolder.

The result of both functions is a list of versions, that's why you should use them in a combination with version field, e.g. "fixVersion in subversions(…)".

Function

Parameters

Examples

subversions()

  1. project key - key of the project to search in

  2. version name - find issues for this version and all its nested versions

You can optionally provide the third parameter as "false" to exclude issues of current version from the result

  • fixVersion in subversions("DEMO", "Version 1.0")

  • affectVersion in subversions("DEMO", "Version 1.1", "false")

vrSubfolder()

  1. project key - key of the project to search in

  2. folder name - find issues for all hierarchy items under this folder

  • fixVersion in vrSubfolder("DEMO", "folder 1")

Select components in issue

Now let's explore how users can select components from the hierarchy using Subcomponents picker to add components to issue.

Subcomponents picker

Subcomponents picker is invoked via action button with the hierarchy icon located next to Components field on issue Create/Edit screen.

When you edit Components field inline Subcomponents picker action button is located in inline edit tools.

Subcomponents picker is a modal dialog with project components hierarchy.

Users can select components from the hierarchy and add them to issue in addition to selecting from the plain list.

Subcomponents hierarchy and Issue picker are fully supported in Service Desk projects.

Customer portal users can take advantage of selecting components from subcomponents hierarchy when creating issues in the customer portal.

Subcomponents picker settings

Users can configure hierarchy being displayed expanded or collapsed by default in Subcomponents picker via settings.

It is also possible to adjust automatic select/unselect behavior for a parent, sibling, and children items.

Option

Description

Bulk check parents

When a component is selected also select all its parent components

Bulk check siblings

When a component is selected also select all its sibling components

Bulk check children

When a component is selected also select all its children components

Bulk uncheck parents

When a component is unselected also unselect all its parent components

Bulk uncheck siblings

When a component is unselected also unselect all its sibling components

Bulk uncheck children

When a component is unselected also unselect all its children components

  • No labels