You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems the new version of the CLI is missing the --import flag on the upsert command.
This is preventing me from upgrading off of 0.17
configu --version
@configu/cli/0.17.1 wsl-x64 node-v20.10.0
configu upsert --help
Create, update or delete `Configs` from a `ConfigStore`
USAGE
$ configu upsert --store <value> --set <value> --schema <value> [-c <value> | --import <value>]
FLAGS
-c, --config=<value>... 'key=value' pairs to upsert. Use an empty value to delete a `Config`
--import=<value> Import an existing .env or flat .json file and create `Configs` from its records
--schema=<value> (required) `ConfigSchema` (config-keys declaration) path/to/[schema].cfgu.json file to operate the upsert against. The keys declared in the `ConfigSchema` can be assigned a value in the `ConfigSet` that will be upserted as a `Config` to the `ConfigStore`
--set=<value> (required) `ConfigSet` (config-values context) to assign the upserted `Configs`. Use an empty string for the root set
--store=<value> (required) `ConfigStore` (configs data-source) to upsert `Configs` to
./configu --version
1.2.3
./configu upsert --help
Create, update or delete `Configs` from a `ConfigStore`
$ configu upsert
━━━ Options ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
--store,--st #0 `ConfigStore` (configs data-source) to upsert `Configs` to
--set,--se #0 `ConfigSet` (config-values context) to assign the upserted `Configs`. Use an empty string for the root set
--schema,--sc #0 `ConfigSchema` (config-keys declaration) path/to/[schema].cfgu.json file to operate the upsert against. The keys declared in the `ConfigSchema` can be assigned a value in the `ConfigSet` that will be upserted as a `Config` to the `ConfigStore`
--assign,--kv #0 'key=value' pairs to upsert. Use an empty value to delete a `Config`
Expected Behavior
I would expect the configu upsert command to support the --import flag like its predecessor.
To Reproduce
Download version 0.17 and execute configu upsert --help to see the option available.
Download latest version and execute configu upsert --help and you'll notice the import option gone.
Context
This makes it easier to load configuration stores with a set of values very quickly.
The text was updated successfully, but these errors were encountered:
Current Behavior
It seems the new version of the CLI is missing the
--import
flag on theupsert
command.This is preventing me from upgrading off of 0.17
Expected Behavior
I would expect the configu upsert command to support the
--import
flag like its predecessor.To Reproduce
Download version 0.17 and execute
configu upsert --help
to see the option available.Download latest version and execute
configu upsert --help
and you'll notice theimport
option gone.Context
This makes it easier to load configuration stores with a set of values very quickly.
The text was updated successfully, but these errors were encountered: