Conversation
Promotes [Unreleased] to [1.1.2] - 2026-06-04, covering the changes that landed since v1.1.1: - get_entity_budget_flows() now paginated + accepts fiscal_year (#41) - Budget surface documented in docs/API_REFERENCE.md (#41) - strict-mypy burn-down across tango/shapes/ (#37) — mypy is now a hard gate in lint.yml - CI runtimes bumped off Node 20 (#36) Bumps pyproject.toml + tango/__init__.py from 1.1.1 → 1.1.2 and refreshes uv.lock with the new project version. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
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.
Summary
Release v1.1.2. Promotes
[Unreleased]to[1.1.2] - 2026-06-04and bumpspyproject.toml+tango/__init__.pyfrom 1.1.1 → 1.1.2 (uv.lock refreshed).What's in it
get_entity_budget_flows()now exposes the backend's page/limit pagination and afiscal_yearfilter, returningPaginatedResponse[dict[str, Any]]instead of a raw dict (docs(budget): document budget surface; paginate get_entity_budget_flows #41).tango/shapes/; mypy is now a hard gate inlint.yml(chore: complete strict-mypy burn-down (hard gate) #37).docs/API_REFERENCE.mdnow documents the Budget surface that shipped in v1.1.0: full## Budgetsection,get_entity_budget_flows()under Entity Sub-resources,BUDGET_ACCOUNTS_MINIMALin the ShapeConfig table, and a TOC entry (docs(budget): document budget surface; paginate get_entity_budget_flows #41).actions/checkoutv4→v6,astral-sh/setup-uvv4→v8.1.0,codecov/codecov-actionv3→v5 (ci: bump actions off Node 20 #36).Note on SemVer
The
get_entity_budget_flows()return-type change (dict → PaginatedResponse) is technically a breaking change. Releasing as a patch because the method only shipped in v1.1.0 (~1 week ago) and is unlikely to have external callers yet. CHANGELOG documents the migration (result["results"]→result.results).Test plan
uv run ruff format --check tango/— cleanuv run ruff check tango/— cleanuv run mypy tango/— clean~ Hal