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
91 changes: 91 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,96 @@
# Changelog

## v0.5.7 - 2026-09-01

### coordinode-embed 0.5.7

#### Added

- *(server)* tell a client its write went to the wrong node
- *(vector)* drain writes into an index while it builds

#### Fixed

- *(vector)* give the index ownership of its background build

### coordinode-integration 0.5.7

#### Added

- *(session)* tell a client what its connection can do, and let it configure one

### coordinode-modality 0.5.7

#### Added

- *(vector)* drain writes into an index while it builds

### coordinode-query 0.5.7

#### Added

- *(server)* tell a client its write went to the wrong node
- *(vector)* drain writes into an index while it builds

#### Fixed

- *(vector)* give the index ownership of its background build

### coordinode-raft 0.5.7

#### Added

- *(session)* tell a client what its connection can do, and let it configure one
- *(server)* carry a write to the leader instead of refusing it

#### Fixed

- *(raft)* bind gRPC listener eagerly and free the port on shutdown

#### Testing

- *(raft)* wait for the cluster instead of guessing how long it takes
- *(raft)* stop the consensus suite from testing election timing

### coordinode-replicate 0.5.7

#### Added

- *(session)* tell a client what its connection can do, and let it configure one

### coordinode-server 0.5.7

#### Added

- *(session)* tell a client what its connection can do, and let it configure one
- *(server)* carry a write to the leader instead of refusing it
- *(server)* tell a client its write went to the wrong node

### coordinode-session 0.5.7

#### Added

- *(session)* tell a client what its connection can do, and let it configure one

### coordinode-storage 0.5.7

#### Added

- *(server)* tell a client its write went to the wrong node
- *(vector)* drain writes into an index while it builds

#### Fixed

- *(vector)* give the index ownership of its background build

### coordinode-vector 0.5.7

#### Added

- *(vector)* drain writes into an index while it builds

---

## v0.5.6 - 2026-09-01

### coordinode-core 0.5.6
Expand Down
42 changes: 21 additions & 21 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 @@ -30,7 +30,7 @@ exclude = [
]

[workspace.package]
version = "0.5.6"
version = "0.5.7"
edition = "2021"
rust-version = "1.90"
license = "AGPL-3.0-only"
Expand Down
Loading