@kyaukyuai/linear-cli 2.5.0 → 2.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,42 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [2.7.0] - 2026-03-23
6
+
7
+ ### Added
8
+
9
+ - added `--comment` to `issue update` so issue edits and follow-up comments can be sent in one command
10
+ - added positional comment body support for `issue comment add ISSUE "body"` while keeping `--body` and `--body-file` support
11
+ - added `--no-pager` to list-oriented commands beyond `issue list` for CI and agent-friendly non-interactive output
12
+ - added `todo` as an alias for `unstarted` in `issue list --state`
13
+
14
+ ### Changed
15
+
16
+ - clarified valid `issue list --state` values in help and generated docs, including the `todo` alias
17
+
18
+ ### Fixed
19
+
20
+ - accepted `--no-interactive` on `issue update` for compatibility with existing scripted workflows
21
+
22
+ ## [2.6.0] - 2026-03-18
23
+
24
+ ### Added
25
+
26
+ - added `--all` to `issue list` as a shortcut for `--all-states --all-assignees --limit 0`
27
+ - added `priorityLabel` and `cycle` to `issue list --json` for better payload parity with bot and planning workflows
28
+
29
+ ### Changed
30
+
31
+ - clarified in `issue list` help and generated docs that the default scope is issues assigned to the current user unless all assignees are requested
32
+
33
+ ### Fixed
34
+
35
+ - include unassigned backlog issues in the default `issue list --state backlog` view so backlog triage does not miss unowned work
36
+
37
+ ### Improved
38
+
39
+ - hardened the local `setup-deno` GitHub Action to download Deno release archives directly with retries instead of relying on `deno.land/install.sh`
40
+
5
41
  ## [2.5.0] - 2026-03-18
6
42
 
7
43
  ### Added
@@ -517,7 +553,13 @@
517
553
  - adds a -t, --title flag to the `issue pr` command, allowing you to provide a PR title that is different than linear's issue title
518
554
  - allows linear issue identifiers to be passed in as arguments to the issue commands as an alternative to parsing the branch name, e.g. `linear issue show ABC-123`
519
555
 
520
- [Unreleased]: https://github.com/kyaukyuai/linear-cli/compare/v2.2.1...HEAD
556
+ [Unreleased]: https://github.com/kyaukyuai/linear-cli/compare/v2.7.0...HEAD
557
+ [2.7.0]: https://github.com/kyaukyuai/linear-cli/compare/v2.6.0...v2.7.0
558
+ [2.6.0]: https://github.com/kyaukyuai/linear-cli/compare/v2.5.0...v2.6.0
559
+ [2.5.0]: https://github.com/kyaukyuai/linear-cli/compare/v2.4.1...v2.5.0
560
+ [2.4.1]: https://github.com/kyaukyuai/linear-cli/compare/v2.4.0...v2.4.1
561
+ [2.4.0]: https://github.com/kyaukyuai/linear-cli/compare/v2.3.0...v2.4.0
562
+ [2.3.0]: https://github.com/kyaukyuai/linear-cli/compare/v2.2.1...v2.3.0
521
563
  [2.2.1]: https://github.com/kyaukyuai/linear-cli/compare/v2.2.0...v2.2.1
522
564
  [2.2.0]: https://github.com/kyaukyuai/linear-cli/compare/v2.1.0...v2.2.0
523
565
  [2.1.0]: https://github.com/kyaukyuai/linear-cli/compare/v2.0.1...v2.1.0
package/README.md CHANGED
@@ -10,7 +10,7 @@ here's how it works:
10
10
  linear config # setup your repo, it writes a config file
11
11
 
12
12
  linear issue list # list unstarted issues assigned to you
13
- linear issue list -A # list unstarted issues assigned to anyone
13
+ linear issue list -A # include unassigned and other assignees
14
14
  linear issue start # choose an issue to start, creates a branch
15
15
  linear issue start ABC-123 # start a specific issue
16
16
  linear issue view # see current branch's issue as markdown
@@ -165,7 +165,10 @@ linear issue id # prints the issue id from current branch (e.g., "ENG-123
165
165
  linear issue title # prints just the issue title
166
166
  linear issue url # prints the Linear.app URL for the issue
167
167
  linear issue pr # creates a GitHub PR with issue details via `gh pr create`
168
- linear issue list # list your issues in a table view (supports -s/--state and --sort)
168
+ linear issue list # list issues assigned to you in a table view (supports -s/--state and --sort)
169
+ linear issue list --all --json # list all issues across states and assignees without a limit
170
+ linear issue list --all-states # still defaults to your issues; use -A to include others
171
+ linear issue list -s todo # alias for unstarted
169
172
  linear issue list --project "My Project" --milestone "Phase 1" # filter by milestone
170
173
  linear issue list --json # emit machine-readable issue data
171
174
  linear issue list --all-states --query auth --priority high --updated-before 2026-03-31T00:00:00Z --due-before 2026-04-07 --json
@@ -182,10 +185,12 @@ linear issue update # update an issue (interactive prompts)
182
185
  linear issue update ENG-123 --due-date 2026-03-31 # set an issue due date
183
186
  linear issue update ENG-123 --clear-due-date # clear an issue due date
184
187
  linear issue update ENG-123 --assignee self --json # emit machine-readable updated issue data
188
+ linear issue update ENG-123 --state started --comment "Work has started" # update and comment in one command
185
189
  linear issue update ENG-123 --milestone "Phase 2" # set milestone on existing issue
186
190
  linear issue delete # delete an issue
187
191
  linear issue comment list # list comments on current issue
188
192
  linear issue comment add # add a comment to current issue
193
+ linear issue comment add ENG-123 "follow-up" # add a comment with positional body
189
194
  linear issue comment add -p <id> # reply to a specific comment
190
195
  linear issue comment add ENG-123 --body "follow-up" --json # emit created comment data
191
196
  linear issue relation add ENG-123 blocked-by ENG-100 --json # emit machine-readable relation creation data
@@ -23,7 +23,7 @@
23
23
  "hasInstallScript": true,
24
24
  "license": "MIT",
25
25
  "name": "@kyaukyuai/linear-cli",
26
- "version": "2.5.0"
26
+ "version": "2.7.0"
27
27
  },
28
28
  "node_modules/@isaacs/cliui": {
29
29
  "engines": {
@@ -542,5 +542,5 @@
542
542
  }
543
543
  },
544
544
  "requires": true,
545
- "version": "2.5.0"
545
+ "version": "2.7.0"
546
546
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "artifactDownloadUrls": [
3
- "https://github.com/kyaukyuai/linear-cli/releases/download/v2.5.0"
3
+ "https://github.com/kyaukyuai/linear-cli/releases/download/v2.7.0"
4
4
  ],
5
5
  "bin": {
6
6
  "linear": "run-linear.js"
@@ -85,7 +85,7 @@
85
85
  "zipExt": ".tar.xz"
86
86
  }
87
87
  },
88
- "version": "2.5.0",
88
+ "version": "2.7.0",
89
89
  "volta": {
90
90
  "node": "18.14.1",
91
91
  "npm": "9.5.0"