list-patches
Stallion CLI list-patches command - List the delta patches generated toward a release bundle and compare patch size against full bundle size.
Lists the delta patches generated toward a release bundle — which older releases can patch-update to it, and how small the patch is compared to the full bundle. Useful for verifying that Patch Updates are being generated for your releases.
stallion list-patches --hash=<release_bundle_hash>
Alias:
stallion lpt --hash=<release_bundle_hash>
Patches
From To DiffSize PatchSize
v11 · 1.0.1 v12 · 1.0.1 1.82 MB 214.3 KB
v10 · 1.0.0 v12 · 1.0.1 2.10 MB 402.7 KB
2 patches · 6c8a45dcf5a3…
If no patches exist yet, that's expected for a brand-new release — patches are generated when a newer release can delta-update from this bundle.
Parameters
1. --hash (Required)
The release bundle hash to inspect. Copy it from the Hash column of list-bundles or the bundle hash shown by release-info.
--hash=6c8a45dcf5a3e983e389afada81449b2b326b2540758a55ca2227902a55f7e2a
2. --org-id (Optional)
Organization id. Falls back to the saved context; prompts if neither is available.
3. --project-id (Optional)
Project id. Falls back to the saved context; prompts if neither is available. Required when using --ci-token.
4. --ci-token (Optional: for CI pipelines)
Runs the command non-interactively using a CI token. Requires --project-id.
stallion list-patches \
--ci-token=<your_ci_token> \
--project-id=<your_project_id> \
--hash=<release_bundle_hash>
5. --json (Optional)
Prints the raw patch list as JSON instead of the table. See CI Automation & JSON Output.
stallion list-patches --json --hash=<release_bundle_hash>