chore: prepare release 0.3.0#1001
Open
github-actions[bot] wants to merge 1 commit into
Open
Conversation
There was a problem hiding this comment.
Claude Code Review
This repository is configured for manual code reviews. Comment @claude review to trigger a review and subscribe this PR to future pushes, or @claude review once for a one-time review.
Tip: disable this comment in your organization's Code Review settings.
59559ad to
36f140d
Compare
d382432 to
5c64129
Compare
51d3ad6 to
3a48fa0
Compare
3a48fa0 to
74f8645
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR was created automatically. Merging it will finalize the changelog for 0.3.0
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
reconnectingfield 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
ReadEstimateandWriteEstimate, 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
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*HTTPErrorcarrying both the status code and body, formatted asHTTP <code>: <message>. Callers canerrors.Ason it to branch retry behavior on the status code.