@kyaukyuai/linear-cli 2.6.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,23 @@
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
+
5
22
  ## [2.6.0] - 2026-03-18
6
23
 
7
24
  ### Added
@@ -536,7 +553,8 @@
536
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
537
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`
538
555
 
539
- [Unreleased]: https://github.com/kyaukyuai/linear-cli/compare/v2.6.0...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
540
558
  [2.6.0]: https://github.com/kyaukyuai/linear-cli/compare/v2.5.0...v2.6.0
541
559
  [2.5.0]: https://github.com/kyaukyuai/linear-cli/compare/v2.4.1...v2.5.0
542
560
  [2.4.1]: https://github.com/kyaukyuai/linear-cli/compare/v2.4.0...v2.4.1
package/README.md CHANGED
@@ -168,6 +168,7 @@ linear issue pr # creates a GitHub PR with issue details via `gh pr creat
168
168
  linear issue list # list issues assigned to you in a table view (supports -s/--state and --sort)
169
169
  linear issue list --all --json # list all issues across states and assignees without a limit
170
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
171
172
  linear issue list --project "My Project" --milestone "Phase 1" # filter by milestone
172
173
  linear issue list --json # emit machine-readable issue data
173
174
  linear issue list --all-states --query auth --priority high --updated-before 2026-03-31T00:00:00Z --due-before 2026-04-07 --json
@@ -184,10 +185,12 @@ linear issue update # update an issue (interactive prompts)
184
185
  linear issue update ENG-123 --due-date 2026-03-31 # set an issue due date
185
186
  linear issue update ENG-123 --clear-due-date # clear an issue due date
186
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
187
189
  linear issue update ENG-123 --milestone "Phase 2" # set milestone on existing issue
188
190
  linear issue delete # delete an issue
189
191
  linear issue comment list # list comments on current issue
190
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
191
194
  linear issue comment add -p <id> # reply to a specific comment
192
195
  linear issue comment add ENG-123 --body "follow-up" --json # emit created comment data
193
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.6.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.6.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.6.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.6.0",
88
+ "version": "2.7.0",
89
89
  "volta": {
90
90
  "node": "18.14.1",
91
91
  "npm": "9.5.0"