diff --git a/CHANGELOG.md b/CHANGELOG.md index cf2a253e..234fc974 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## v1.4.363 (2025-12-25) + +### PR [#1906](https://github.com/danielmiessler/Fabric/pull/1906) by [ksylvan](https://github.com/ksylvan): Code Quality: Optimize HTTP client reuse + simplify error formatting + +- Refactor: optimize HTTP client reuse and simplify error formatting +- Simplify error wrapping by removing redundant Sprintf calls in CLI +- Pass HTTP client to FetchModelsDirectly to enable connection reuse +- Store persistent HTTP client instance inside the OpenAI provider struct +- Update compatible AI providers to match the new function signature + ## v1.4.362 (2025-12-25) ### PR [#1904](https://github.com/danielmiessler/Fabric/pull/1904) by [majiayu000](https://github.com/majiayu000): fix: resolve WebUI tooltips not rendering due to overflow clipping diff --git a/cmd/fabric/version.go b/cmd/fabric/version.go index 5bc3894b..56b3ee8f 100644 --- a/cmd/fabric/version.go +++ b/cmd/fabric/version.go @@ -1,3 +1,3 @@ package main -var version = "v1.4.362" +var version = "v1.4.363" diff --git a/cmd/generate_changelog/changelog.db b/cmd/generate_changelog/changelog.db index 1c5dc8d1..9747182a 100644 Binary files a/cmd/generate_changelog/changelog.db and b/cmd/generate_changelog/changelog.db differ diff --git a/cmd/generate_changelog/incoming/1906.txt b/cmd/generate_changelog/incoming/1906.txt deleted file mode 100644 index 82f5680a..00000000 --- a/cmd/generate_changelog/incoming/1906.txt +++ /dev/null @@ -1,7 +0,0 @@ -### PR [#1906](https://github.com/danielmiessler/Fabric/pull/1906) by [ksylvan](https://github.com/ksylvan): Code Quality: Optimize HTTP client reuse + simplify error formatting - -- Refactor: optimize HTTP client reuse and simplify error formatting -- Simplify error wrapping by removing redundant Sprintf calls in CLI -- Pass HTTP client to FetchModelsDirectly to enable connection reuse -- Store persistent HTTP client instance inside the OpenAI provider struct -- Update compatible AI providers to match the new function signature diff --git a/nix/pkgs/fabric/version.nix b/nix/pkgs/fabric/version.nix index 6877936c..f6d1f7d5 100644 --- a/nix/pkgs/fabric/version.nix +++ b/nix/pkgs/fabric/version.nix @@ -1 +1 @@ -"1.4.362" +"1.4.363"