diff --git a/CHANGELOG.md b/CHANGELOG.md index 54144b4f..7ac3ff6b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## v1.4.391 (2026-01-24) + +MiniMax unexpected status code: 404 from provider MiniMax, response body: 404 page not found +### PR [#1965](https://github.com/danielmiessler/Fabric/pull/1965) by [infinitelyloopy-bt](https://github.com/infinitelyloopy-bt): fix(azure): Fix deployment URL path for Azure OpenAI API + +- Fixed deployment URL path construction for Azure OpenAI API to correctly include deployment names in request URLs +- Added custom middleware to transform API paths and extract deployment names from request body model fields +- Moved StreamOptions configuration to only apply to streaming requests, as Azure rejects stream_options for non-streaming requests +- Added Azure OpenAI troubleshooting documentation with technical details and configuration guidance +- Resolved SDK route matching bug that was preventing proper URL generation for Azure OpenAI endpoints + ## v1.4.390 (2026-01-24) MiniMax unexpected status code: 404 from provider MiniMax, response body: 404 page not found diff --git a/cmd/fabric/version.go b/cmd/fabric/version.go index 800c53b9..8861477a 100644 --- a/cmd/fabric/version.go +++ b/cmd/fabric/version.go @@ -1,3 +1,3 @@ package main -var version = "v1.4.390" +var version = "v1.4.391" diff --git a/cmd/generate_changelog/changelog.db b/cmd/generate_changelog/changelog.db index 543205e2..34d69ff8 100644 Binary files a/cmd/generate_changelog/changelog.db and b/cmd/generate_changelog/changelog.db differ diff --git a/cmd/generate_changelog/incoming/1965.txt b/cmd/generate_changelog/incoming/1965.txt deleted file mode 100644 index c102fde6..00000000 --- a/cmd/generate_changelog/incoming/1965.txt +++ /dev/null @@ -1,8 +0,0 @@ -MiniMax unexpected status code: 404 from provider MiniMax, response body: 404 page not found -### PR [#1965](https://github.com/danielmiessler/Fabric/pull/1965) by [infinitelyloopy-bt](https://github.com/infinitelyloopy-bt): fix(azure): Fix deployment URL path for Azure OpenAI API - -- Fixed deployment URL path construction for Azure OpenAI API to correctly include deployment names in request URLs -- Added custom middleware to transform API paths and extract deployment names from request body model fields -- Moved StreamOptions configuration to only apply to streaming requests, as Azure rejects stream_options for non-streaming requests -- Added Azure OpenAI troubleshooting documentation with technical details and configuration guidance -- Resolved SDK route matching bug that was preventing proper URL generation for Azure OpenAI endpoints diff --git a/nix/pkgs/fabric/version.nix b/nix/pkgs/fabric/version.nix index fc8e0670..c3d0c887 100644 --- a/nix/pkgs/fabric/version.nix +++ b/nix/pkgs/fabric/version.nix @@ -1 +1 @@ -"1.4.390" +"1.4.391"