Skip to content

Commit 4a0df0b

Browse files
committed
chore(release): 0.2.6
1 parent 407e5f4 commit 4a0df0b

4 files changed

Lines changed: 27 additions & 11 deletions

File tree

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,22 @@ changes bump the minor (until 1.0).
55

66
## [Unreleased]
77

8+
## [0.2.6] - 2026-06-16
9+
10+
### Fixed
11+
12+
- **Daemon no longer inflates symbol and orphan counts over its lifetime.** The
13+
on-demand heal path re-extracted changed files with a bare `extractor.extract`
14+
that never removed the file's existing nodes; because `insert_node` always
15+
allocates a fresh id, every heal duplicated the file's symbols, accumulating
16+
edge-less phantom orphans. A daemon-served graph therefore drifted away from a
17+
clean in-process build the longer it ran (e.g. `orphans` reporting 933 vs the
18+
true 177 on a 921-file Spring monorepo). The heal loop now shares the surgical
19+
single-file reindex used by the `reindex` IPC fast-path
20+
(`reindex_file_in_place_core`: remove the file's old nodes, re-extract, re-link
21+
cross-file edges), which is idempotent on an unchanged file — so repeated heals
22+
leave the graph's symbol and edge counts stable.
23+
824
## [0.2.5] - 2026-06-16
925

1026
### Performance

Cargo.lock

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ members = [
1313
resolver = "2"
1414

1515
[workspace.package]
16-
version = "0.2.5"
16+
version = "0.2.6"
1717
edition = "2021"
1818
authors = ["CoreGraph Contributors"]
1919
license = "MIT"

vscode-extension/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"displayName": "CoreGraph",
44
"description": "Cross-language code intelligence backed by the coregraph CLI (LSP bridge).",
55
"publisher": "coregraph",
6-
"version": "0.2.5",
6+
"version": "0.2.6",
77
"license": "MIT",
88
"repository": {
99
"type": "git",

0 commit comments

Comments
 (0)