Skip to content

Releases: alertlogic/alcli

update dependencies

24 Sep 21:27
d04f83d
Compare
Choose a tag to compare
v1.0.70

Update dependices

Dependency Updates

16 May 16:46
29017ec
Compare
Choose a tag to compare
Merge pull request #65 from alertlogic/update_deps

Update to the latest version of jmespath

Verify new windows singing

16 May 15:59
9569c58
Compare
Choose a tag to compare
Pre-release
Merge pull request #64 from alertlogic/fix_widows_build

Point to new location of windows signtool

Fix windows build warning

12 May 18:11
0005fa8
Compare
Choose a tag to compare
Pre-release
Merge pull request #63 from alertlogic/fix_widows_build

Update windows build

Rebuild with latest Signing Certificate

12 May 15:18
de7ec65
Compare
Choose a tag to compare
Pre-release
v1.0.62

Rebuild with latest singing cert

v1.0.60: Bump github actions

23 Mar 15:05
de7ec65
Compare
Choose a tag to compare
Bump github actions

v1.0.59: Revert certifi bump

23 Mar 12:25
7bd917a
Compare
Choose a tag to compare
Revert certifi bump

v1.0.58 - Bumping dependancies for last APIs

23 Mar 11:29
7bd917a
Compare
Choose a tag to compare

v1.0.57: Merge pull request #58 from zdaniel86/fmulti

31 Jan 16:24
4adb546
Compare
Choose a tag to compare

v1.0.55: Fix unnecessary calls to less (#56)

05 Nov 12:16
da1427c
Compare
Choose a tag to compare
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.