@kyaukyuai/linear-cli 2.4.0 → 2.4.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 +6 -0
- package/README.md +2 -0
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [2.4.1] - 2026-03-17
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
|
|
9
|
+
- added JSON output for `issue relation add` and `issue relation delete` so bots and wrappers can create and remove dependencies without parsing terminal text
|
|
10
|
+
|
|
5
11
|
## [2.4.0] - 2026-03-17
|
|
6
12
|
|
|
7
13
|
### Added
|
package/README.md
CHANGED
|
@@ -179,6 +179,8 @@ linear issue comment list # list comments on current issue
|
|
|
179
179
|
linear issue comment add # add a comment to current issue
|
|
180
180
|
linear issue comment add -p <id> # reply to a specific comment
|
|
181
181
|
linear issue comment add ENG-123 --body "follow-up" --json # emit created comment data
|
|
182
|
+
linear issue relation add ENG-123 blocked-by ENG-100 --json # emit machine-readable relation creation data
|
|
183
|
+
linear issue relation delete ENG-123 blocked-by ENG-100 --json # emit machine-readable relation deletion data
|
|
182
184
|
linear issue relation list ENG-123 --json # emit dependency graph for an issue
|
|
183
185
|
linear issue comment update <id> # update a comment
|
|
184
186
|
linear issue commits # show all commits for an issue (jj only)
|
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.4.
|
|
26
|
+
"version": "2.4.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.4.
|
|
545
|
+
"version": "2.4.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.4.
|
|
3
|
+
"https://github.com/kyaukyuai/linear-cli/releases/download/v2.4.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.4.
|
|
88
|
+
"version": "2.4.1",
|
|
89
89
|
"volta": {
|
|
90
90
|
"node": "18.14.1",
|
|
91
91
|
"npm": "9.5.0"
|