Update version
jira_update_versionUpdate a Jira version's name, dates, description, archived status, or release state. Partial changes only affect specified fields, so you can cut or undo a release without altering issues.
Instructions
Changes a version — this is how a release is cut (released: true) and how it is un-cut (released: false). A PARTIAL update, unlike jira_update_issue: only the fields you pass are changed and everything you omit keeps its current value. Pass description: "" to clear the description. A call with no field to change is refused rather than sent. Releasing does NOT change any issue; it only marks the version. Needs the "Administer projects" permission.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | New name. Omit to keep the current one. | |
| apply | No | Set true to EXECUTE this write. Omit (or false) to get a plan of the request that would be sent. Executing also requires the server to run with JIRA_WRITE_MODE=apply. | |
| plan_id | No | The single-use id returned by the preceding plan-mode call. Required together with apply: true; a mismatch means the arguments changed since the plan, and the write is refused rather than executed. | |
| profile | No | Named credential profile for this call. Omit to use the active profile. Rejected when the server locks the profile (JIRA_LOCK_PROFILE). | |
| archived | No | true archives the version, false restores it. Both directions work. | |
| released | No | true releases the version, false un-releases it. Both directions work. | |
| startDate | No | Start date as an ISO-8601 calendar date, YYYY-MM-DD (2026-03-31). A Jira version has no time of day, so a timestamp is rejected. | |
| versionId | Yes | Numeric version id from jira_list_versions. | |
| description | No | Free-text description, stored as PLAIN TEXT — this endpoint predates rich text, so markdown and ADF are stored literally. Pass "" to clear it. | |
| releaseDate | No | Planned or actual release date as an ISO-8601 calendar date, YYYY-MM-DD (2026-03-31). A Jira version has no time of day, so a timestamp is rejected. |