@kyaukyuai/linear-cli 2.2.0 → 2.3.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 +24 -1
- package/README.md +9 -0
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,28 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [2.3.0] - 2026-03-17
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
|
|
9
|
+
- added `issue list --json` with bot-oriented filters for `query`, `parent`, `priority`, `updated-before`, and `due-before`
|
|
10
|
+
- stabilized `issue view --json` with a bot-friendly payload that includes assignee, due date, priority, relations, and comment summaries
|
|
11
|
+
- added `issue create --json` and `issue update --json` with stable response payloads for wrappers and bots
|
|
12
|
+
|
|
13
|
+
### Improved
|
|
14
|
+
|
|
15
|
+
- aligned npm trusted publishing with the `publish.yaml` workflow used by release automation
|
|
16
|
+
|
|
17
|
+
## [2.2.1] - 2026-03-17
|
|
18
|
+
|
|
19
|
+
### Fixed
|
|
20
|
+
|
|
21
|
+
- added due date display to `issue view` and `issue list`, and added `issue update --clear-due-date`
|
|
22
|
+
|
|
23
|
+
### Improved
|
|
24
|
+
|
|
25
|
+
- updated npm publishing to use trusted publishing for future releases
|
|
26
|
+
|
|
5
27
|
## [2.2.0] - 2026-03-15
|
|
6
28
|
|
|
7
29
|
### Added
|
|
@@ -468,7 +490,8 @@
|
|
|
468
490
|
- 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
|
|
469
491
|
- 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`
|
|
470
492
|
|
|
471
|
-
[Unreleased]: https://github.com/kyaukyuai/linear-cli/compare/v2.2.
|
|
493
|
+
[Unreleased]: https://github.com/kyaukyuai/linear-cli/compare/v2.2.1...HEAD
|
|
494
|
+
[2.2.1]: https://github.com/kyaukyuai/linear-cli/compare/v2.2.0...v2.2.1
|
|
472
495
|
[2.2.0]: https://github.com/kyaukyuai/linear-cli/compare/v2.1.0...v2.2.0
|
|
473
496
|
[2.1.0]: https://github.com/kyaukyuai/linear-cli/compare/v2.0.1...v2.1.0
|
|
474
497
|
[2.0.1]: https://github.com/kyaukyuai/linear-cli/compare/v2.0.0...v2.0.1
|
package/README.md
CHANGED
|
@@ -148,6 +148,8 @@ note that [Linear's GitHub integration](https://linear.app/docs/github#branch-fo
|
|
|
148
148
|
linear issue view # view current issue details in terminal
|
|
149
149
|
linear issue view ABC-123
|
|
150
150
|
linear issue view 123
|
|
151
|
+
linear issue view ABC-123 --json # emit stable machine-readable issue details
|
|
152
|
+
linear issue view ABC-123 --json --no-comments # skip raw comments but keep commentsSummary
|
|
151
153
|
linear issue view -w # open issue in web browser
|
|
152
154
|
linear issue view -a # open issue in Linear.app
|
|
153
155
|
linear issue id # prints the issue id from current branch (e.g., "ENG-123")
|
|
@@ -156,13 +158,20 @@ linear issue url # prints the Linear.app URL for the issue
|
|
|
156
158
|
linear issue pr # creates a GitHub PR with issue details via `gh pr create`
|
|
157
159
|
linear issue list # list your issues in a table view (supports -s/--state and --sort)
|
|
158
160
|
linear issue list --project "My Project" --milestone "Phase 1" # filter by milestone
|
|
161
|
+
linear issue list --json # emit machine-readable issue data
|
|
162
|
+
linear issue list --all-states --query auth --priority high --updated-before 2026-03-31T00:00:00Z --due-before 2026-04-07 --json
|
|
163
|
+
linear issue list --parent ENG-100 --json # filter sub-issues of a parent issue
|
|
159
164
|
linear issue list -w # open issue list in web browser
|
|
160
165
|
linear issue list -a # open issue list in Linear.app
|
|
161
166
|
linear issue start # create/switch to issue branch and mark as started
|
|
162
167
|
linear issue create # create a new issue (interactive prompts)
|
|
163
168
|
linear issue create -t "title" -d "description" # create with flags
|
|
169
|
+
linear issue create -t "title" --team ENG --json # emit machine-readable created issue data
|
|
164
170
|
linear issue create --project "My Project" --milestone "Phase 1" # create with milestone
|
|
165
171
|
linear issue update # update an issue (interactive prompts)
|
|
172
|
+
linear issue update ENG-123 --due-date 2026-03-31 # set an issue due date
|
|
173
|
+
linear issue update ENG-123 --clear-due-date # clear an issue due date
|
|
174
|
+
linear issue update ENG-123 --assignee self --json # emit machine-readable updated issue data
|
|
166
175
|
linear issue update ENG-123 --milestone "Phase 2" # set milestone on existing issue
|
|
167
176
|
linear issue delete # delete an issue
|
|
168
177
|
linear issue comment list # list comments on current issue
|
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.3.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.
|
|
545
|
+
"version": "2.3.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.
|
|
3
|
+
"https://github.com/kyaukyuai/linear-cli/releases/download/v2.3.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.
|
|
88
|
+
"version": "2.3.0",
|
|
89
89
|
"volta": {
|
|
90
90
|
"node": "18.14.1",
|
|
91
91
|
"npm": "9.5.0"
|