diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f0a25da..b0faaa66 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## v1.4.339 (2025-12-08) + +### PR [#1855](https://github.com/danielmiessler/Fabric/pull/1855) by [ksylvan](https://github.com/ksylvan): feat: add image attachment support for Ollama vision models + +- Add multi-modal image support to Ollama client +- Implement convertMessage to handle multi-content chat messages +- Add loadImageBytes to fetch images from URLs +- Support base64 data URLs for inline images +- Handle HTTP image URLs with context propagation + ## v1.4.338 (2025-12-04) ### PR [#1852](https://github.com/danielmiessler/Fabric/pull/1852) by [ksylvan](https://github.com/ksylvan): Add Abacus vendor for ChatLLM models with static model list diff --git a/cmd/fabric/version.go b/cmd/fabric/version.go index fb38d349..8610db50 100644 --- a/cmd/fabric/version.go +++ b/cmd/fabric/version.go @@ -1,3 +1,3 @@ package main -var version = "v1.4.338" +var version = "v1.4.339" diff --git a/cmd/generate_changelog/changelog.db b/cmd/generate_changelog/changelog.db index d65676f4..23965df1 100644 Binary files a/cmd/generate_changelog/changelog.db and b/cmd/generate_changelog/changelog.db differ diff --git a/cmd/generate_changelog/incoming/1855.txt b/cmd/generate_changelog/incoming/1855.txt deleted file mode 100644 index a528004f..00000000 --- a/cmd/generate_changelog/incoming/1855.txt +++ /dev/null @@ -1,7 +0,0 @@ -### PR [#1855](https://github.com/danielmiessler/Fabric/pull/1855) by [ksylvan](https://github.com/ksylvan): feat: add image attachment support for Ollama vision models - -- Add multi-modal image support to Ollama client -- Implement convertMessage to handle multi-content chat messages -- Add loadImageBytes to fetch images from URLs -- Support base64 data URLs for inline images -- Handle HTTP image URLs with context propagation diff --git a/nix/pkgs/fabric/version.nix b/nix/pkgs/fabric/version.nix index 81e709a1..83f308fd 100644 --- a/nix/pkgs/fabric/version.nix +++ b/nix/pkgs/fabric/version.nix @@ -1 +1 @@ -"1.4.338" +"1.4.339"