Skip to content
Merged
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
8 changes: 3 additions & 5 deletions docs-mslearn/toolkit/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,11 @@ The following section lists features and enhancements that are currently in deve

- Cost Management export modules for subscriptions and resource groups.

### [FinOps hubs](hubs/finops-hubs-overview.md)
- **Fixed**
- Fixed logic to properly generate the scopes to monitor.

<br><a name="latest"></a>

## v13

_Released August 2025_
_Released January 2026_

### [FinOps hubs](hubs/finops-hubs-overview.md) v13

Expand All @@ -52,6 +48,8 @@ _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 logic to properly generate the scopes to monitor.
- Fixed datatype mismatch in InitializeHub pipeline by changing `x_PricingBlockSize` from `decimal` to `real` to match PricingUnits table schema.
- 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 @@ -976,7 +976,7 @@ resource pipeline_InitializeHub 'Microsoft.DataFactory/factories/pipelines@2018-
userProperties: []
typeProperties: {
// cSpell:ignore externaldata
command: '.set-or-replace PricingUnits <| externaldata(x_PricingUnitDescription: string, AccountTypes: string, x_PricingBlockSize: decimal, PricingUnit: string)[@"${ftkReleaseUri}/PricingUnits.csv"] with (format="csv", ignoreFirstRecord=true) | project-away AccountTypes'
command: '.set-or-replace PricingUnits <| externaldata(x_PricingUnitDescription: string, AccountTypes: string, x_PricingBlockSize: real, PricingUnit: string)[@"${ftkReleaseUri}/PricingUnits.csv"] with (format="csv", ignoreFirstRecord=true) | project-away AccountTypes'
commandTimeout: '00:20:00'
}
linkedServiceName: {
Expand Down