@clear-capabilities/agentic-security-scanner 0.139.0 → 0.139.1

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +40 -0
  2. package/package.json +11 -2
package/CHANGELOG.md CHANGED
@@ -9,6 +9,46 @@
9
9
  > make the history less accurate, not more.
10
10
 
11
11
 
12
+ ## 0.139.1 — The same scanner, published with provenance
13
+
14
+ **The shipped artifact is functionally identical to 0.139.0.** Only two commits
15
+ separate them, and neither is in the published package: a test-harness timeout
16
+ (`test/` does not ship) and a dependency hold (`.dependency-holds.json` does not
17
+ ship). Nothing about how the scanner behaves has changed.
18
+
19
+ This release exists for one reason: **0.139.0 was published without a provenance
20
+ attestation.** It went out from a maintainer's laptop because the CI token
21
+ lacked write access on the scoped package, so every tag-triggered publish failed
22
+ at `PUT` with `E404` — after having already signed provenance to the Sigstore
23
+ transparency log. The token has been replaced and verified (a re-run now returns
24
+ `E403 "cannot publish over the previously published versions"`, which is the
25
+ registry authenticating the write and rejecting only the duplicate version), so
26
+ this is the first release published by CI with `--provenance`.
27
+
28
+ For a security scanner that argues its case on *provable, measurable,
29
+ reproducible*, "you can cryptographically verify this artifact was built from
30
+ this commit in this repository" is a product property rather than a formality.
31
+ Provenance is signed at publish time and cannot be retrofitted, which is why it
32
+ takes a version number rather than an amendment to the last one.
33
+
34
+ Fixes carried along, neither user-visible:
35
+
36
+ - **`test/audit-cli.test.js` budgeted 4 s for a CLI that takes ~2.7 s idle** — a
37
+ 1.5× margin in a suite that runs files concurrently. It failed as `status:
38
+ null` on a *different* test each run, was unreproducible in isolation, and
39
+ blocked a release push on a commit whose entire diff was 8 lines of JSON.
40
+ Now 30 s (~11× idle), still bounded so a genuinely hung CLI fails rather than
41
+ stalls.
42
+ - **`@types/vscode` is held rather than upgraded.** It declares the VS Code API
43
+ surface the extension compiles against and should track `engines.vscode` — the
44
+ *oldest* supported host — not the newest published types. Chasing latest lets
45
+ the extension compile against APIs absent from hosts it claims to support, and
46
+ that failure lands as a runtime `TypeError` in a user's editor. The hold
47
+ records a pre-existing mismatch (`engines ^1.95.0` vs types `^1.125.0`) for a
48
+ deliberate decision at review time, since narrowing the supported host range
49
+ is a product call, not a dependency bump.
50
+
51
+
12
52
  ## 0.139.0 — Two detectors that were dead, a confinement rule that was documented but unenforced, and a new Go rule
13
53
 
14
54
  Every defect in this release is the same shape: **a control that exists, is
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clear-capabilities/agentic-security-scanner",
3
- "version": "0.139.0",
3
+ "version": "0.139.1",
4
4
  "description": "Scanner engine for the agentic-security Claude Code plugin — SAST, SCA (function-level reachability + CISA KEV), secrets, IaC, prompt-injection, MCP/agent-tool audit, auth/authZ deep analysis, attack chains, PoC generation, business logic, toxic-combinations scoring, SBOM, pipeline integrity, compliance attestation, and more.",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
@@ -127,5 +127,14 @@
127
127
  "test:ci-parity": "CI=true GITHUB_ACTIONS=true node --test test/backward-default.test.js test/ci-parity.test.js test/container-taint.test.js test/deep-taint.test.js test/engine-recall.test.js test/engine-reconnect.test.js test/gate-verdict-cache.test.js test/ignore-pragma.test.js test/java-taint-flow.test.js test/kt-taint-flow.test.js test/py-annotation-sources.test.js test/runscan-deep-option.test.js test/sanitizer-typed-flow.test.js"
128
128
  },
129
129
  "author": "Ross Young <ross@clearcapabilities.com>",
130
- "license": "PolyForm-Internal-Use-1.0.0"
130
+ "license": "PolyForm-Internal-Use-1.0.0",
131
+ "repository": {
132
+ "type": "git",
133
+ "url": "git+https://github.com/Clear-Capabilities/agentic-security.git",
134
+ "directory": "scanner"
135
+ },
136
+ "homepage": "https://github.com/Clear-Capabilities/agentic-security#readme",
137
+ "bugs": {
138
+ "url": "https://github.com/Clear-Capabilities/agentic-security/issues"
139
+ }
131
140
  }