Skip to content
Open
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
7 changes: 0 additions & 7 deletions .changeset/add_basic_pool_support.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/add_network_throughput_estimates.md

This file was deleted.

This file was deleted.

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/client_http_error.md

This file was deleted.

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/improve_unhealthy_slabs_query.md

This file was deleted.

This file was deleted.

This file was deleted.

28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,31 @@
## 0.3.0 (2026-06-26)

### Breaking Changes

#### Add basic pool support.

Fund one pool per connect key instead of individual accounts. Accounts attached to a pool draw from its shared balance.

### Features

- Added `reconnecting` field to auth connect status so apps can tell if a user is returning or connecting for the first time.

#### Add network read and write throughput estimates to the client.

The client now exposes `ReadEstimate` and `WriteEstimate`, returning the expected duration to transfer a given number of bytes from the network-wide observed throughput. Both fall back to a default rate before any bulk transfers have been sampled.

### Fixes

- Chunk RecordIntegrityCheck UPDATEs to bound per-statement latency and shorten row-lock windows.
- Don't renew a contract with capacity 0 if there is another active contract with capacity 0 already
- Rework the unhealthy slabs query to avoid full table scans on large databases.
- Register additional sharing account for each user
- Take into account inflight uploads and downloads when scheduling hosts.

#### Return a typed HTTPError from the app client on non-2xx responses.

The app client previously returned `errors.New("")` when an upstream proxy returned a non-2xx status code with an empty body, making failures impossible to diagnose. It now returns an `*HTTPError` carrying both the status code and body, formatted as `HTTP <code>: <message>`. Callers can `errors.As` on it to branch retry behavior on the status code.

## 0.2.3 (2026-06-04)

### Features
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module go.sia.tech/indexd // v0.2.3
module go.sia.tech/indexd // v0.3.0

go 1.26.0

Expand Down