Skip to content

v0.2.0

Compare
Choose a tag to compare
@dylemma dylemma released this 14 Feb 20:36
· 17 commits to master since this release

Features and Changes

  • You no longer need to run the CLI as a REPL.
  • Mandatory arguments no longer require a dedicated flag (i.e. base-url when running the exe, project-id and files for the analyze command).
    • In the analyze command, the flags for the required project-id and file(s) arguments are removed entirely, which may break old scripts. Just remove the -p, --project-id, -f, and --file flags from your script.
  • You can now omit the password from the CLI to have it prompt for your password, to avoid showing your password in the terminal.

To run a single command from the terminal, just append the command name and its arguments after the command you used to run the REPL before.

$> codedx-client https://localhost/codedx -ujohndoe projects
password:
{"id":1,"name":"First Project","parentId":null}
{"id":2,"name":"Second Project","parentId":null}
....
$>