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 `config_InitializeHub` pipeline failure in Azure Data Explorer caused by HTTP redirects when loading open data CSV files (PricingUnits, Regions, ResourceTypes, Services) from GitHub releases. Updated to use raw.githubusercontent.com URLs that do not redirect ([#1886](https://github.com/microsoft/finops-toolkit/issues/1886)).

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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,8 @@ var INGESTION_DB = 'Ingestion'
var INGESTION_ID_SEPARATOR = '__'

var ftkReleaseUri = endsWith(finOpsToolkitVersion, '-dev')
? 'https://github.com/microsoft/finops-toolkit/releases/latest/download'
: 'https://github.com/microsoft/finops-toolkit/releases/download/v${finOpsToolkitVersion}'
? 'https://raw.githubusercontent.com/microsoft/finops-toolkit/refs/heads/dev/src/open-data'
: 'https://raw.githubusercontent.com/microsoft/finops-toolkit/refs/tags/v${finOpsToolkitVersion}/src/open-data'
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@MSBrett , @flanakin Is this a proper fix for the problem?


var useFabric = !empty(fabricQueryUri)
var useAzure = !useFabric && !empty(clusterName)
Expand Down