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
12 changes: 0 additions & 12 deletions .changeset/prune-writer-fairness.md

This file was deleted.

13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## 0.130.3

### Patch Changes

- 00a9da5: Yield between maintenance chunks so live writers are never starved.

v0.130.2 bounded every maintenance transaction, but back-to-back chunks
still starved the control loop during a large backlog migration: SQLite's
busy handler retries without fairness, so the maintenance loop re-acquired
the write lock before any waiting writer won its retry. Prune chunks,
rolloff deletes, and diagnostics batch-deletes now pause (250/100 ms)
between transactions, guaranteeing every waiting writer a window.

## 0.130.2

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ftw",
"version": "0.130.2",
"version": "0.130.3",
"private": true,
"type": "module",
"description": "FTW — local-first home energy coordination. Version metadata only; the runtime is Go and the mathematical planner is Python/CVXPY.",
Expand Down