open-local-audit 0.51.0 → 0.53.0

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
@@ -2,6 +2,17 @@
2
2
 
3
3
  All notable changes to Open Local Audit will be documented here.
4
4
 
5
+ ## v0.53.0 - 2026-07-05
6
+
7
+ - Added `contact-confidence-desc`, `priority-desc`, and `source-asc` sort modes to `shortlist --sort`.
8
+ - Kept shortlist sorting local-only with no source CSV mutation, review CSV mutation, API calls, outreach sending, or CRM sync.
9
+
10
+ ## v0.52.0 - 2026-07-04
11
+
12
+ - Added a fresh consumer install audit to `npm run release-check`.
13
+ - Verified release tarballs install as the current package version before publish.
14
+ - Kept the release gate local and dependency-free by using npm and Node standard library only.
15
+
5
16
  ## v0.51.0 - 2026-07-03
6
17
 
7
18
  - Added `review --stale-before YYYY-MM-DD` for read-only stale review counts in local review CSV summaries.
package/README.md CHANGED
@@ -48,6 +48,8 @@ npm run build
48
48
  npm run release-check
49
49
  ```
50
50
 
51
+ `release-check` also packs the package, installs it into a temporary consumer project, verifies the published package version can be resolved, and runs `npm audit --omit=dev` in that consumer project.
52
+
51
53
  Run the CLI locally:
52
54
 
53
55
  ```bash
@@ -406,4 +408,4 @@ Example report artifacts are available under [`examples/reports`](./examples/rep
406
408
 
407
409
  ## Releases
408
410
 
409
- Open Local Audit is published under the MIT license on GitHub and npm. Release history is available in [CHANGELOG.md](./CHANGELOG.md) and GitHub Releases. Every release runs lint, tests, build, audit, and package-content checks through GitHub Actions.
411
+ Open Local Audit is published under the MIT license on GitHub and npm. Release history is available in [CHANGELOG.md](./CHANGELOG.md) and GitHub Releases. Every release runs lint, tests, build, audit, package-content checks, and a fresh consumer install audit through GitHub Actions.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "open-local-audit",
3
- "version": "0.51.0",
3
+ "version": "0.53.0",
4
4
  "description": "Open-source website and local presence auditor for small businesses.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -18,8 +18,9 @@
18
18
  ],
19
19
  "scripts": {
20
20
  "build": "tsc -p tsconfig.build.json",
21
+ "fresh-install-check": "node scripts/fresh-install-check.mjs",
21
22
  "lint": "tsc -p tsconfig.json --noEmit",
22
- "release-check": "npm run lint && npm test && npm run build && npm audit && npm pack --dry-run",
23
+ "release-check": "npm run lint && npm test && npm run build && npm audit && npm pack --dry-run && npm run fresh-install-check",
23
24
  "test": "vitest run",
24
25
  "start": "tsx src/cli.ts"
25
26
  },