@kyaukyuai/linear-cli 2.8.0 → 2.8.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 CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [2.8.1] - 2026-03-24
6
+
7
+ ### Added
8
+
9
+ - added `--dry-run` support to `issue start` so agents and scripts can preview branch naming and target state transitions before mutating Linear or local VCS state
10
+
5
11
  ## [2.8.0] - 2026-03-24
6
12
 
7
13
  ### Added
package/README.md CHANGED
@@ -179,6 +179,7 @@ linear issue list --parent ENG-100 --json # filter sub-issues of a parent issue
179
179
  linear issue list -w # open issue list in web browser
180
180
  linear issue list -a # open issue list in Linear.app
181
181
  linear issue start # create/switch to issue branch and mark as started
182
+ linear issue start ENG-123 --dry-run # preview the branch and target state
182
183
  linear issue create # create a new issue (interactive prompts)
183
184
  linear issue create -t "title" -d "description" # create with flags
184
185
  linear issue create -t "title" --team ENG --json # emit machine-readable created issue data
@@ -23,7 +23,7 @@
23
23
  "hasInstallScript": true,
24
24
  "license": "MIT",
25
25
  "name": "@kyaukyuai/linear-cli",
26
- "version": "2.8.0"
26
+ "version": "2.8.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.8.0"
545
+ "version": "2.8.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.8.0"
3
+ "https://github.com/kyaukyuai/linear-cli/releases/download/v2.8.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.8.0",
88
+ "version": "2.8.1",
89
89
  "volta": {
90
90
  "node": "18.14.1",
91
91
  "npm": "9.5.0"