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
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.0.74] - 2026-05-01

### Fixed

- **MCP session keep_alive timeout removed**: the previous 30-minute idle timeout
was killing sessions mid-working-day. Sessions now live until TCP dies, which
is the correct behaviour for a local single-user long-running serve process.

## [1.0.72] - 2026-05-01

First stable release of codesearch — a Rust-based hybrid (vector + BM25 + AST)
code search MCP server, optimised for AI coding agents working across many
repositories.
Expand Down Expand Up @@ -79,4 +89,6 @@ repositories.
- `codesearch serve` keeps one writer per database (LMDB invariant). Concurrent
reindex from a second process is rejected.

[Unreleased]: https://github.com/flupkede/codesearch/compare/master...develop
[Unreleased]: https://github.com/flupkede/codesearch/compare/v1.0.74...develop
[1.0.74]: https://github.com/flupkede/codesearch/compare/v1.0.72...v1.0.74
[1.0.72]: https://github.com/flupkede/codesearch/releases/tag/v1.0.72
2 changes: 1 addition & 1 deletion 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
@@ -1,6 +1,6 @@
[package]
name = "codesearch"
version = "1.0.74"
version = "1.0.75"
edition = "2021"
authors = ["codesearch contributors"]
license = "Apache-2.0"
Expand Down