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 backward compatibility in `Costs_transform_v1_2()` to support Cost Management exports that predate FOCUS 1.2 by adding fallback mappings for `PricingCurrency`, `SkuMeter`, and `SkuPriceDetails` columns to their legacy `x_` counterparts.

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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -748,7 +748,7 @@ Costs_transform_v1_2()
ListCost,
ListUnitPrice,
PricingCategory,
PricingCurrency,
PricingCurrency = coalesce(PricingCurrency, x_PricingCurrency),
PricingQuantity,
PricingUnit,
ProviderName,
Expand All @@ -762,8 +762,8 @@ Costs_transform_v1_2()
ServiceName,
ServiceSubcategory, // TODO: Populate ServiceSubcategory from ServiceName when missing
SkuId,
SkuMeter,
SkuPriceDetails,
SkuMeter = coalesce(SkuMeter, x_SkuMeterName),
SkuPriceDetails = coalesce(SkuPriceDetails, x_SkuDetails),
SkuPriceId,
SubAccountId,
SubAccountName = iff(isempty(SubAccountId), '', SubAccountName),
Expand Down