Seen on: component/git-history
What it fixes
The fork branch carries the whole Git History feature in one piece. The smallest useful server slice is: the contracts, a capability flag old clients can check, a read that returns a page of commits for a branch or for all branches, and a read that returns one commit's details. Nothing in it needs the UI.
Why we need it
It is PR 1 of the series in the Git History series issue (#8). It lands alone, is invisible to users, is testable against real git, and gives maintainers a small and safe yes. Every later piece builds on its contracts, so it has to be right first.
How to fix it
Cut a fresh branch from upstream main carrying the history contracts, the capability flag, the commit page read with its expiring cursor, the commit details read, their permission scope, and their tests. The signed-commit defect is fixed in this piece rather than carried. The PR description states the end state from the series issue. Deferred: branch and tag listing, changed files, diffs, and everything under the web app.
Seen on: component/git-history
What it fixes
The fork branch carries the whole Git History feature in one piece. The smallest useful server slice is: the contracts, a capability flag old clients can check, a read that returns a page of commits for a branch or for all branches, and a read that returns one commit's details. Nothing in it needs the UI.
Why we need it
It is PR 1 of the series in the Git History series issue (#8). It lands alone, is invisible to users, is testable against real git, and gives maintainers a small and safe yes. Every later piece builds on its contracts, so it has to be right first.
How to fix it
Cut a fresh branch from upstream main carrying the history contracts, the capability flag, the commit page read with its expiring cursor, the commit details read, their permission scope, and their tests. The signed-commit defect is fixed in this piece rather than carried. The PR description states the end state from the series issue. Deferred: branch and tag listing, changed files, diffs, and everything under the web app.