Skip to content

Latest commit

 

History

History
56 lines (35 loc) · 1.59 KB

CHANGELOG.md

File metadata and controls

56 lines (35 loc) · 1.59 KB

Changelog

4.9.13 - February 24th, 2025

  • 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.

4.9.12 - February 21st, 2025

  • Add whoami alias for who 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.