diff --git a/CHANGELOG.md b/CHANGELOG.md index 4f38874c..3089e803 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,31 @@ # Changelog +## v1.4.385 (2026-01-20) + +### PR [#1947](https://github.com/danielmiessler/Fabric/pull/1947) by [cleong14](https://github.com/cleong14): feat(patterns): add extract_bd_ideas pattern + +- Added extract_bd_ideas pattern that extracts actionable ideas from content and transforms them into well-structured bd issue tracker commands +- Implemented identification system for tasks, problems, ideas, improvements, bugs, and features +- Added actionability evaluation and appropriate scoping functionality +- Integrated priority assignment system (P0-P4) with relevant labels +- Created ready-to-execute bd create commands output format + +### PR [#1948](https://github.com/danielmiessler/Fabric/pull/1948) by [cleong14](https://github.com/cleong14): feat(patterns): add create_bd_issue pattern + +- Added create_bd_issue pattern that transforms natural language issue descriptions into optimal bd (Beads) issue tracker commands +- Implemented comprehensive bd create flag reference for better command generation +- Added intelligent type detection system that automatically categorizes issues as bug, feature, task, epic, or chore +- Included priority assessment capability that assigns P0-P4 priority levels based on urgency signals in descriptions +- Integrated smart label selection feature that automatically chooses 1-4 relevant labels for each issue + +### PR [#1949](https://github.com/danielmiessler/Fabric/pull/1949) by [ksylvan](https://github.com/ksylvan): Fix #1931 - Image Generation Feature should warn if the model is not capable of Image Generation + +- Add image generation compatibility warnings for unsupported models +- Add warning to stderr when using incompatible models with image generation +- Add GPT-5, GPT-5-nano, and GPT-5.2 to supported image generation models +- Create `checkImageGenerationCompatibility` function in OpenAI plugin +- Add comprehensive tests for image generation compatibility warnings + ## v1.4.384 (2026-01-19) ### PR [#1944](https://github.com/danielmiessler/Fabric/pull/1944) by [ksylvan](https://github.com/ksylvan): Add Infermatic AI Provider Support diff --git a/cmd/fabric/version.go b/cmd/fabric/version.go index 4566a1c5..90d19c28 100644 --- a/cmd/fabric/version.go +++ b/cmd/fabric/version.go @@ -1,3 +1,3 @@ package main -var version = "v1.4.384" +var version = "v1.4.385" diff --git a/cmd/generate_changelog/changelog.db b/cmd/generate_changelog/changelog.db index b2ccf27b..0f8df76f 100644 Binary files a/cmd/generate_changelog/changelog.db and b/cmd/generate_changelog/changelog.db differ diff --git a/cmd/generate_changelog/incoming/1947.txt b/cmd/generate_changelog/incoming/1947.txt deleted file mode 100644 index 5debd4d2..00000000 --- a/cmd/generate_changelog/incoming/1947.txt +++ /dev/null @@ -1,7 +0,0 @@ -### PR [#1947](https://github.com/danielmiessler/Fabric/pull/1947) by [cleong14](https://github.com/cleong14): feat(patterns): add extract_bd_ideas pattern - -- Added extract_bd_ideas pattern that extracts actionable ideas from content and transforms them into well-structured bd issue tracker commands -- Implemented identification system for tasks, problems, ideas, improvements, bugs, and features -- Added actionability evaluation and appropriate scoping functionality -- Integrated priority assignment system (P0-P4) with relevant labels -- Created ready-to-execute bd create commands output format diff --git a/cmd/generate_changelog/incoming/1948.txt b/cmd/generate_changelog/incoming/1948.txt deleted file mode 100644 index d6d08927..00000000 --- a/cmd/generate_changelog/incoming/1948.txt +++ /dev/null @@ -1,7 +0,0 @@ -### PR [#1948](https://github.com/danielmiessler/Fabric/pull/1948) by [cleong14](https://github.com/cleong14): feat(patterns): add create_bd_issue pattern - -- Added create_bd_issue pattern that transforms natural language issue descriptions into optimal bd (Beads) issue tracker commands -- Implemented comprehensive bd create flag reference for better command generation -- Added intelligent type detection system that automatically categorizes issues as bug, feature, task, epic, or chore -- Included priority assessment capability that assigns P0-P4 priority levels based on urgency signals in descriptions -- Integrated smart label selection feature that automatically chooses 1-4 relevant labels for each issue diff --git a/cmd/generate_changelog/incoming/1949.txt b/cmd/generate_changelog/incoming/1949.txt deleted file mode 100644 index 793ab55e..00000000 --- a/cmd/generate_changelog/incoming/1949.txt +++ /dev/null @@ -1,7 +0,0 @@ -### PR [#1949](https://github.com/danielmiessler/Fabric/pull/1949) by [ksylvan](https://github.com/ksylvan): Fix #1931 - Image Generation Feature should warn if the model is not capable of Image Generation - -- Add image generation compatibility warnings for unsupported models -- Add warning to stderr when using incompatible models with image generation -- Add GPT-5, GPT-5-nano, and GPT-5.2 to supported image generation models -- Create `checkImageGenerationCompatibility` function in OpenAI plugin -- Add comprehensive tests for image generation compatibility warnings diff --git a/nix/pkgs/fabric/version.nix b/nix/pkgs/fabric/version.nix index bf893e1c..c86cc985 100644 --- a/nix/pkgs/fabric/version.nix +++ b/nix/pkgs/fabric/version.nix @@ -1 +1 @@ -"1.4.384" +"1.4.385"