Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,28 @@
numbers: it preserves matching user-selected options, replaces engine-owned
fingerprint fields, and keeps original historical realizations immutable.

## 0.3.16 - 2026-08-18

- Refactor universal evidence around explicit producer and pipeline lifecycles,
with typed `Qualifying`/`Qualified` states, renamed envelope fields, and
versioned schema/extraction semantics that rebuild pre-refactor caches safely.

- Hard-cut Ruby production extraction onto the version-1 universal evidence
pipeline with a Rails universal pack, exact ownership and member resolution,
bounded qualification, and fail-closed handling for dynamic dispatch, load,
and eval forms.

- Publish bounded, typed graph blind-spot evidence in reports, orientation,
MCP, and history comparisons, retaining witnesses, multiplicity, omission
counts, and explicit limits instead of inferring missing relationships.

- Preserve PHP closures and arrow functions as callable nodes, publish exact
trait composition as `mixes_in`, and canonicalize portable file identities
before graph coalescing so sparse evidence cannot collide.

- Harden CLI help and export contracts and improve pull-request review
readability with clearer bounded reports and contract coverage.

## 0.3.15 - 2026-08-15

- Hard-cut Kotlin onto the version-1 universal evidence adapter with bounded
Expand Down
68 changes: 34 additions & 34 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ resolver = "3"
exclude = ["fuzz", "vendor/gemm-common"]

[workspace.package]
version = "0.3.15"
version = "0.3.16"
edition = "2024"
rust-version = "1.97"
license = "MIT OR Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions crates/compass-analysis/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ keywords.workspace = true
categories.workspace = true

[dependencies]
compass-ir = { path = "../compass-ir", version = "0.3.15" }
compass-model = { path = "../compass-model", version = "0.3.15" }
compass-ir = { path = "../compass-ir", version = "0.3.16" }
compass-model = { path = "../compass-model", version = "0.3.16" }
rayon.workspace = true
serde.workspace = true
sha2.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/compass-cargo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ glob.workspace = true
serde_json.workspace = true
thiserror.workspace = true
toml.workspace = true
compass-model = { path = "../compass-model", version = "0.3.15" }
compass-model = { path = "../compass-model", version = "0.3.16" }

[dev-dependencies]
tempfile.workspace = true
Expand Down
Loading
Loading