@easonwumac/computer-linker 0.1.7 → 0.1.8
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 +11 -0
- package/docs/release-checklist.md +1 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,17 @@ All notable changes to Computer Linker will be documented in this file.
|
|
|
5
5
|
This project follows a small pre-1.0 changelog: breaking contract changes are
|
|
6
6
|
called out even when the package version is still `0.x`.
|
|
7
7
|
|
|
8
|
+
## 0.1.8 - 2026-06-27
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- Public release audit now scans tracked files, packed files, and Git history
|
|
13
|
+
for npm access-token shaped values before publishing.
|
|
14
|
+
- Public release audit now labels tracked, untracked, and packed-file findings
|
|
15
|
+
separately so release failures point at the right source.
|
|
16
|
+
- Release validation now locks the npm access-token audit rule and release
|
|
17
|
+
checklist wording so the public gate cannot silently regress.
|
|
18
|
+
|
|
8
19
|
## 0.1.7 - 2026-06-27
|
|
9
20
|
|
|
10
21
|
### Changed
|
|
@@ -132,8 +132,7 @@ so it reports both final blockers in one place before `public:mirror`.
|
|
|
132
132
|
|
|
133
133
|
This adds the public-release audit: packed-file inspection, tracked and
|
|
134
134
|
non-ignored untracked file secret-shape scanning, production `npm audit`,
|
|
135
|
-
dependency license allowlist checks, third-party provenance marker scanning,
|
|
136
|
-
retired product-name marker scanning, and a high-risk Git history secret scan.
|
|
135
|
+
dependency license allowlist checks, npm access-token scanning, third-party provenance marker scanning, retired product-name marker scanning, and a high-risk Git history secret scan.
|
|
137
136
|
|
|
138
137
|
Before changing the current GitHub repository to public visibility while
|
|
139
138
|
preserving its Git history, run the stricter one-command gate:
|