Changelog

atlassian-cli Changelog

Features, fixes, and version history. Each release is also published on GitHub Releases and crates.io.

0.7.2 August 22, 2026 GitHub release →
  • Security: auth login --help printed your API token. If ATLASSIAN_API_TOKEN was exported, asking for help printed its value, so the token could end up in a screen share, a pasted bug report, or CI logs, where masking covers registered secrets rather than arbitrary command output. Help still names the variable, just not its value. If you have run auth login --help with that variable set somewhere it could be seen or recorded, rotate the token. Found and fixed by @shohi.
0.7.1 August 22, 2026 GitHub release →
  • Site URLs with a path work again: a base_url carrying a path lost its last segment, so https://api.atlassian.com/ex/jira/<cloudId> — the form scoped API tokens require — dropped the cloud id and every request 404'd. The same root cause broke any self-hosted product behind a context path, such as Bamboo at https://example.com/bamboo. Existing profiles are corrected on load, so no config edit is needed. Found and fixed by @shohi.
0.7.0 August 22, 2026 GitHub release →
  • Inline pull request comments: bb pr comment --path src/main.rs --line 42 anchors a comment to a file and line instead of leaving a blanket note, with --side old for a removed line and no --line for a whole-file comment. bb pr comments gains a location column so inline and top-level comments are distinguishable. Composes with the threaded replies added in 0.6.0. Thanks to @alcantaraleo.
  • Confluence inline comments are visible at last: confluence page comments only ever fetched footer comments, so a page using inline comments (the highlight-and-comment kind) returned an empty list however many it had. Both collections are now listed, with a kind column. Reported by @georghildebrand.
  • Long comment threads are no longer truncated: the same command ignored Confluence's pagination cursor, so every listing stopped at the first page. A page with 84 comments reported 25.
  • Reading and writing threads: confluence page comments --replies walks each thread and shows which comment a reply belongs to, and add-comment --parent <id> --kind inline replies into one.
  • Comment text is escaped: a Confluence comment containing <, > or & previously produced invalid markup.
0.6.0 August 20, 2026 GitHub release →
  • See an issue's available transitions: jira issue transitions DEV-123 lists what the issue can move to right now, with --format quiet giving ids to feed straight into jira issue transition. Which transitions exist depends on the workflow and the current status, so this was previously guesswork.
  • Threaded pull request comments: bb pr comment --parent <id> replies inside a thread, and bb pr resolve-comment / bb pr reopen-comment close and reopen one. bb pr comments now shows each comment's parent and its full body instead of truncating to the first line. Thanks to @ptqa.
  • Empty results are machine-readable: a list command that matched nothing printed No issues found in every format, so --format json | jq failed on exactly the case it most needs to handle. JSON and YAML now give an array, --format quiet and --format csv give nothing at all, and table output keeps the explanation.
  • Editing a comment works: jira issue comments update and delete targeted a route Jira Cloud does not have, so they always failed. Both now take the issue key first: jira issue comments update DEV-123 10100 --body "...".
  • bb pr reviewers --add works: it used an endpoint that does not exist, so every add was a 404.
  • Every example script runs: the scripts under docs/examples/ had invocations that could not parse. All repaired, with a test that parses each one in CI. Thanks to @alcantaraleo.
  • Maintenance: --profile and --config are accepted after the subcommand, auth login prompts for anything it needs instead of failing, a flaky test in the colour code is fixed, and h2 is bumped for RUSTSEC-2026-0258.
0.5.1 August 10, 2026 GitHub release →
  • jira api -X PUT works: only the lowercase spelling parsed, while the documentation and the command's own help both showed uppercase.
  • Documentation repair: 45 command examples in the README and 19 in the shipped example scripts did not run. Every documented command is now parsed against the real binary in CI.
0.5.0 August 10, 2026 GitHub release →
  • Jira attachments: jira attachment list / get / download / upload / delete. download --issue DEV-123 --dir ./attachments fetches every attachment on an issue in one call, and --output - streams one to stdout for piping. Previously jira issue get showed you the attachment URL but it was behind auth, so there was no way to fetch the file. Requested in #93.
  • Raw API access: jira api <path> calls any Jira REST endpoint using the credentials already in your profile, for anything the typed commands do not cover. --query handles percent-encoding, so JQL can be written plainly, and a non-2xx response prints the API's own error body instead of swallowing it.
  • Logs no longer go to stdout: a rate-limit or retry warning could interleave with command output and corrupt anything you piped into another tool.
  • Tighter request origin check: the safeguard that keeps requests on your own site compared the host but not the port, so another service on the same host could receive your credentials.
  • --profile and --config work anywhere: both were rejected after the subcommand even though --format was accepted there, which broke most published examples.
  • auth login prompts: running it bare used to fail on missing arguments, despite being exactly what the CLI's own error messages tell you to run.
0.4.3 July 13, 2026 GitHub release →
  • Markdown tables in Jira: a GFM table in --description or a comment --body now becomes a real Jira table instead of raw pipe characters. Thanks to @fabianderschatta.
  • Confluence page comments work again: confluence page comments failed on any page that had at least one comment. It now also shows the comment body, with a new --full flag for untruncated text. Thanks to @alexevansigg.
  • Confluence attachment downloads work again: confluence attachment download dropped the /wiki path segment and always failed with a 404.
  • Correct CSV and markdown output: CSV fields are now quoted per RFC 4180, so a comma inside a value (an issue summary, a comment) no longer shifts every later column. Markdown table cells escape newlines.
  • Maintenance: bumped aes-gcm to 0.11 and indicatif to 0.18.6, and updated quinn-proto, crossbeam-epoch and anyhow to clear security advisories.
0.4.2 June 18, 2026 GitHub release →
  • Jira sprints from the CLI: jira issue create and jira issue update take a --sprint <id> flag that assigns the issue to a sprint via the Agile API, so you no longer need to look up the board's customfield_10020 id by hand.
  • Sprint in issue get: jira issue get now displays the issue's sprint, so you can verify sprint assignment without a raw REST call.
  • Maintenance: bumped zeroize to 1.9.0.
0.4.1 June 14, 2026 GitHub release →
  • Jira attachments in issue get: the output now includes an attachments array (id, filename, MIME type, size, download URL) in JSON, table, and markdown. Tolerant of Jira returning the attachment id as either a number or a string.
  • jira issue comments list --full: returns the complete comment body instead of the 50-character preview.
0.4.0 June 12, 2026 features GitHub release →
  • Jira: Markdown to ADF: issue create/update --description and comment bodies convert Markdown (headings, lists, bold, italic, inline code, links, code blocks) into structured Atlassian Document Format. Plain text still becomes a single paragraph.
  • Confluence: v2 Folder API: new confluence folder get | create | delete command group for /wiki/api/v2/folders.
  • Bitbucket: custom pipelines: pipeline trigger --custom-pipeline <name> runs a named custom pipeline.
  • Fix: mutating commands (issue update, transition, assign, and Confluence equivalents) no longer report false errors on an HTTP 204 No Content response. Exit codes are now reliable.
  • Hardening: Confluence list parsing tolerates missing or null fields; dropped the unmaintained proc-macro-error2 dependency and refreshed the dependency set.
0.3.3 May 2026 GitHub release →
  • Jira custom field support via --field, ADF markdown extraction in issue get, and a range of Bitbucket and Confluence improvements across the 0.3 line.
Earlier releases

Full notes for every prior version (0.3.2 back to 0.1.0) are on GitHub: