Mondoo 5.22.0 is out!
ยท One min read
๐ฅณ mondoo 5.22.0 is out!
๐ NEW FEATURESโ
** Add the where
method to map
types **
Maps now have a where
method that allows filtering by keys and values:
mondoo> {a: 1, b: 2, c: 3}.where(key == 'c')
where: {
c: 3;
}
mondoo> {a: 1, b: 2, c: 3}.where(value < 3)
where: {
a: 1;
b: 2;
}
Currently, this only works with map types whose key is a string.
๐งน IMPROVEMENTSโ
- Allow using the
--insecure
flag with--inventory
when using the Mondoo CLI - Automatically delete the CloudFormation stack when the AWS integration is deleted
- Add
ownerAlias
field to theaws.ec2.image
resource
๐ BUG FIXES AND UPDATESโ
- Fix potential panic when using
mondoo scan
with the--inventory
flag - Fix Ansible inventory loading for tags and multiple groups
- Fix
echo
warning when using PowerShell over SSH - Fix bug where AWS EBS volume scan did not work for SUSE