Skip to content
Merged
Show file tree
Hide file tree
Changes from 18 commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
9feb7bc
fix: terminate call-graph alias fixpoint on oscillating rebinds
mldangelo May 22, 2026
467e66b
Merge remote-tracking branch 'origin/main' into mdangelo/codex/review…
mldangelo-oai May 22, 2026
cebd962
fix: preserve propagation when bounding alias cycles
mldangelo-oai May 22, 2026
d78c997
fix: bound assignment alias propagation work
mldangelo-oai May 22, 2026
26655ad
fix: fail closed on cyclic alias propagation
mldangelo-oai May 22, 2026
cbbbd10
fix: converge stable alias rebind states
mldangelo-oai May 22, 2026
21fcf1a
Merge remote-tracking branch 'origin/main' into mdangelo/codex/review…
mldangelo-oai May 23, 2026
c617e8e
fix: preserve findings on incomplete call-graph analysis
mldangelo-oai May 23, 2026
3572995
fix: preserve startup-hook findings on analysis limits
mldangelo-oai May 23, 2026
42e7702
Merge remote-tracking branch 'origin/main' into mdangelo/codex/review…
mldangelo-oai May 23, 2026
3acc6a8
fix: fail closed on conditional alias rebinding
mldangelo-oai May 23, 2026
f670f86
fix: retain aliases and findings across analysis limits
mldangelo-oai May 23, 2026
dbcdffb
fix: preserve deterministic loop-else alias results
mldangelo-oai May 23, 2026
6cd7de3
fix: track ambiguous alias reads before overwrites
mldangelo-oai May 23, 2026
78eb56d
fix: fail closed during torch reference filtering
mldangelo-oai May 23, 2026
e37bce1
fix: preserve findings across alias ambiguity limits
mldangelo-oai May 23, 2026
8f2c0b4
fix: propagate ambiguous aliases in installed packages
mldangelo-oai May 23, 2026
183869a
fix: preserve deterministic alias findings across limits
mldangelo-oai May 23, 2026
95642a4
fix: resolve deterministic alias alternatives safely
mldangelo-oai May 23, 2026
2d00183
fix: retain deterministic aliases before epilogues
mldangelo-oai May 23, 2026
b054f0a
Merge remote-tracking branch 'origin/main' into mdangelo/codex/review…
mldangelo-oai May 23, 2026
8ca3b53
fix: track ambiguous alias calls before overwrites
mldangelo-oai May 23, 2026
3bbeb4d
test: stabilize generic zip raw-scan fixture
mldangelo-oai May 23, 2026
71925b1
fix: preserve same-line terminal alias ordering
mldangelo-oai May 23, 2026
06b7a3c
fix: resolve deterministic terminal alias branches
mldangelo-oai May 23, 2026
66049f2
fix: handle one-sided terminal alias paths
mldangelo-oai May 23, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- avoid repeatedly scanning sharded model families during directory scans
- keep shard sibling discovery within the requested scan root
- preserve per-shard metadata when aggregating sharded model families
- prevent picklescan call-graph alias cycles from hanging scans
- stop flagging a false-positive ONNX Python operator when tensor weight bytes coincidentally spell `PyOp`
- distinguish ASCII-serialized Torch7 artifacts from plain PyTorch source text

Expand Down
1 change: 1 addition & 0 deletions packages/modelaudit-picklescan/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ and this package adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Bug Fixes

- prevent call-graph alias cycles from hanging scans
- detect nested brace-format lookups that reach tracked `defaultdict` factories
- avoid `str.format` false positives when a `ChainMap` shadows a `defaultdict`
- block `statistics.quantiles` call-iterator consumption in call-graph analysis
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
CallGraphFinding,
StartupHookWriteFinding,
UnanalyzedCallGraphReference,
_CallGraphAnalysisLimitError,
find_dangerous_call_graphs,
find_startup_hook_write_call_graphs,
find_unanalyzed_callable_call_graph_references,
Expand Down Expand Up @@ -1012,6 +1013,9 @@ def _with_call_graph_findings(report: PickleReport) -> PickleReport:
with shared_source_sensitive_caches():
try:
call_graph_findings = find_dangerous_call_graphs(import_references, callable_invocations)
except _CallGraphAnalysisLimitError as error:
call_graph_findings = error.partial_findings
enrichment_errors.append(("python_call_graph", error))
except Exception as error:
call_graph_findings = ()
enrichment_errors.append(("python_call_graph", error))
Expand All @@ -1020,6 +1024,9 @@ def _with_call_graph_findings(report: PickleReport) -> PickleReport:
import_references,
callable_invocations,
)
except _CallGraphAnalysisLimitError as error:
startup_hook_write_findings = error.partial_startup_hook_write_findings
enrichment_errors.append(("python_call_graph_startup_hook_write", error))
except Exception as error:
startup_hook_write_findings = ()
enrichment_errors.append(("python_call_graph_startup_hook_write", error))
Expand Down
Loading
Loading