[EPAC-2292]: Record project-level bill diff backend route verification#827
Merged
riddim-developer-bot[bot] merged 1 commit intoJun 15, 2026
Conversation
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
Project-level backend route verification for the bill diff endpoint
GET /api/v1/bills/{id}/diff(EPAC-2292).This is a verification gate, not an implementation change: it proves the shipped
repo state and the staging runtime agree across all four sources of truth
(OpenAPI, deployment manifest, Lambda handler, live deployment) before
EPAC-2018 can close.
This PR records the evidence as
docs/backend/epac-2292-backend-route-verification.md,following the same convention as the earlier verification gates
(EPAC-2291 →
docs/backend/epac-2291-backend-route-verification.md,EPAC-2289,
EPAC-2293). No backend, app,
or contract code is changed.
Verdict: PASS
No gaps found; no follow-up implementation issues required.
Verification evidence (captured 2026-06-15)
Route reconstructed from four independent sources, none trusted alone:
backend/openapi/openapi.json(getBillVersionDiff,200 → BillVersionDiff)backend/manifest/deployment-services.json(bills, staging + production)backend/bills/main.go(LoadBillVersionDiffusecase)Handler tests:
TestHandleRequestGetsBillVersionDiffinvokes the route with validfrom/toand asserts the body decodes to the documented
BillVersionDiffschema.Repo smoke check (
scripts/ci/backend_staging_smoke.py --environment staging --mode full):Live staging (
https://staging-api.epac.riddimsoftware.com):clauses.length == 82from/toNot Found)Why a PR for a verification issue
The issue scopes out patching backend code; it does not produce app/service
changes. Per repo convention these gates land their evidence as a
docs/backend/record (see EPAC-2291 #819, EPAC-2293 #820). The pass/fail verdict and staging
evidence are also posted as the required Linear comment on EPAC-2292.
Testing
go test ./bills/...— PASSbackend_staging_smoke.py --environment staging --mode full— all PASScurlagainst staging for all documented cases — PASSDocs-only change; no
Release-Note:(no user-visible behavior change).