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
No 0.3.1. Users doing npm install @aictrl/cli@0.3.1 get npm error 404 Not Found.
Why
The publish workflow failed in 18s on 2026-04-03 with the same MODULE_NOT_FOUND: promise-retry bug that bit us today (run 23961886096). Nobody noticed because nothing pages on a failed release workflow.
Root cause and permanent fix landed in #49. But the ghost v0.3.1 state is still there and will confuse anyone who looks at release history or tries to install a specific version.
Impact
Anyone following the CHANGELOG thinks GLM-5.1 support shipped in 0.3.1 and wonders why npm install @aictrl/cli@0.3.1 404s
Version history looks broken: 0.2.0 → 0.3.0 → 0.3.2 with a phantom 0.3.1
Options
Delete the v0.3.1 git tag and GitHub release. Cleanest for new eyes — there's just no 0.3.1 in the history. Downside: destroys the historical record that it was attempted. Also some external systems (changelogs, feed readers) may have already indexed it.
Edit the v0.3.1 release body to add a "⚠️ NEVER PUBLISHED" banner pointing users at 0.3.2. Leaves the historical record intact. Downside: npm install @aictrl/cli@0.3.1 still 404s — we can't retroactively fix npm.
Re-publish v0.3.1 to npm by cutting a new release tag pointing at the old commit. Downside: the old commit predates the optionalDependencies fix from fix: refresh platform binary optionalDependencies on every release #46, so it would re-ship the broken @aictrl/cli-linux-x64: 0.2.0 pin that we just fixed. This is the wrong choice. Do not do it.
Recommend option 2 — keeps history honest without actively misleading anyone.
Suggested banner
> ⚠️ **This release was never actually published to npm.**> The publish workflow failed with a `MODULE_NOT_FOUND: promise-retry` error> caused by [npm/cli#9008](https://github.com/npm/cli/pull/9008), which> silently broke the release pipeline. The GLM-5.1 support intended for> this release ships in [v0.3.2](https://github.com/aictrl-dev/cli/releases/tag/v0.3.2),> which also contains the platform binary `optionalDependencies` fix from #46> and the workflow fix from #49.
Context
While investigating the v0.3.2 release today, I confirmed that
@aictrl/cli@0.3.1was never actually published to npm, even though:v0.3.1git tag exists onmainchore: bump @aictrl/cli to 0.3.1commit was mergedBut:
No 0.3.1. Users doing
npm install @aictrl/cli@0.3.1getnpm error 404 Not Found.Why
The publish workflow failed in 18s on 2026-04-03 with the same
MODULE_NOT_FOUND: promise-retrybug that bit us today (run 23961886096). Nobody noticed because nothing pages on a failed release workflow.Root cause and permanent fix landed in #49. But the ghost v0.3.1 state is still there and will confuse anyone who looks at release history or tries to install a specific version.
Impact
npm install @aictrl/cli@0.3.1404s0.2.0 → 0.3.0 → 0.3.2with a phantom 0.3.1Options
npm install @aictrl/cli@0.3.1still 404s — we can't retroactively fix npm.optionalDependenciesfix from fix: refresh platform binary optionalDependencies on every release #46, so it would re-ship the broken@aictrl/cli-linux-x64: 0.2.0pin that we just fixed. This is the wrong choice. Do not do it.Recommend option 2 — keeps history honest without actively misleading anyone.
Suggested banner
Related