llmnav 0.5.1 → 0.5.2

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 CHANGED
@@ -6,6 +6,14 @@ The npm package follows Semantic Versioning. The `llmnav/N` source protocol is v
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [0.5.2] — 2026-08-09
10
+
11
+ ### Fixed
12
+
13
+ * Made tag publication idempotent only when the existing npm tarball integrity matches the tagged package.
14
+ * Kept Trusted Publisher OIDC releases compatible with a private source repository by disabling unsupported provenance generation.
15
+ * Aligned the package author and MIT copyright holder with the public `0disoft` identity.
16
+
9
17
  ## [0.5.1] — 2026-08-09
10
18
 
11
19
  ### Added
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2026 제로디
3
+ Copyright (c) 2026 0disoft
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -36,7 +36,7 @@ Generated paths, signatures, callers, references, timestamps, and hashes are nev
36
36
  {
37
37
  "schemaVersion": 1,
38
38
  "specVersion": "1",
39
- "generatedBy": "llmnav@0.5.1",
39
+ "generatedBy": "llmnav@0.5.2",
40
40
  "repositoryId": "example",
41
41
  "contractFingerprints": {
42
42
  "schemaVersion": 1,
package/docs/migration.md CHANGED
@@ -7,7 +7,7 @@ No source-card migration is required. Keep every `llmnav/1` comment and the exis
7
7
  Upgrade and regenerate:
8
8
 
9
9
  ```sh
10
- npm install --save-dev llmnav@^0.5.1
10
+ npm install --save-dev llmnav@^0.5.2
11
11
  npx llmnav init --agents all
12
12
  npx llmnav generate
13
13
  npx llmnav doctor
@@ -31,11 +31,11 @@ npm run release:check
31
31
 
32
32
  ## 3. Configure npm authentication
33
33
 
34
- The supplied release workflow uses npm provenance and GitHub's OIDC token. In npm package settings, configure the GitHub repository and `.github/workflows/release.yml` as a trusted publisher.
34
+ The supplied release workflow uses GitHub's OIDC token through npm Trusted Publishers. The GitHub source repository is private, so the workflow explicitly disables provenance; npm accepts provenance only from public source repositories. If the repository becomes public, enable provenance in both `package.json` and the workflow after a successful release check.
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
 
38
- A classic or granular access token can be used for a manual first publication. Do not commit `.npmrc` credentials or an npm token.
38
+ A classic or granular access token can be used for a manual first publication. Do not commit `.npmrc` credentials or an npm token. npm may still require browser-backed two-factor authentication.
39
39
 
40
40
  ## 4. Validate the exact package payload
41
41
 
@@ -55,17 +55,17 @@ Manual publication:
55
55
 
56
56
  ```sh
57
57
  npm login
58
- npm publish --provenance --access public
58
+ npm publish --provenance=false --access public
59
59
  ```
60
60
 
61
61
  Automated publication:
62
62
 
63
63
  ```sh
64
- git tag v0.5.1
65
- git push origin v0.5.1
64
+ git tag v0.5.2
65
+ git push origin v0.5.2
66
66
  ```
67
67
 
68
- The release workflow rejects a tag that does not match `package.json`.
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.
69
69
 
70
70
  ## 6. Verify from a clean directory
71
71
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "llmnav",
3
- "version": "0.5.1",
3
+ "version": "0.5.2",
4
4
  "description": "A deterministic semantic navigation layer for LLM coding agents.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -60,7 +60,7 @@
60
60
  "cli",
61
61
  "lint"
62
62
  ],
63
- "author": "제로디",
63
+ "author": "0disoft",
64
64
  "license": "MIT",
65
65
  "repository": {
66
66
  "type": "git",
@@ -74,6 +74,6 @@
74
74
  "types": "./src/index.d.ts",
75
75
  "publishConfig": {
76
76
  "access": "public",
77
- "provenance": true
77
+ "provenance": false
78
78
  }
79
79
  }
package/src/spec.js CHANGED
@@ -1,4 +1,4 @@
1
- export const PACKAGE_VERSION = "0.5.1";
1
+ export const PACKAGE_VERSION = "0.5.2";
2
2
  export const SPEC_VERSION = "1";
3
3
 
4
4
  export const SCOPES = Object.freeze(["file", "module", "symbol"]);