llmnav 0.7.3 → 0.7.4
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 +6 -0
- package/docs/publishing.md +4 -4
- package/package.json +2 -2
- package/src/spec.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,12 @@ The npm package follows Semantic Versioning. The `llmnav/N` source protocol is v
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [0.7.4] — 2026-08-14
|
|
10
|
+
|
|
11
|
+
### Fixed
|
|
12
|
+
|
|
13
|
+
* Required npm provenance in package metadata, release validation, and the tag publication workflow so public Trusted Publisher releases fail closed if provenance is disabled.
|
|
14
|
+
|
|
9
15
|
## [0.7.3] — 2026-08-14
|
|
10
16
|
|
|
11
17
|
### Fixed
|
package/docs/publishing.md
CHANGED
|
@@ -31,7 +31,7 @@ npm run release:check
|
|
|
31
31
|
|
|
32
32
|
## 3. Configure npm authentication
|
|
33
33
|
|
|
34
|
-
The supplied release workflow uses GitHub's OIDC token through npm Trusted Publishers. The GitHub source repository
|
|
34
|
+
The supplied release workflow uses GitHub's OIDC token through npm Trusted Publishers. The public GitHub source repository enables provenance in both `package.json` and the workflow, and the release check fails if either surface disables it. The same tag workflow creates an idempotent GitHub Release only after the npm registry check or publication succeeds.
|
|
35
35
|
|
|
36
36
|
The workflow references a GitHub environment named `npm`. Create that environment for release protection, or remove the `environment` line when no environment gate is desired.
|
|
37
37
|
|
|
@@ -55,14 +55,14 @@ Manual publication:
|
|
|
55
55
|
|
|
56
56
|
```sh
|
|
57
57
|
npm login
|
|
58
|
-
npm publish --provenance
|
|
58
|
+
npm publish --provenance --access public
|
|
59
59
|
```
|
|
60
60
|
|
|
61
61
|
Automated publication:
|
|
62
62
|
|
|
63
63
|
```sh
|
|
64
|
-
git tag
|
|
65
|
-
git push origin
|
|
64
|
+
git tag vX.Y.Z
|
|
65
|
+
git push origin vX.Y.Z
|
|
66
66
|
```
|
|
67
67
|
|
|
68
68
|
The release workflow rejects a tag that does not match `package.json`. If the exact version is already present in npm, the workflow succeeds only when the registry tarball integrity matches the tagged package; a mismatched package fails closed. It then reuses an existing GitHub Release for the tag or creates one with generated release notes. Registry, GitHub API, and Release creation errors other than an expected missing Release fail the workflow.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "llmnav",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.4",
|
|
4
4
|
"description": "A deterministic semantic navigation layer for LLM coding agents.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -74,6 +74,6 @@
|
|
|
74
74
|
"types": "./src/index.d.ts",
|
|
75
75
|
"publishConfig": {
|
|
76
76
|
"access": "public",
|
|
77
|
-
"provenance":
|
|
77
|
+
"provenance": true
|
|
78
78
|
}
|
|
79
79
|
}
|
package/src/spec.js
CHANGED
|
@@ -10,7 +10,7 @@ rel=workflow>llmnav.rules.validate
|
|
|
10
10
|
stability=contract
|
|
11
11
|
*/
|
|
12
12
|
|
|
13
|
-
export const PACKAGE_VERSION = "0.7.
|
|
13
|
+
export const PACKAGE_VERSION = "0.7.4";
|
|
14
14
|
export const SPEC_VERSION = "1";
|
|
15
15
|
|
|
16
16
|
export const SCOPES = Object.freeze(["file", "module", "symbol"]);
|