2022

Mondoo 5.22.0 is out!

ยทBy jay

Back to releases

๐Ÿฅณ 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:

Mqlscript
mondoo> {a: 1, b: 2, c: 3}.where(key == 'c')
Mqlscript
where: {
c: 3;
}
Mqlscript
mondoo> {a: 1, b: 2, c: 3}.where(value < 3)
Mqlscript
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 the aws.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

On this page