@intentsolutions/audit-harness 1.2.0 → 1.2.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 +45 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,51 @@ _Nothing yet._
|
|
|
10
10
|
|
|
11
11
|
- **OTel event-name polish (iah-E07b/c).** The `agent.rollout.gate.evaluated` and `gate.decision.emitted` event names are already locked + tested on main (PRs #78, #81 per NORMATIVE `intent-eval-lab/000-docs/067-AT-SPEC`). Any further attribute-schema polish on those events is deferred to a routine v2.1 release rather than headlined here — it is additive telemetry refinement, not a 1.2.0 capability boundary.
|
|
12
12
|
|
|
13
|
+
## [1.2.2] - 2026-06-16
|
|
14
|
+
|
|
15
|
+
A patch release closing the polyglot publish loop. No CLI surface, runtime behavior,
|
|
16
|
+
or API boundary changes — only the release machinery moved. v1.2.1 published to npm
|
|
17
|
+
but failed PyPI (a twine bug) and crates.io (an account email-verification gate);
|
|
18
|
+
this release publishes all three registries cleanly.
|
|
19
|
+
|
|
20
|
+
### Fixed — PyPI publish (#92)
|
|
21
|
+
|
|
22
|
+
- **twine now uploads only built distributions, not the `.sigstore.json` bundles.** The
|
|
23
|
+
`publish-pypi` leg's `twine upload` call is scoped to `dist/*.whl dist/*.tar.gz`, so
|
|
24
|
+
the sigstore signature bundles emitted alongside the wheel + sdist are no longer
|
|
25
|
+
passed to twine (which rejected them and failed the v1.2.1 PyPI publish).
|
|
26
|
+
|
|
27
|
+
### Fixed — crates.io publish now active
|
|
28
|
+
|
|
29
|
+
- **crates.io publish goes live.** The account email-verification gate that blocked the
|
|
30
|
+
v1.2.1 crates.io publish is now resolved, so the `publish-crates` leg publishes on
|
|
31
|
+
this tag — closing the npm + PyPI + crates polyglot publish loop.
|
|
32
|
+
|
|
33
|
+
## [1.2.1] - 2026-06-16
|
|
34
|
+
|
|
35
|
+
A patch release: release-pipeline supply-chain hardening (polyglot signing) plus
|
|
36
|
+
dev-dependency bumps. No CLI surface, runtime behavior, or API boundary changes —
|
|
37
|
+
the published artifacts are byte-identical in behavior to 1.2.0; only the release
|
|
38
|
+
machinery and dev tooling moved.
|
|
39
|
+
|
|
40
|
+
### Changed — polyglot release signing wired into the publish pipeline (#90)
|
|
41
|
+
|
|
42
|
+
- **crates.io build-provenance attestation.** The `publish-crates` leg now emits a
|
|
43
|
+
GitHub build-provenance attestation for the published crate artifact, extending the
|
|
44
|
+
signed-supply-chain guarantee to the Rust distribution.
|
|
45
|
+
- **sigstore-python wheel + sdist signing.** The `publish-pypi` leg now signs the built
|
|
46
|
+
wheel and sdist with `sigstore-python` (keyless Fulcio OIDC + Rekor), so the PyPI
|
|
47
|
+
distribution carries verifiable provenance alongside the existing npm sigstore path.
|
|
48
|
+
- **crates.io publish is now active.** With `CARGO_REGISTRY_TOKEN` provisioned as a
|
|
49
|
+
repository secret, the `publish-crates` leg goes live on this tag — closing the
|
|
50
|
+
polyglot publish loop (npm + PyPI + crates.io all publish + sign from one tag).
|
|
51
|
+
|
|
52
|
+
### Changed — dev-dependency bumps
|
|
53
|
+
|
|
54
|
+
- Bump `eslint` from 9.39.4 to 10.5.0 (#71).
|
|
55
|
+
- Bump `jeremylongshore/intent-rollout-gate` GitHub Action pin (#86).
|
|
56
|
+
- Bump `crate-ci/typos` from 1.29.4 to 1.47.2 (#87).
|
|
57
|
+
|
|
13
58
|
## [1.2.0] - 2026-06-15
|
|
14
59
|
|
|
15
60
|
A minor release: the read-only "comprehensive audit, on any repo" brain (`classify` → `conform` → `audit` → `scan` → `currency`), the kernel-emitting evidence path (`emit-evidence` Evidence Bundle, E04), the provider credential gate (`cred-gate`, E08), shared vendorable lint configs (#85), and a golden-master fitness function — all additive, with the zero-runtime-dependency guarantee preserved.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@intentsolutions/audit-harness",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.2",
|
|
4
4
|
"description": "Deterministic test-enforcement harness — escape-scan, hash-pinning, CRAP, architecture checks, bias detection, Gherkin lint. Companion to the audit-tests and implement-tests Claude Code skills.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": "Jeremy Longshore <jeremy@intentsolutions.io>",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"@eslint/js": "^9.39.4",
|
|
49
|
-
"eslint": "^
|
|
49
|
+
"eslint": "^10.5.0",
|
|
50
50
|
"lefthook": "^1.13.6"
|
|
51
51
|
},
|
|
52
52
|
"publishConfig": {
|