Update Version
jira_update_versionUpdate a Jira fix version's name, description, dates, or flags (archived/released) without recreating it.
Instructions
Update an existing fix version in a Jira project.
Only fields explicitly provided are modified; other attributes of the version are left untouched. Useful for archiving/unarchiving versions, renaming, or shifting release dates without recreating them.
Args: ctx: The FastMCP context. version_id: Numeric ID of the version to update. name: New name (optional). description: New description (optional). start_date: New start date YYYY-MM-DD (optional). release_date: New release date YYYY-MM-DD (optional). archived: Archived flag (optional). released: Released flag (optional).
Returns: JSON string of the updated version object.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | New name for the version | |
| archived | No | Set archived flag (true to archive) | |
| released | No | Set released flag (true to mark released) | |
| start_date | No | New start date (YYYY-MM-DD) | |
| version_id | Yes | Numeric ID of the version to update (e.g. '10001') | |
| description | No | New description for the version | |
| release_date | No | New release date (YYYY-MM-DD) |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |