diff options
author | Alberto Sartori <alberto.sartori@huawei.com> | 2024-04-09 10:41:04 +0200 |
---|---|---|
committer | Alberto Sartori <alberto.sartori@huawei.com> | 2024-04-10 10:36:20 +0200 |
commit | 2e953b04bbd8e619172c9d0eeafd0342700d6ee9 (patch) | |
tree | 2c89632906d8b46867b5a5f57129269e2cd82306 /CHANGELOG.md | |
parent | 277be6dd08633dbebfda93afdfc6b5cb57e053e0 (diff) | |
download | justbuild-2e953b04bbd8e619172c9d0eeafd0342700d6ee9.tar.gz |
bugfix: cli: remote-execution-property: allow for accumulating multiple pairs.
Before this patch, if the option `--remote-execution-property KEY:VAL`
is repeated multiple times (also with different `KEY`s), only the last
one is taken into account.
This patch fixes the intended behavior.
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r-- | CHANGELOG.md | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index b4a97780..11270ac0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ A feature release on top of `1.2.0`, backwards compatible. ### Major new features - New subcommand `just serve` to start a target-level caching service, - as described in the corresponding design document. + as described in the corresponding design document. - `just-mr` is able to back up and retrieve distribution files from a remote execution endpoint. This simplifies usage in an environment with restricted internet access. @@ -87,6 +87,9 @@ A feature release on top of `1.2.0`, backwards compatible. some targets. - The expression `"disjoint_map_union"` did not verify disjointness in all cases; this is fixed now. +- The command line option `"--remote-execution-property"` can be + repeated multiple times to list all the properties, but only the + last one was retained. This is fixed now. ## Release `1.2.0` (2023-08-25) |