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
Fixes the npm dist-tag handling that left `latest` on 0.1.0-alpha.0, so
the documented `npx @nanocollective/sentinel init` installed the first
alpha instead of the current one.
Pre-1.0 every release is a prerelease and publishes under `alpha`, which
never claims `latest`. The workflow now moves `latest` onto each new
prerelease while no stable version exists; once 0.1.0 ships,
`npm publish --tag latest` claims the tag and the step stops firing.
The version check also no longer resolves `npm view … version` (the
`latest` tag, which was the thing lagging). It reads the full published
list instead, so an already-published version cannot be reported as new
and the release compare link points at the right previous version.
No changes to Sentinel itself.
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: package.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
{
2
2
"name": "@nanocollective/sentinel",
3
-
"version": "0.1.0-alpha.2",
3
+
"version": "0.1.0-alpha.3",
4
4
"description": "An installable, Nanocoder-driven workflow that runs continuous, configurable security and code audits across a GitHub organisation's repositories and files findings as issues.",
0 commit comments