@kyaukyuai/linear-cli 3.0.0 → 3.0.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,17 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [3.0.1] - 2026-04-05
6
+
7
+ ### Changed
8
+
9
+ - published a copy-pasteable v2-to-v3 migration cookbook and strengthened the v3 release guide around startup, diagnostics, and explicit compatibility-mode guidance
10
+ - expanded the v3 release gate to certify both the native startup/discovery path and the explicit compatibility path for diagnostics and human/debug inspection
11
+
12
+ ### Fixed
13
+
14
+ - improved common v3 compatibility failures so runtime suggestions point callers to `--text`, `--compat v1`, or `--profile human-debug --interactive` instead of forcing migration guidance to live only in docs
15
+
5
16
  ## [3.0.0] - 2026-04-04
6
17
 
7
18
  ### Added
package/README.md CHANGED
@@ -68,6 +68,7 @@ Recommended docs:
68
68
  - [Agent workflow guide](docs/agent-first.md)
69
69
  - [Automation contracts](docs/json-contracts.md)
70
70
  - [Agent-only v3 release guide](docs/agent-only-v3.md)
71
+ - [v2 to v3 migration cookbook](docs/v2-to-v3-migration-cookbook.md)
71
72
  - [stdin and pipeline policy](docs/stdin-policy.md)
72
73
 
73
74
  ## migration from 2.x
@@ -80,7 +81,7 @@ If a downstream consumer still assumes the older mixed human/agent behavior, mig
80
81
  4. add `--text` anywhere a maintainer still wants terminal-oriented output
81
82
  5. add `--profile human-debug --interactive` anywhere a maintainer still wants prompts or pager-oriented debugging
82
83
 
83
- The detailed release and migration guide lives in [docs/agent-only-v3.md](docs/agent-only-v3.md).
84
+ The detailed release and migration guide lives in [docs/agent-only-v3.md](docs/agent-only-v3.md). For copy-pasteable before/after fixes, use [docs/v2-to-v3-migration-cookbook.md](docs/v2-to-v3-migration-cookbook.md).
84
85
 
85
86
  ## human-debug demos
86
87
 
@@ -203,8 +204,9 @@ Use the docs in this order if you are building an agent integration:
203
204
  1. [docs/agent-first.md](docs/agent-first.md) for the recommended discover/read/preview/apply/recover loop
204
205
  2. [docs/json-contracts.md](docs/json-contracts.md) for stable JSON payloads, exit codes, timeout semantics, and dry-run envelopes
205
206
  3. [docs/agent-only-v3.md](docs/agent-only-v3.md) for the `v3.0.0` release contract and downstream migration checklist
206
- 4. [docs/stdin-policy.md](docs/stdin-policy.md) for pipeline and file-input conventions
207
- 5. [`linear capabilities`](#automation-contract) for machine-readable command metadata at runtime
207
+ 4. [docs/v2-to-v3-migration-cookbook.md](docs/v2-to-v3-migration-cookbook.md) for consumer-facing before/after upgrade examples
208
+ 5. [docs/stdin-policy.md](docs/stdin-policy.md) for pipeline and file-input conventions
209
+ 6. [`linear capabilities`](#automation-contract) for machine-readable command metadata at runtime
208
210
 
209
211
  ## automation contract
210
212
 
@@ -23,7 +23,7 @@
23
23
  "hasInstallScript": true,
24
24
  "license": "MIT",
25
25
  "name": "@kyaukyuai/linear-cli",
26
- "version": "3.0.0"
26
+ "version": "3.0.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": "3.0.0"
545
+ "version": "3.0.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/v3.0.0"
3
+ "https://github.com/kyaukyuai/linear-cli/releases/download/v3.0.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": "3.0.0",
88
+ "version": "3.0.1",
89
89
  "volta": {
90
90
  "node": "18.14.1",
91
91
  "npm": "9.5.0"