diff options
| author | Dan Engelbrecht <[email protected]> | 2026-01-27 14:53:37 +0100 |
|---|---|---|
| committer | GitHub Enterprise <[email protected]> | 2026-01-27 14:53:37 +0100 |
| commit | 16a4ce30ef1a4461ea39f1b821974ed01b80cd1f (patch) | |
| tree | 8305ea81771c3e7793bd0f84f7bb3cd5a68be66a /CHANGELOG.md | |
| parent | avoid big ioworker backlog (#733) (diff) | |
| download | zen-16a4ce30ef1a4461ea39f1b821974ed01b80cd1f.tar.xz zen-16a4ce30ef1a4461ea39f1b821974ed01b80cd1f.zip | |
allow download specification for zen builds download (#734)
- Feature: `zen builds download` now supports `--download-spec-path` to determine what content to download from a build
- The unstructured format expects one line per file relative to the root with '/' as a path delimiter
- The structured format uses JSon format and the `--download-spec-path` must have extension `.json` to enable structured input
{
"parts": {
"default" : {
"files": [
"foo/bar",
"baz.exe"
]
},
"symbols": {
"files": [
"baz.pdb"
]
}
}
}
Diffstat (limited to 'CHANGELOG.md')
| -rw-r--r-- | CHANGELOG.md | 25 |
1 files changed, 23 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index c5d5e8e79..d225d0c63 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ ## -- Feature: `zen builds upload` now support structure manifest input for `--manifest-path` when the path has a `.json` extension - - The structured manifest supports splitting a build into multiple parts +- Feature: `zen builds upload` now support structure manifest input for `--manifest-path` when the path has a `.json` extension enabling multi-part upload + - The unstructured format expects one line per file relative to the root with '/' as a path delimiter + - The structured manifest uses JSon format supports and the `--manifest-path` must have extension `.json` to enable structured input { "parts": { @@ -18,6 +19,26 @@ } } } +- Feature: `zen builds download` now supports `--download-spec-path` to determine what content to download from a build + - The unstructured format expects one line per file relative to the root with '/' as a path delimiter + - The structured format uses JSon format and the `--download-spec-path` must have extension `.json` to enable structured input + + { + "parts": { + "default" : { + "files": [ + "foo/bar", + "baz.exe" + ] + }, + "symbols": { + "files": [ + "baz.pdb" + ] + } + } + } + - Feature: Added experimental zenserver "hub" mode which is used to manage a set of zenserver instances on a host - Feature: Added `--chunking-cache-path` option to `zen builds upload` and `zen builds diff` - Path to cache for chunking information of scanned files. Default is empty resulting in no caching |