@kyaukyuai/linear-cli 2.0.0 → 2.1.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 CHANGED
@@ -2,6 +2,28 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [2.1.0] - 2026-03-13
6
+
7
+ ### Added
8
+
9
+ - added inbox notification commands for `list`, `count`, `read`, and `archive`, including `--json` output for scripting
10
+ - added webhook commands for `list`, `view`, `create`, `update`, and `delete` with team-scoped and all-public-team support
11
+
12
+ ### Changed
13
+
14
+ - deprecated `issue search`; it now exits with guidance to use `issue list`, `issue list --json`, or `api` instead of the removed search endpoint
15
+
16
+ ### Improved
17
+
18
+ - hardened release automation by splitting npm publish from cargo-dist release flow, skipping already-published npm/JSR versions, removing npm release-asset polling, and updating GitHub Actions for the Node 24 transition
19
+ - added a release runbook for verification, recovery steps, and manual publish fallback
20
+
21
+ ## [2.0.1] - 2026-03-13
22
+
23
+ ### Improved
24
+
25
+ - refined package metadata and publishing provenance for the forked JSR distribution
26
+
5
27
  ## [2.0.0] - 2026-03-13
6
28
 
7
29
  > First fork release of `kyaukyuai/linear-cli`.
@@ -434,7 +456,9 @@
434
456
  - 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
435
457
  - 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`
436
458
 
437
- [Unreleased]: https://github.com/kyaukyuai/linear-cli/compare/v2.0.0...HEAD
459
+ [Unreleased]: https://github.com/kyaukyuai/linear-cli/compare/v2.1.0...HEAD
460
+ [2.1.0]: https://github.com/kyaukyuai/linear-cli/compare/v2.0.1...v2.1.0
461
+ [2.0.1]: https://github.com/kyaukyuai/linear-cli/compare/v2.0.0...v2.0.1
438
462
  [2.0.0]: https://github.com/kyaukyuai/linear-cli/compare/v1.11.1...v2.0.0
439
463
  [1.11.1]: https://github.com/schpet/linear-cli/compare/v1.11.0...v1.11.1
440
464
  [1.11.0]: https://github.com/schpet/linear-cli/compare/v1.10.0...v1.11.0
package/README.md CHANGED
@@ -91,6 +91,8 @@ compared to upstream, this fork adds and maintains several capabilities aimed at
91
91
 
92
92
  - cycle workflows beyond listing and viewing, including `cycle current`, `cycle next`, `cycle create`, `cycle add`, and `cycle remove`
93
93
  - issue workflow commands for `search`, `assign`, `move`, `priority`, `estimate`, `label add/remove`, comment delete, relations, and attachments
94
+ - inbox notification commands for `list`, `count`, `read`, and `archive`
95
+ - webhook commands for `list`, `view`, `create`, `update`, and `delete`
94
96
  - JSON output for scripting across issue, cycle, project, and document commands
95
97
  - workspace-aware auth management with keyring migration and default workspace support
96
98
  - generated AI-agent skill docs, Claude plugin metadata, npm publishing, and Homebrew tap release plumbing
@@ -235,6 +237,33 @@ linear document delete <slug> --permanent # permanent delete
235
237
  linear document delete --bulk <slug1> <slug2> # bulk delete
236
238
  ```
237
239
 
240
+ ### notification commands
241
+
242
+ manage your Linear inbox from the command line with a primitive GraphQL-aligned surface.
243
+
244
+ ```bash
245
+ linear notification list # list recent notifications
246
+ linear notification list --unread # show only unread notifications
247
+ linear notification count # show unread notification count
248
+ linear notification read <notificationId> # mark a notification as read
249
+ linear notification archive <notificationId> # archive a notification
250
+ linear notification list --json # output as JSON
251
+ ```
252
+
253
+ ### webhook commands
254
+
255
+ manage Linear webhooks with a primitive GraphQL-aligned surface.
256
+
257
+ ```bash
258
+ linear webhook list
259
+ linear webhook list --team ENG
260
+ linear webhook view <webhookId>
261
+ linear webhook create --url https://example.com/linear --resource-types Issue,Comment
262
+ linear webhook update <webhookId> --disabled
263
+ linear webhook delete <webhookId> --yes
264
+ linear webhook list --json
265
+ ```
266
+
238
267
  ### other commands
239
268
 
240
269
  ```bash
@@ -298,6 +327,10 @@ view the skill at [skills.sh/kyaukyuai/linear-cli/linear-cli](https://skills.sh/
298
327
 
299
328
  ## development
300
329
 
330
+ ### release operations
331
+
332
+ maintainer release and publish recovery steps are documented in [docs/release-runbook.md](docs/release-runbook.md).
333
+
301
334
  ### updating skill documentation
302
335
 
303
336
  the skill documentation in `skills/linear-cli/` is automatically generated from the CLI help text. after making changes to commands or help text, regenerate the docs:
@@ -23,7 +23,7 @@
23
23
  "hasInstallScript": true,
24
24
  "license": "MIT",
25
25
  "name": "@kyaukyuai/linear-cli",
26
- "version": "2.0.0"
26
+ "version": "2.1.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.0.0"
545
+ "version": "2.1.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.0.0"
3
+ "https://github.com/kyaukyuai/linear-cli/releases/download/v2.1.0"
4
4
  ],
5
5
  "bin": {
6
6
  "linear": "run-linear.js"
@@ -12,7 +12,7 @@
12
12
  "detect-libc": "^2.1.2",
13
13
  "rimraf": "^6.1.3"
14
14
  },
15
- "description": "CLI tool for linear.app that uses git branch names and directory names to open issues and team pages",
15
+ "description": "Git-first Linear CLI with workspace-aware auth, issue workflows, and automation-friendly JSON output",
16
16
  "devDependencies": {
17
17
  "prettier": "^3.8.1"
18
18
  },
@@ -85,7 +85,7 @@
85
85
  "zipExt": ".tar.xz"
86
86
  }
87
87
  },
88
- "version": "2.0.0",
88
+ "version": "2.1.0",
89
89
  "volta": {
90
90
  "node": "18.14.1",
91
91
  "npm": "9.5.0"