feat(runner): add content addressable delta shipping support - #1514
Merged
Atchyut Preetham Pulavarthi (theonly1me) merged 1 commit intoAug 21, 2026
Conversation
|
Important Review skippedAuto reviews are disabled on base/target branches other than the default branch. Please check the settings in the CodeRabbit UI or the ⚙️ Run configurationConfiguration used: Path: .coderabbit.yaml Review profile: ASSERTIVE Plan: Pro Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
Comment |
Atchyut Preetham Pulavarthi (theonly1me)
marked this pull request as ready for review
August 21, 2026 10:17
Chase J (chajac)
approved these changes
Aug 21, 2026
Atchyut Preetham Pulavarthi (theonly1me)
merged commit Aug 21, 2026
ad44380
into
main
7 checks passed
Atchyut Preetham Pulavarthi (theonly1me)
deleted the
feat/nova-1574-ship-only-changed-files
branch
August 21, 2026 11:04
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.
Overview of Changes
runner.runFlowtakes anunchangedFilesmap so a run can send only what moved since the last one, and the CLI sent the whole file set every time. Iterating on one flow therefore re-uploaded its entire import graph on every run.unchangedFilesfor the files whose content matches what this runner was last sent, and the rest in fullpackage.jsonin full every time, since the server reads an execution target from one and dependencies from the other and neither can come from a hash.qawolf/runner-files.json, a sibling ofrunner.jsonso arunner terminatecannot take it alongrunnerStoreuses, so two runs in one directory cannot leave half a filefileSyncon the JSON output, and on stderr when followingrunFlow.tsintosubmitRun.tsandsendRunFlowRequest.ts, with no change to what it doesreferences/runner.mdTesting
bun run typecheck bun run lint --max-warnings 0 bun run format:check bun run knip bun run testbun testgives1810 pass 0 fail, 16 of them new. The other five give exit 0.bun.lockand snapshots: 650, past the 600 error threshold inscripts/check-pr-size.sh. 277 are tests and 193 are the submission moving out ofrunFlow.ts, which was at the 150-line file cap.