Skip to content

v4.0.0

Choose a tag to compare

@budget-buddy-release-bot budget-buddy-release-bot released this 08 May 15:59
· 45 commits to main since this release
Immutable release. Only release title and notes can be modified.

4.0.0 (2026-05-08)

⚠ BREAKING CHANGES

  • GET /v1/transactions/summary no longer accepts the
    month query parameter and now returns an array of MonthlySummary
    instead of a single object. Callers must migrate to from/to.

Co-Authored-By: Claude Opus 4.7 noreply@anthropic.com

  • feat: add getTransactionsSummaryTrend endpoint

Splits per-month bucket trends into a separate endpoint instead of
overloading getTransactionsSummary. The single-month endpoint stays
untouched (one MonthlySummary, no [0] unwrap on the client). The new
endpoint serves dashboard sparklines: from/to month range, returns
MonthlySummary[] oldest first, empty months zero-filled, max 24 months.

Each endpoint speaks its native shape; no consumer has to unwrap a
1-element array for the common case.

Co-Authored-By: Claude Opus 4.7 noreply@anthropic.com

Features

  • add getTransactionsSummaryTrend endpoint (#96) (84e4dc9)