Releases: alertlogic/alcli
Releases · alertlogic/alcli
update dependencies
Dependency Updates
Merge pull request #65 from alertlogic/update_deps Update to the latest version of jmespath
Verify new windows singing
Merge pull request #64 from alertlogic/fix_widows_build Point to new location of windows signtool
Fix windows build warning
Merge pull request #63 from alertlogic/fix_widows_build Update windows build
Rebuild with latest Signing Certificate
v1.0.62 Rebuild with latest singing cert
v1.0.60: Bump github actions
Bump github actions
v1.0.59: Revert certifi bump
Revert certifi bump
v1.0.58 - Bumping dependancies for last APIs
v1.0.57: Merge pull request #58 from zdaniel86/fmulti
Support --content_type parameter
v1.0.55: Fix unnecessary calls to less (#56)
There was an unnecessarily complex call to `less` to check if it is available on the path. This actually invoked `less` without a filename and without a piped input. Some versions of `less` (e.g. the default on OS X) allow this, but others (e.g. the version installed by Homebrew) don't. The call to `less` happened in a class initialization, so every call to `alcli` called `less`, which printed an error on stdout that said `Missing filename ("less --help" for help)`. This broke piping to jq. The fix is to use `shutil.which` to find the path to `less`, if it exists. Additionally, this fixes a potential bug where the system isn't `"win32"` and `less` isn't on the path. Previously it would crash trying to invoke `None(help_text)` when printing help text. Now it emits the text directly.