-
Fix Docker image build.
-
Docker image has been updated to be based on top of
python:3.12-slim
. -
Docker images are now versioned. In addition to the
latest
tag, new version specific tags will be available going forward, starting with this release.For example:
refractionpoint/limacharlie:latest
-> Always points to the latest release.refractionpoint/limacharlie:4.9.13
-> Release version 4.9.13.
-
Add
whoami
alias forwho
command. -
Fix a possible race condition when writting credentials to
~/.limacharlie
file on disk. -
Add a new global
--debug
option. When this option is set and CLI command throws an exception, traceback will be printed to standard error. -
Add new
limacharlie users invite
command for inviting user(s) to LimaCharlie.Example usage
Invite a single user:
$ limacharlie users invite [email protected]
Invite multiple users:
$ limacharlie users invite [email protected],[email protected]
Invite multiple users (new line delimited entries in a file):
$ cat users_to_invite.txt [email protected] [email protected] [email protected] [email protected] $ limacharlie users invite --file=users_to_invite.txt
The corresponing API operations operates in the context of the user which means you need to specify a user scoped API key + UID when using
limacharlie login
.For more information, see https://docs.limacharlie.io/apidocs/introduction#getting-a-jwt.