From 84f4400635441384c13359e565f9d81d0d03b10c Mon Sep 17 00:00:00 2001 From: Abin Simon Date: Thu, 16 Nov 2023 19:06:26 +0530 Subject: [PATCH] Update CHANGELOG and known issues --- CHANGELOG.md | 4 ++++ website/Makefile | 4 ++-- website/docs/support/known-issues.md | 2 ++ 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 83f3d3ee0..c669543ac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Added export support for emails in exchange backups as `.eml` files - More colorful and informational cli output +- CLI completions for corso commands and flags (bash, zsh, fish, powershell) ### Changed - Change file extension of messages export to json to match the content @@ -19,6 +20,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Automatically re-run a full delta query on incremental if the prior backup is found to have malformed prior-state information. - Retry drive item permission downloads during long-running backups after the jwt token expires and refreshes. +### Known issues +- CLI completions cannot autocomplete multiple values for flags + ## [v0.15.0] (beta) - 2023-10-31 ### Added diff --git a/website/Makefile b/website/Makefile index e9ec44d20..f4df99353 100644 --- a/website/Makefile +++ b/website/Makefile @@ -55,8 +55,8 @@ _validatemdgen: # in case we have a different architecture ${MDGEN_BINARY}: $(shell find ${CORSO_LOCAL_PATH}/src -type f -name *.go) $(shell find ${CORSO_LOCAL_PATH}/src -type d ) @echo 'Re-building Corso CLI docs auto-gen tooling...' - $(GOC) go mod download - $(GOC) go build -o ${MDGEN_BINARY} ${MDGEN_SRC} + $(GOC) go mod download + $(GOC) go build -o ${MDGEN_BINARY} ${MDGEN_SRC} clean: $(WEBC) rm -rf docs/cli build node_modules diff --git a/website/docs/support/known-issues.md b/website/docs/support/known-issues.md index ae56f8db4..93bc2ef46 100644 --- a/website/docs/support/known-issues.md +++ b/website/docs/support/known-issues.md @@ -35,3 +35,5 @@ Below is a list of known Corso issues and limitations: * Groups and Teams support is available in an early-access status, and may be subject to breaking changes. * Restoring the data into a different Group from the one it was backed up from isn't currently supported + +* CLI completions cannot autocomplete multiple values for flags