You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: add type annotations and CI workflow for type checking
- Add explicit type annotations to team-list.ts and project-list.ts to fix implicit any errors
- Add CI workflow (.github/workflows/ci.yml) that runs type check, format, lint, and tests on PRs
- Update justfile to use 'deno check src/main.ts' instead of '--all' to avoid npm dependency type errors
Copy file name to clipboardExpand all lines: CHANGELOG.md
+9-1Lines changed: 9 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,9 +2,15 @@
2
2
3
3
## [Unreleased]
4
4
5
+
## [1.9.0] - 2026-01-29
6
+
5
7
### Fixed
6
8
7
9
- Fix `--assignee self` to correctly resolve to current user ([#104](https://github.com/schpet/linear-cli/pull/104); thanks @JustTrott)
10
+
- add pagination to `project list` command ([#109](https://github.com/schpet/linear-cli/pull/109); thanks @andrew-kline)
11
+
- add pagination to `team list` command ([#107](https://github.com/schpet/linear-cli/pull/107); thanks @andrew-kline)
12
+
- error when `--workspace` flag specifies unknown workspace
13
+
-`--sort` flag now works correctly after interactive prompts ([#96](https://github.com/schpet/linear-cli/pull/96); thanks @paymog)
8
14
9
15
### Added
10
16
@@ -14,6 +20,7 @@
14
20
-`linear auth list` to show configured workspaces with org/user info
15
21
-`linear auth default` to set the default workspace
16
22
- global `-w, --workspace` flag to target a specific workspace by slug
23
+
-`--project` filter for `issue list` command ([#94](https://github.com/schpet/linear-cli/pull/94); thanks @paymog)
17
24
18
25
## [1.8.1] - 2026-01-23
19
26
@@ -353,7 +360,8 @@
353
360
- 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
354
361
- 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`
0 commit comments