Browse and manage Jira project fix versions using jirac issue versions.
Steps:
- Check that
jiracis available by runningjirac --version. If missing, tell the user to install it (cargo install jira-commands). - Extract from the user's request:
- project key (required when not using the default config project)
- specific version name (optional — narrows view to one version + its backlog)
- Run
jirac issue versions -p <PROJECT>to list all versions, or--version '<NAME>'to focus on one. - Report each version's status (released, archived, unreleased), start/release dates, and backlog summary.
Notes:
- Use this before bulk updates that touch
--fix-versions— confirms the version name exists and is in the expected state. - The TUI (
jirac tuithenV) offers an interactive version browser with backlog preview, includingEnterto refresh andn/eto create or edit metadata. - For shipping prep, combine with JQL on
fixVersion in unreleasedVersions()orfixVersion = "v1.2.0".
Examples:
- "list versions in PROJ" →
jirac issue versions -p PROJ - "show me details for v1.2.0 in PROJ" →
jirac issue versions -p PROJ --version 'v1.2.0' - "what's planned for the next release of PROJ" →
jirac issue versions -p PROJthen preview the unreleased one