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
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,21 @@
numbers: it preserves matching user-selected options, replaces engine-owned
fingerprint fields, and keeps original historical realizations immutable.

## 0.3.14 - 2026-08-14

- Allow `compass review` to reconcile either compared revision from any
reconstructable repository profile or preferred realization. Review now
replaces engine-owned fingerprint fields with the running contract, keeps
user-selected options aligned, and leaves historical realizations immutable;
persisted Compass release numbers are provenance rather than a compatibility
allowlist.

- Filter unshadowed JavaScript, TypeScript, Python, Go, Rust, Java, and Swift
built-in globals from call-target publication so constructors, coercion
helpers, language preludes, and common global methods do not become noisy
graph hubs. Source-proven local and imported declarations retain precedence,
and extraction semantics advance to v2 so cached graphs rebuild correctly.

## 0.3.13 - 2026-08-14

- Make `compass review` recover automatically when one compared revision still
Expand Down
64 changes: 32 additions & 32 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.13"
version = "0.3.14"
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.13" }
compass-model = { path = "../compass-model", version = "0.3.13" }
compass-ir = { path = "../compass-ir", version = "0.3.14" }
compass-model = { path = "../compass-model", version = "0.3.14" }
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.13" }
compass-model = { path = "../compass-model", version = "0.3.14" }

[dev-dependencies]
tempfile.workspace = true
Expand Down
48 changes: 24 additions & 24 deletions crates/compass-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,30 +35,30 @@ time.workspace = true
tokio.workspace = true
toml.workspace = true
ureq.workspace = true
compass-core = { path = "../compass-core", version = "0.3.13" }
compass-analysis = { path = "../compass-analysis", version = "0.3.13" }
compass-ir = { path = "../compass-ir", version = "0.3.13" }
compass-program = { path = "../compass-program", version = "0.3.13" }
compass-cypher = { path = "../compass-cypher", version = "0.3.13" }
compass-cargo = { path = "../compass-cargo", version = "0.3.13" }
compass-files = { path = "../compass-files", version = "0.3.13" }
compass-graph = { path = "../compass-graph", version = "0.3.13" }
compass-graphdb = { path = "../compass-graphdb", version = "0.3.13" }
compass-global = { path = "../compass-global", version = "0.3.13" }
compass-history = { path = "../compass-history", version = "0.3.13" }
compass-google-workspace = { path = "../compass-google-workspace", version = "0.3.13" }
compass-ingest = { path = "../compass-ingest", version = "0.3.13" }
compass-model = { path = "../compass-model", version = "0.3.13" }
compass-mcp = { path = "../compass-mcp", version = "0.3.13" }
compass-output = { path = "../compass-output", version = "0.3.13" }
compass-postgres = { path = "../compass-postgres", version = "0.3.13" }
compass-pr-intelligence = { path = "../compass-pr-intelligence", version = "0.3.13" }
compass-prs = { path = "../compass-prs", version = "0.3.13" }
compass-query = { path = "../compass-query", version = "0.3.13" }
compass-store = { path = "../compass-store", version = "0.3.13" }
compass-reflect = { path = "../compass-reflect", version = "0.3.13" }
compass-semantic = { path = "../compass-semantic", version = "0.3.13" }
compass-semantic-diff = { path = "../compass-semantic-diff", version = "0.3.13" }
compass-core = { path = "../compass-core", version = "0.3.14" }
compass-analysis = { path = "../compass-analysis", version = "0.3.14" }
compass-ir = { path = "../compass-ir", version = "0.3.14" }
compass-program = { path = "../compass-program", version = "0.3.14" }
compass-cypher = { path = "../compass-cypher", version = "0.3.14" }
compass-cargo = { path = "../compass-cargo", version = "0.3.14" }
compass-files = { path = "../compass-files", version = "0.3.14" }
compass-graph = { path = "../compass-graph", version = "0.3.14" }
compass-graphdb = { path = "../compass-graphdb", version = "0.3.14" }
compass-global = { path = "../compass-global", version = "0.3.14" }
compass-history = { path = "../compass-history", version = "0.3.14" }
compass-google-workspace = { path = "../compass-google-workspace", version = "0.3.14" }
compass-ingest = { path = "../compass-ingest", version = "0.3.14" }
compass-model = { path = "../compass-model", version = "0.3.14" }
compass-mcp = { path = "../compass-mcp", version = "0.3.14" }
compass-output = { path = "../compass-output", version = "0.3.14" }
compass-postgres = { path = "../compass-postgres", version = "0.3.14" }
compass-pr-intelligence = { path = "../compass-pr-intelligence", version = "0.3.14" }
compass-prs = { path = "../compass-prs", version = "0.3.14" }
compass-query = { path = "../compass-query", version = "0.3.14" }
compass-store = { path = "../compass-store", version = "0.3.14" }
compass-reflect = { path = "../compass-reflect", version = "0.3.14" }
compass-semantic = { path = "../compass-semantic", version = "0.3.14" }
compass-semantic-diff = { path = "../compass-semantic-diff", version = "0.3.14" }
url.workspace = true

[lints]
Expand Down
Loading