@kyaukyuai/linear-cli 2.2.0 → 2.2.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 +12 -1
- package/README.md +2 -0
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,16 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [2.2.1] - 2026-03-17
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
|
|
9
|
+
- added due date display to `issue view` and `issue list`, and added `issue update --clear-due-date`
|
|
10
|
+
|
|
11
|
+
### Improved
|
|
12
|
+
|
|
13
|
+
- updated npm publishing to use trusted publishing for future releases
|
|
14
|
+
|
|
5
15
|
## [2.2.0] - 2026-03-15
|
|
6
16
|
|
|
7
17
|
### Added
|
|
@@ -468,7 +478,8 @@
|
|
|
468
478
|
- 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
479
|
- 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
480
|
|
|
471
|
-
[Unreleased]: https://github.com/kyaukyuai/linear-cli/compare/v2.2.
|
|
481
|
+
[Unreleased]: https://github.com/kyaukyuai/linear-cli/compare/v2.2.1...HEAD
|
|
482
|
+
[2.2.1]: https://github.com/kyaukyuai/linear-cli/compare/v2.2.0...v2.2.1
|
|
472
483
|
[2.2.0]: https://github.com/kyaukyuai/linear-cli/compare/v2.1.0...v2.2.0
|
|
473
484
|
[2.1.0]: https://github.com/kyaukyuai/linear-cli/compare/v2.0.1...v2.1.0
|
|
474
485
|
[2.0.1]: https://github.com/kyaukyuai/linear-cli/compare/v2.0.0...v2.0.1
|
package/README.md
CHANGED
|
@@ -163,6 +163,8 @@ linear issue create # create a new issue (interactive prompts)
|
|
|
163
163
|
linear issue create -t "title" -d "description" # create with flags
|
|
164
164
|
linear issue create --project "My Project" --milestone "Phase 1" # create with milestone
|
|
165
165
|
linear issue update # update an issue (interactive prompts)
|
|
166
|
+
linear issue update ENG-123 --due-date 2026-03-31 # set an issue due date
|
|
167
|
+
linear issue update ENG-123 --clear-due-date # clear an issue due date
|
|
166
168
|
linear issue update ENG-123 --milestone "Phase 2" # set milestone on existing issue
|
|
167
169
|
linear issue delete # delete an issue
|
|
168
170
|
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.2.
|
|
26
|
+
"version": "2.2.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.2.
|
|
545
|
+
"version": "2.2.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.2.
|
|
3
|
+
"https://github.com/kyaukyuai/linear-cli/releases/download/v2.2.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.2.
|
|
88
|
+
"version": "2.2.1",
|
|
89
89
|
"volta": {
|
|
90
90
|
"node": "18.14.1",
|
|
91
91
|
"npm": "9.5.0"
|