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
30 changes: 16 additions & 14 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,6 @@

## Unreleased

- Harden Markdown intelligence within `compass.graph/1`. Pipe tables retain
table, header, row, and cell nodes while gaining stable semantic identities,
header-qualified labels, exact cell-owned references, bounded per-table
extraction, and topology-aware containment handling. Nested YAML frontmatter
now publishes exact source-backed config-key hierarchies with stable escaped
paths, conservative semantic labels, bounded parsing, and fail-closed unsafe
syntax handling. Published document nodes remain graph-v1 resources; no graph
schema migration is required.

- Make community detail graphs easier to scan in both exported HTML and VS
Code by grouping node kinds into accessible color-and-shape families,
coloring edges by relationship purpose while retaining confidence strokes,
and showing a compact legend for the categories present in the subgraph.

- Refactor universal language metadata around `UniversalEvidenceProducer` and
`UniversalEvidencePipeline`. `UniversalCandidate`/`UniversalComplete` are
now the clearer lifecycle states `Qualifying`/`Qualified`; the serialized
Expand Down Expand Up @@ -72,6 +58,22 @@
numbers: it preserves matching user-selected options, replaces engine-owned
fingerprint fields, and keeps original historical realizations immutable.

## 0.3.22 - 2026-08-27

- Harden Markdown intelligence within `compass.graph/1`. Pipe tables retain
table, header, row, and cell nodes while gaining stable semantic identities,
header-qualified labels, exact cell-owned references, bounded per-table
extraction, and topology-aware containment handling. Nested YAML frontmatter
now publishes exact source-backed config-key hierarchies with stable escaped
paths, conservative semantic labels, bounded parsing, and fail-closed unsafe
syntax handling. Published document nodes remain graph-v1 resources; no graph
schema migration is required.

- Improve exported HTML and VS Code graph inspectors with deterministic incoming
and outgoing relationship groups, relationship summaries, direction counts,
neighbor focus controls, and clearer icon-backed Callers, Callees, and Impact
actions while preserving accessible labels and stable ordering.

## 0.3.21 - 2026-08-25

- Add source-proven Python graph intelligence with artifact-only SCIP
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 @@ -40,7 +40,7 @@ resolver = "3"
exclude = ["fuzz", "vendor/gemm-common"]

[workspace.package]
version = "0.3.21"
version = "0.3.22"
edition = "2024"
rust-version = "1.97"
license = "MIT OR Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions crates/compass-agent-graph/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-model = { path = "../compass-model", version = "0.3.21" }
compass-store = { path = "../compass-store", version = "0.3.21" }
compass-model = { path = "../compass-model", version = "0.3.22" }
compass-store = { path = "../compass-store", version = "0.3.22" }
serde.workspace = true
serde_json.workspace = true
sha2.workspace = true
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.21" }
compass-model = { path = "../compass-model", version = "0.3.21" }
compass-ir = { path = "../compass-ir", version = "0.3.22" }
compass-model = { path = "../compass-model", version = "0.3.22" }
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.21" }
compass-model = { path = "../compass-model", version = "0.3.22" }

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