@kyaukyuai/linear-cli 2.4.1 → 2.6.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 +39 -1
- package/README.md +13 -2
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,39 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [2.6.0] - 2026-03-18
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
|
|
9
|
+
- added `--all` to `issue list` as a shortcut for `--all-states --all-assignees --limit 0`
|
|
10
|
+
- added `priorityLabel` and `cycle` to `issue list --json` for better payload parity with bot and planning workflows
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- clarified in `issue list` help and generated docs that the default scope is issues assigned to the current user unless all assignees are requested
|
|
15
|
+
|
|
16
|
+
### Fixed
|
|
17
|
+
|
|
18
|
+
- include unassigned backlog issues in the default `issue list --state backlog` view so backlog triage does not miss unowned work
|
|
19
|
+
|
|
20
|
+
### Improved
|
|
21
|
+
|
|
22
|
+
- hardened the local `setup-deno` GitHub Action to download Deno release archives directly with retries instead of relying on `deno.land/install.sh`
|
|
23
|
+
|
|
24
|
+
## [2.5.0] - 2026-03-18
|
|
25
|
+
|
|
26
|
+
### Added
|
|
27
|
+
|
|
28
|
+
- documented Automation Contract v1 for the bot-facing `--json` surface, including stable command coverage, shared value rules, and compatibility guarantees
|
|
29
|
+
|
|
30
|
+
### Changed
|
|
31
|
+
|
|
32
|
+
- automation-tier `--json` commands now return a machine-readable JSON error envelope on failure, including parser and argument validation failures before command actions run
|
|
33
|
+
|
|
34
|
+
### Improved
|
|
35
|
+
|
|
36
|
+
- added contract-focused tests for JSON error mapping and automation-tier failure output to catch breaking changes earlier
|
|
37
|
+
|
|
5
38
|
## [2.4.1] - 2026-03-17
|
|
6
39
|
|
|
7
40
|
### Added
|
|
@@ -503,7 +536,12 @@
|
|
|
503
536
|
- 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
|
|
504
537
|
- 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`
|
|
505
538
|
|
|
506
|
-
[Unreleased]: https://github.com/kyaukyuai/linear-cli/compare/v2.
|
|
539
|
+
[Unreleased]: https://github.com/kyaukyuai/linear-cli/compare/v2.6.0...HEAD
|
|
540
|
+
[2.6.0]: https://github.com/kyaukyuai/linear-cli/compare/v2.5.0...v2.6.0
|
|
541
|
+
[2.5.0]: https://github.com/kyaukyuai/linear-cli/compare/v2.4.1...v2.5.0
|
|
542
|
+
[2.4.1]: https://github.com/kyaukyuai/linear-cli/compare/v2.4.0...v2.4.1
|
|
543
|
+
[2.4.0]: https://github.com/kyaukyuai/linear-cli/compare/v2.3.0...v2.4.0
|
|
544
|
+
[2.3.0]: https://github.com/kyaukyuai/linear-cli/compare/v2.2.1...v2.3.0
|
|
507
545
|
[2.2.1]: https://github.com/kyaukyuai/linear-cli/compare/v2.2.0...v2.2.1
|
|
508
546
|
[2.2.0]: https://github.com/kyaukyuai/linear-cli/compare/v2.1.0...v2.2.0
|
|
509
547
|
[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 #
|
|
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
|
|
@@ -100,6 +100,15 @@ compared to upstream, this fork adds and maintains several capabilities aimed at
|
|
|
100
100
|
- workspace-aware auth management with keyring migration and default workspace support
|
|
101
101
|
- generated AI-agent skill docs, Claude plugin metadata, npm publishing, and Homebrew tap release plumbing
|
|
102
102
|
|
|
103
|
+
## automation contract v1
|
|
104
|
+
|
|
105
|
+
for bot and org-wide automation use cases, `linear-cli` defines a stable JSON contract for a focused automation tier.
|
|
106
|
+
|
|
107
|
+
- in scope: `issue list/view/create/update --json`, `issue relation add/delete/list --json`, `issue comment add --json`, `team members --json`, `issue parent/children/create-batch --json`
|
|
108
|
+
- out of scope: non-JSON terminal output, `linear api`, and other `--json` commands that are not listed above
|
|
109
|
+
|
|
110
|
+
the contract fixes top-level success payload shapes and requires machine-readable failure payloads for the automation tier. see [docs/json-contracts.md](docs/json-contracts.md) for the full contract, compatibility rules, and example payloads. that guarantee also covers parser and argument validation failures when `--json` is present.
|
|
111
|
+
|
|
103
112
|
## differences from upstream
|
|
104
113
|
|
|
105
114
|
this fork is intentionally diverging from upstream in a few ways:
|
|
@@ -156,7 +165,9 @@ linear issue id # prints the issue id from current branch (e.g., "ENG-123
|
|
|
156
165
|
linear issue title # prints just the issue title
|
|
157
166
|
linear issue url # prints the Linear.app URL for the issue
|
|
158
167
|
linear issue pr # creates a GitHub PR with issue details via `gh pr create`
|
|
159
|
-
linear issue list # list
|
|
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
|
|
160
171
|
linear issue list --project "My Project" --milestone "Phase 1" # filter by milestone
|
|
161
172
|
linear issue list --json # emit machine-readable issue data
|
|
162
173
|
linear issue list --all-states --query auth --priority high --updated-before 2026-03-31T00:00:00Z --due-before 2026-04-07 --json
|
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.6.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.6.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.6.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.6.0",
|
|
89
89
|
"volta": {
|
|
90
90
|
"node": "18.14.1",
|
|
91
91
|
"npm": "9.5.0"
|