diff options
| author | Dan Engelbrecht <[email protected]> | 2025-08-12 17:36:41 +0200 |
|---|---|---|
| committer | GitHub Enterprise <[email protected]> | 2025-08-12 17:36:41 +0200 |
| commit | 39e750f78b0944157f0179266b7593b2e492453f (patch) | |
| tree | 658fb9723889e857a118e01c5934c85df55aa45e /CHANGELOG.md | |
| parent | 5.6.16-pre0 (diff) | |
| download | zen-39e750f78b0944157f0179266b7593b2e492453f.tar.xz zen-39e750f78b0944157f0179266b7593b2e492453f.zip | |
add limitoverwrites option per bucket (#466)
- Feature: Added global zenserver option `--cache-bucket-limit-overwrites` controlling Whether to require policy flag pattern before allowing overwrites or not. Default `false` = overwrites always allowed
- Feature: Add per bucket cache configuration option `limitoverwrites` (Lua options file only)
cache = {
bucket = { -- This is the default for all namespaces
limitoverwrites = true
},
buckets = { -- Here you can add matching per bucket name (matches accross namespaces)
iostorecompression = {
limitoverwrites = false
},
},
}
Diffstat (limited to 'CHANGELOG.md')
| -rw-r--r-- | CHANGELOG.md | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 2b816e6b5..dc53b7904 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,19 @@ - Feature: Added wildcard options for `zen build download` - `--wildcard` windows style wildcard (using * and ?) to match file paths to include - `--exclude-wildcard` windows style wildcard (using * and ?) to match file paths to exclude. Applied after --wildcard include filter +- Feature: Added global zenserver option `--cache-bucket-limit-overwrites` controlling Whether to require policy flag pattern before allowing overwrites or not. Default `false` = overwrites always allowed +- Feature: Add per bucket cache configuration option `limitoverwrites` (Lua options file only) + + cache = { + bucket = { -- This is the default for all namespaces + limitoverwrites = true + }, + buckets = { -- Here you can add matching per bucket name (matches accross namespaces) + iostorecompression = { + limitoverwrites = false + }, + }, + } - Improvement: Added `--quiet` option to zen `builds` commands to suppress non-essential output - Improvement: Remove early wipe of target folder for `zen download` to allow for scavenging useful data - Improvement: Refactored jupiter oplog export code to reuse builds jupiter wrapper classes |