Release 1.15
April 04, 2025
What's New?
Introduced Default Dashboard
With this release, we have introduced a default dashboard designed to enhance your user experience. A predefined dashboard gives you insights into your account's workflows and executions. As you become more familiar with the platform, you can create your dashboards according to your requirements.
Prerequisites
- Enterprise TruRisk™ Platform 3.22 or later
The availability of the default dashboard depends on the Enterprise TruRisk™ Platform 3.22 but you can create your own widgets and customize your dashboard. For information on creating widgets, dashboards, templates, and more, refer to the Unified Dashboard.
Introduced Switch Node
In this release, we have introduced the Switch node, enabling advanced decision-making within workflows. This node enables conditional branching based on comparison logic. Use the Switch node to route a workflow execution dynamically by evaluating a condition against defined case values—similar to a switch statement in programming.
If no matching case is found, the default case is executed and the execution exits the Switch block and proceeds to the next node. Likewise, if the selected case branch contains no nodes, the evaluation exits and proceeds with the next node.
If an error occurs during the evaluation of any node, the workflow execution halts immediately, and subsequent nodes are not executed.
Tokens for Workflows and Executions
With this release, we have improved our support for QQL tokens. Now, you can make complex queries for better and customized results. We have introduced additional Boolean operators: OR, NOT and NOT IN. Previously, we supported only the AND operator. We have also introduced the capability to nest queries in brackets.
Examples:
- Show workflows that belong to Custom or AWS Best Practices.
category.qflow.category: Custom or qflow.category:AWS Best Practices
- Show workflows that use AWS or Azure cloud.
qflow.provider in [AWS , AZURE]
- Show workflows which do not use AWS or Azure cloud.
qflow.provider not in [AWS , AZURE]
- Show all non-cloud workflows (using nested queries)
not qflow.provider:AWS and not (qflow.provider:AZURE and not (qflow.provider:GCP))