Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs-mslearn/toolkit/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ _Released August 2025_
- Fixed all Bicep compilation errors and warnings with inline suppressions and descriptive comments.
- Fixed Build-Toolkit.ps1 bicep generate-params command bug.
- Fixed Azure Data Explorer dashboard queries by converting `todecimal(0)` to `toreal(0)` to ensure compatibility with KQL type system ([#1893](https://github.com/microsoft/finops-toolkit/issues/1893)).
- Fixed ADF pipeline dependency logic in config_RunBackfillJob, config_StartExportProcess, and config_ConfigureExports pipelines to properly handle both array and non-array scope configurations by adding 'Failed' condition to 'Save/Set Scopes' activity dependencies.

### [Optimization engine](optimization-engine/overview.md) v13

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -496,6 +496,7 @@ resource dataFactory 'Microsoft.DataFactory/factories@2018-06-01' existing = {
activity: 'Set Scopes'
dependencyConditions: [
'Succeeded'
'Failed'
]
}
{
Expand Down Expand Up @@ -742,6 +743,7 @@ resource dataFactory 'Microsoft.DataFactory/factories@2018-06-01' existing = {
activity: 'Set Scopes'
dependencyConditions: [
'Succeeded'
'Failed'
]
}
{
Expand Down Expand Up @@ -1075,6 +1077,7 @@ resource dataFactory 'Microsoft.DataFactory/factories@2018-06-01' existing = {
activity: 'Save Scopes'
dependencyConditions: [
'Succeeded'
'Failed'
]
}
{
Expand Down