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

## Unreleased

## 0.3.26 - 2026-09-15

- Make query failures and paths more trustworthy: exact-looking missing symbols
now return structured `no_match` signals across discovery and typed natural
queries; `compass path` requires exact endpoints, reports unreachable targets,
Expand All @@ -13,6 +15,9 @@
cursors to `compass.query.discovery-text-page/2`. Generic relationship words
no longer dominate discovery seeding.

- Update the Rust TLS dependency to 0.23.45 to address the security advisory
covered by the release branch.

## 0.3.25 - 2026-09-13

- Raise the immutable-history aggregate authoritative-evidence limit from
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.25"
version = "0.3.26"
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.25" }
compass-store = { path = "../compass-store", version = "0.3.25" }
compass-model = { path = "../compass-model", version = "0.3.26" }
compass-store = { path = "../compass-store", version = "0.3.26" }
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.25" }
compass-model = { path = "../compass-model", version = "0.3.25" }
compass-ir = { path = "../compass-ir", version = "0.3.26" }
compass-model = { path = "../compass-model", version = "0.3.26" }
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.25" }
compass-model = { path = "../compass-model", version = "0.3.26" }

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