proofframe 0.4.0a3__tar.gz
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.
- proofframe-0.4.0a3/CHANGELOG.md +33 -0
- proofframe-0.4.0a3/Cargo.lock +1386 -0
- proofframe-0.4.0a3/Cargo.toml +57 -0
- proofframe-0.4.0a3/LICENSE +14 -0
- proofframe-0.4.0a3/PKG-INFO +314 -0
- proofframe-0.4.0a3/README-crates.md +108 -0
- proofframe-0.4.0a3/README.md +277 -0
- proofframe-0.4.0a3/SECURITY.md +47 -0
- proofframe-0.4.0a3/docs/testing.md +35 -0
- proofframe-0.4.0a3/examples/contract.json +10 -0
- proofframe-0.4.0a3/pyproject.toml +58 -0
- proofframe-0.4.0a3/python/proofframe/__init__.py +25 -0
- proofframe-0.4.0a3/python/proofframe/api.py +99 -0
- proofframe-0.4.0a3/python/proofframe/cli.py +65 -0
- proofframe-0.4.0a3/python/proofframe/py.typed +1 -0
- proofframe-0.4.0a3/src/error.rs +58 -0
- proofframe-0.4.0a3/src/lib.rs +1713 -0
- proofframe-0.4.0a3/src/pii.rs +170 -0
- proofframe-0.4.0a3/src/receipt.rs +209 -0
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## 0.4.0-alpha.3
|
|
4
|
+
|
|
5
|
+
- **Breaking:** the Rust API now returns a typed `ProofFrameError` (with `Arrow`, `Io`, `Regex`,
|
|
6
|
+
`Json`, `InvalidContract`, `MissingColumn`, `UnsupportedType`, `SchemaMismatch`, `DuplicateKey`,
|
|
7
|
+
`NoKeyColumns`, `CorruptData`, and `InvalidReceipt` variants) instead of `String`.
|
|
8
|
+
- Extended canonical fingerprinting to nested list, large-list, fixed-size-list, struct, and map
|
|
9
|
+
columns using recursive, domain-separated encodings so nested data no longer fails closed.
|
|
10
|
+
- Added a pinned golden fingerprint test plus batch-invariance and data-sensitivity property tests
|
|
11
|
+
that lock the `pf-fp-v1` contract.
|
|
12
|
+
- Documented the public Rust API: every exported type, field, and function now carries rustdoc,
|
|
13
|
+
and the `receipt` module has a module-level overview.
|
|
14
|
+
- Added a `documentation` link to crate metadata.
|
|
15
|
+
- Unpinned the `roaring` dependency and trimmed the published crate to Rust sources.
|
|
16
|
+
|
|
17
|
+
## 0.4.0-alpha.2
|
|
18
|
+
|
|
19
|
+
- Added `pf-fp-v1` canonical proof fingerprints that do not depend on Arrow display formatting.
|
|
20
|
+
- Added disk-backed exact keyed diffs with hash partitions and changed-column evidence.
|
|
21
|
+
- Added privacy-preserving PII findings, leakage checks, and signed proof receipts.
|
|
22
|
+
- Added full-vs-fast differential Proptest coverage for validation verdict drift.
|
|
23
|
+
- Added explicit `violation_count`/`truncated` validation reporting so bounded finding examples
|
|
24
|
+
cannot hide contract failures.
|
|
25
|
+
- Hardened diff keys with canonical binary composite-key tuples and full schema signatures.
|
|
26
|
+
- Added CLI exit codes for valid data, contract violations, input/config errors, and internal
|
|
27
|
+
failures.
|
|
28
|
+
- Hardened release gates with `#![forbid(unsafe_code)]`, Clippy warnings-as-errors, coverage gates,
|
|
29
|
+
`cargo package`, and cross-platform wheel builds.
|
|
30
|
+
|
|
31
|
+
## 0.4.0-alpha.1
|
|
32
|
+
|
|
33
|
+
- Initial 0.4 alpha with Arrow-native profiling, contracts, Python API, CLI, and benchmark harness.
|