diff --git a/CHANGELOG.md b/CHANGELOG.md index d0645402..1ab7c752 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,26 @@ # Changelog +## v1.4.396 (2026-01-30) + +### PR [#1975](https://github.com/danielmiessler/Fabric/pull/1975) by [koriyoshi2041](https://github.com/koriyoshi2041): feat: add suggest_moltbot_command pattern for Moltbot (formerly Clawdbot) CLI + +- Added new pattern for suggesting Moltbot CLI commands based on natural language intent +- Fixed multi-command output format inconsistency to preserve pipe-friendly behavior +- Updated all CLI references and command examples to use new `moltbot` binary name +- Added new dictionary words for VSCode spellcheck and fixed markdown table formatting + +### PR [#1978](https://github.com/danielmiessler/Fabric/pull/1978) by [ksylvan](https://github.com/ksylvan): chore: remove OAuth support from Anthropic client + +- Remove OAuth support from Anthropic client and delete related OAuth files +- Simplify configuration handling to check only API key instead of OAuth credentials +- Clean up imports and unused variables in anthropic.go +- Update server configuration methods to remove OAuth references +- Remove OAuth-related environment variables from configuration + +### Direct commits + +- Docs: fix ChangeLog snippet for PR 1975 + ## v1.4.395 (2026-01-25) ### PR [#1972](https://github.com/danielmiessler/Fabric/pull/1972) by [ksylvan](https://github.com/ksylvan): More node package updates: remove cn, fix string and request vulnerabilities diff --git a/cmd/fabric/version.go b/cmd/fabric/version.go index 6d45e3bf..1ac7ffc3 100644 --- a/cmd/fabric/version.go +++ b/cmd/fabric/version.go @@ -1,3 +1,3 @@ package main -var version = "v1.4.395" +var version = "v1.4.396" diff --git a/cmd/generate_changelog/changelog.db b/cmd/generate_changelog/changelog.db index afafbcea..007cb329 100644 Binary files a/cmd/generate_changelog/changelog.db and b/cmd/generate_changelog/changelog.db differ diff --git a/cmd/generate_changelog/incoming/1975.txt b/cmd/generate_changelog/incoming/1975.txt deleted file mode 100644 index 3856aec3..00000000 --- a/cmd/generate_changelog/incoming/1975.txt +++ /dev/null @@ -1,6 +0,0 @@ -### PR [#1975](https://github.com/danielmiessler/Fabric/pull/1975) by [koriyoshi2041](https://github.com/koriyoshi2041): feat: add suggest_moltbot_command pattern for Moltbot (formerly Clawdbot) CLI - -- Added new pattern for suggesting Moltbot CLI commands based on natural language intent -- Fixed multi-command output format inconsistency to preserve pipe-friendly behavior -- Updated all CLI references and command examples to use new `moltbot` binary name -- Added new dictionary words for VSCode spellcheck and fixed markdown table formatting diff --git a/cmd/generate_changelog/incoming/1978.txt b/cmd/generate_changelog/incoming/1978.txt deleted file mode 100644 index 3c4c0efb..00000000 --- a/cmd/generate_changelog/incoming/1978.txt +++ /dev/null @@ -1,7 +0,0 @@ -### PR [#1978](https://github.com/danielmiessler/Fabric/pull/1978) by [ksylvan](https://github.com/ksylvan): chore: remove OAuth support from Anthropic client - -- Remove OAuth support from Anthropic client and delete related OAuth files -- Simplify configuration handling to check only API key instead of OAuth credentials -- Clean up imports and unused variables in anthropic.go -- Update server configuration methods to remove OAuth references -- Remove OAuth-related environment variables from configuration diff --git a/nix/pkgs/fabric/version.nix b/nix/pkgs/fabric/version.nix index 67fa2a49..cc9e1ce9 100644 --- a/nix/pkgs/fabric/version.nix +++ b/nix/pkgs/fabric/version.nix @@ -1 +1 @@ -"1.4.395" +"1.4.396"