diff --git a/CHANGELOG.md b/CHANGELOG.md index 7ba1a793..d2bec2e7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## v1.4.403 (2026-02-13) + +### PR [#1995](https://github.com/danielmiessler/Fabric/pull/1995) by [ksylvan](https://github.com/ksylvan): OpenAI gpt-4o, GPT-4 deprecations, plus other model list updates + +- Update default summarize model to `claude-sonnet-4-5` +- Replace `gpt-4o` and `gpt-4o-mini` references with `gpt-5.2` and `gpt-5-mini` throughout documentation and code +- Remove deprecated GPT-4 models (`gpt-4o`, `gpt-4o-mini`, `gpt-4.1`, `gpt-4.1-mini`) from image generation supported list, effective February 13, 2026 +- Add MiniMax-M2.5 and M2.5-lightning to static models list +- Update tests to use `gpt-5.2` instead of `gpt-4o` as the example supported model + ## v1.4.402 (2026-02-12) ### PR [#1993](https://github.com/danielmiessler/Fabric/pull/1993) by [ksylvan](https://github.com/ksylvan): Add dynamic Abacus RouteLLM model list and update fallback static list diff --git a/cmd/fabric/version.go b/cmd/fabric/version.go index 2e6a0954..616d9cfd 100644 --- a/cmd/fabric/version.go +++ b/cmd/fabric/version.go @@ -1,3 +1,3 @@ package main -var version = "v1.4.402" +var version = "v1.4.403" diff --git a/cmd/generate_changelog/changelog.db b/cmd/generate_changelog/changelog.db index f6064ef1..01765695 100644 Binary files a/cmd/generate_changelog/changelog.db and b/cmd/generate_changelog/changelog.db differ diff --git a/cmd/generate_changelog/incoming/1995.txt b/cmd/generate_changelog/incoming/1995.txt deleted file mode 100644 index 4d44e59b..00000000 --- a/cmd/generate_changelog/incoming/1995.txt +++ /dev/null @@ -1,7 +0,0 @@ -### PR [#1995](https://github.com/danielmiessler/Fabric/pull/1995) by [ksylvan](https://github.com/ksylvan): OpenAI gpt-4o, GPT-4 deprecations, plus other model list updates - -- Update default summarize model to `claude-sonnet-4-5` -- Replace `gpt-4o` and `gpt-4o-mini` references with `gpt-5.2` and `gpt-5-mini` throughout documentation and code -- Remove deprecated GPT-4 models (`gpt-4o`, `gpt-4o-mini`, `gpt-4.1`, `gpt-4.1-mini`) from image generation supported list, effective February 13, 2026 -- Add MiniMax-M2.5 and M2.5-lightning to static models list -- Update tests to use `gpt-5.2` instead of `gpt-4o` as the example supported model diff --git a/nix/pkgs/fabric/version.nix b/nix/pkgs/fabric/version.nix index f8fc816a..a2b19d12 100644 --- a/nix/pkgs/fabric/version.nix +++ b/nix/pkgs/fabric/version.nix @@ -1 +1 @@ -"1.4.402" +"1.4.403"