Skip to content

Commit 2a21bb0

Browse files
VidGuiCodeclaude
andcommitted
Release v0.1.3
New commands and quality-of-life improvements: - plane upgrade: check for updates and self-upgrade via npm in one command - Update hint shown on splash banner when a newer version is available - plane issue delete / close / reopen: full issue lifecycle from the terminal - plane label create / delete: manage project labels - plane label add / remove: now accept names instead of raw UUIDs - plane module add: name and ref based, replacing raw-UUID assign command - plane comment delete: delete a comment by UUID - Env var support: PLANE_BASE_URL, PLANE_API_TOKEN, PLANE_WORKSPACE, PLANE_API_STYLE — no config file needed for CI and automation use Internal cleanup: - Removed legacy plane module assign (superseded by module add) - UUID regex extracted to a shared constant in resolvers.ts Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 39aa287 commit 2a21bb0

21 files changed

+197
-72
lines changed

CHANGELOG.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
# Changelog
22

3-
## Unreleased
3+
## 0.1.3
4+
5+
- Env var support: `PLANE_BASE_URL`, `PLANE_API_TOKEN`, `PLANE_WORKSPACE`, `PLANE_API_STYLE` — no config file needed in CI/automation
6+
- `plane issue delete` — delete an issue by ref
7+
- `plane issue close` / `plane issue reopen` — move to first completed/backlog state automatically
8+
- `plane label create <name> <color>` / `plane label delete <name>` — manage labels
9+
- `plane label add` / `plane label remove` — now accept names instead of raw UUIDs
10+
- `plane module add <issue> <module>` — name-based, consistent with `cycle add`
11+
- `plane comment delete <id> <issue>` — delete a comment by UUID
12+
- Removed legacy `plane module assign` (replaced by `plane module add`)
13+
- `plane upgrade` — check for updates and upgrade in one command
14+
- Update hint shown on `plane` splash when a newer version is available
15+
- Rebuilt and shipped updated `dist/`
416

517
## 0.1.2
618

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,12 @@ plane page get <id> # show a page's content
167167
plane state list # list workflow states with group and color
168168
```
169169

170+
### Upgrade
171+
172+
```bash
173+
plane upgrade # check for updates and upgrade to the latest version
174+
```
175+
170176
All commands accept `--workspace <slug>` and `--project <identifier>` flags to override active context without switching permanently. Most list commands accept `--json` for raw JSON output.
171177

172178
---

dist/cli.js

Lines changed: 11 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/cli.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/commands/module.d.ts.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/commands/module.js

Lines changed: 0 additions & 26 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)