@kyaukyuai/linear-cli 2.6.0 → 2.7.1
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 +34 -1
- package/README.md +3 -0
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,37 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [2.7.1] - 2026-03-23
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
|
|
9
|
+
- added working `--no-pager` support to `cycle list`
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
|
|
13
|
+
- improved `issue list --all` and `--state` handling so `--all` can be combined with an explicit state filter while conflicting `--all-states` usage reports clearer guidance
|
|
14
|
+
|
|
15
|
+
### Fixed
|
|
16
|
+
|
|
17
|
+
- normalized `issue view --json` descriptions so escaped newlines are returned as real line breaks for `jq` and other machine-readable consumers
|
|
18
|
+
|
|
19
|
+
## [2.7.0] - 2026-03-23
|
|
20
|
+
|
|
21
|
+
### Added
|
|
22
|
+
|
|
23
|
+
- added `--comment` to `issue update` so issue edits and follow-up comments can be sent in one command
|
|
24
|
+
- added positional comment body support for `issue comment add ISSUE "body"` while keeping `--body` and `--body-file` support
|
|
25
|
+
- added `--no-pager` to list-oriented commands beyond `issue list` for CI and agent-friendly non-interactive output
|
|
26
|
+
- added `todo` as an alias for `unstarted` in `issue list --state`
|
|
27
|
+
|
|
28
|
+
### Changed
|
|
29
|
+
|
|
30
|
+
- clarified valid `issue list --state` values in help and generated docs, including the `todo` alias
|
|
31
|
+
|
|
32
|
+
### Fixed
|
|
33
|
+
|
|
34
|
+
- accepted `--no-interactive` on `issue update` for compatibility with existing scripted workflows
|
|
35
|
+
|
|
5
36
|
## [2.6.0] - 2026-03-18
|
|
6
37
|
|
|
7
38
|
### Added
|
|
@@ -536,7 +567,9 @@
|
|
|
536
567
|
- 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
568
|
- 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
569
|
|
|
539
|
-
[Unreleased]: https://github.com/kyaukyuai/linear-cli/compare/v2.
|
|
570
|
+
[Unreleased]: https://github.com/kyaukyuai/linear-cli/compare/v2.7.1...HEAD
|
|
571
|
+
[2.7.1]: https://github.com/kyaukyuai/linear-cli/compare/v2.7.0...v2.7.1
|
|
572
|
+
[2.7.0]: https://github.com/kyaukyuai/linear-cli/compare/v2.6.0...v2.7.0
|
|
540
573
|
[2.6.0]: https://github.com/kyaukyuai/linear-cli/compare/v2.5.0...v2.6.0
|
|
541
574
|
[2.5.0]: https://github.com/kyaukyuai/linear-cli/compare/v2.4.1...v2.5.0
|
|
542
575
|
[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
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"hasInstallScript": true,
|
|
24
24
|
"license": "MIT",
|
|
25
25
|
"name": "@kyaukyuai/linear-cli",
|
|
26
|
-
"version": "2.
|
|
26
|
+
"version": "2.7.1"
|
|
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.
|
|
545
|
+
"version": "2.7.1"
|
|
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.
|
|
3
|
+
"https://github.com/kyaukyuai/linear-cli/releases/download/v2.7.1"
|
|
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.
|
|
88
|
+
"version": "2.7.1",
|
|
89
89
|
"volta": {
|
|
90
90
|
"node": "18.14.1",
|
|
91
91
|
"npm": "9.5.0"
|