|
|
@@ -9,6 +9,9 @@ and adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
|
|
|
|
## [Unreleased]
|
|
|
|
|
|
+
|
|
|
+## [1.0.1] - 2026-06-13
|
|
|
+
|
|
|
### New Features
|
|
|
|
|
|
- New `codegraph daemon` command (alias `daemons`) — an interactive manager for the background daemons. It shows what's running (your current project's daemon first, pre-selected), and you arrow-key to one and press enter to stop it, or pick "Stop all". Previously the only way to shut a daemon down was to hunt for its pid and `kill` it by hand. (#845)
|
|
|
@@ -24,7 +27,6 @@ and adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
|
- The CodeGraph MCP server no longer risks getting stuck at 100% CPU after an unexpected internal error. Previously such an error was logged but the process was left running in a broken state, where it could spin a CPU core indefinitely and had to be killed by hand. The server now logs the error and exits cleanly, so a fresh one starts on the next request. Thanks @songhlc. (#850)
|
|
|
- CodeGraph no longer indexes your entire home directory by accident. Running the installer — or `codegraph init` / `codegraph index` — from your home folder or a filesystem root would index everything underneath it (caches, `Library`, every other project), producing a multi-gigabyte index and constant file-watching churn. CodeGraph now refuses these roots and points you at a specific project instead; pass `--force` if you genuinely mean to. (Combined with the macOS file-descriptor fix already in 1.0.0, this closes the report of a runaway watcher exhausting the system file limit.) Thanks @ligson. (#845)
|
|
|
|
|
|
-
|
|
|
## [1.0.0] - 2026-06-12
|
|
|
|
|
|
### Security
|
|
|
@@ -408,3 +410,4 @@ Thanks @andreinknv for the substantive draft this release was based on.
|
|
|
[0.9.8]: https://github.com/colbymchenry/codegraph/releases/tag/v0.9.8
|
|
|
[0.9.9]: https://github.com/colbymchenry/codegraph/releases/tag/v0.9.9
|
|
|
[1.0.0]: https://github.com/colbymchenry/codegraph/releases/tag/v1.0.0
|
|
|
+[1.0.1]: https://github.com/colbymchenry/codegraph/releases/tag/v1.0.1
|