diff --git a/CHANGELOG.md b/CHANGELOG.md index 7e906b9f..19592ff2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,23 @@ # Changelog +## v1.4.375 (2026-01-08) + +### PR [#1925](https://github.com/danielmiessler/Fabric/pull/1925) by [ksylvan](https://github.com/ksylvan): docs: update README to document new AI providers and features + +- Docs: update README to document new AI providers and features +- List supported native and OpenAI-compatible AI provider integrations +- Document dry run mode for previewing prompt construction +- Explain Ollama compatibility mode for exposing API endpoints +- Detail available prompt strategies like chain-of-thought and reflexion + +### PR [#1926](https://github.com/danielmiessler/Fabric/pull/1926) by [henricook](https://github.com/henricook) and [ksylvan](https://github.com/ksylvan): feat(vertexai): add dynamic model listing and multi-model support + +- Dynamic model listing from Vertex AI Model Garden API +- Support for both Gemini (genai SDK) and Claude (Anthropic SDK) models +- Curated Gemini model list with web search support for Gemini models +- Thinking/extended thinking support for Gemini +- TopP parameter support for Claude models + ## v1.4.374 (2026-01-05) ### PR [#1924](https://github.com/danielmiessler/Fabric/pull/1924) by [ksylvan](https://github.com/ksylvan): Rename `code_helper` to `code2context` across documentation and CLI diff --git a/cmd/fabric/version.go b/cmd/fabric/version.go index c7edd4cd..01311d55 100644 --- a/cmd/fabric/version.go +++ b/cmd/fabric/version.go @@ -1,3 +1,3 @@ package main -var version = "v1.4.374" +var version = "v1.4.375" diff --git a/cmd/generate_changelog/changelog.db b/cmd/generate_changelog/changelog.db index 172f9ce8..722166b0 100644 Binary files a/cmd/generate_changelog/changelog.db and b/cmd/generate_changelog/changelog.db differ diff --git a/cmd/generate_changelog/incoming/1925.txt b/cmd/generate_changelog/incoming/1925.txt deleted file mode 100644 index ed114f89..00000000 --- a/cmd/generate_changelog/incoming/1925.txt +++ /dev/null @@ -1,7 +0,0 @@ -### PR [#1925](https://github.com/danielmiessler/Fabric/pull/1925) by [ksylvan](https://github.com/ksylvan): docs: update README to document new AI providers and features - -- Docs: update README to document new AI providers and features -- List supported native and OpenAI-compatible AI provider integrations -- Document dry run mode for previewing prompt construction -- Explain Ollama compatibility mode for exposing API endpoints -- Detail available prompt strategies like chain-of-thought and reflexion diff --git a/cmd/generate_changelog/incoming/1926.txt b/cmd/generate_changelog/incoming/1926.txt deleted file mode 100644 index 63ca828b..00000000 --- a/cmd/generate_changelog/incoming/1926.txt +++ /dev/null @@ -1,7 +0,0 @@ -### PR [#1926](https://github.com/danielmiessler/Fabric/pull/1926) by [henricook](https://github.com/henricook) and [ksylvan](https://github.com/ksylvan): feat(vertexai): add dynamic model listing and multi-model support - -- Dynamic model listing from Vertex AI Model Garden API -- Support for both Gemini (genai SDK) and Claude (Anthropic SDK) models -- Curated Gemini model list with web search support for Gemini models -- Thinking/extended thinking support for Gemini -- TopP parameter support for Claude models diff --git a/nix/pkgs/fabric/version.nix b/nix/pkgs/fabric/version.nix index 458ea706..d585fdbf 100644 --- a/nix/pkgs/fabric/version.nix +++ b/nix/pkgs/fabric/version.nix @@ -1 +1 @@ -"1.4.374" +"1.4.375"