diff --git a/CHANGELOG.md b/CHANGELOG.md index 47cc6589..69a05a00 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## v1.4.342 (2025-12-13) + +### PR [#1866](https://github.com/danielmiessler/Fabric/pull/1866) by [ksylvan](https://github.com/ksylvan): fix: write CLI and streaming errors to stderr + +- Fix: write CLI and streaming errors to stderr +- Route CLI execution errors to standard error output +- Print Anthropic stream errors to stderr consistently +- Add os import to support stderr error writes +- Preserve help-output suppression and exit behavior + ## v1.4.341 (2025-12-10) ### PR [#1860](https://github.com/danielmiessler/Fabric/pull/1860) by [ksylvan](https://github.com/ksylvan): fix: allow resetting required settings without validation errors diff --git a/cmd/fabric/version.go b/cmd/fabric/version.go index 00009af5..eb2acdb4 100644 --- a/cmd/fabric/version.go +++ b/cmd/fabric/version.go @@ -1,3 +1,3 @@ package main -var version = "v1.4.341" +var version = "v1.4.342" diff --git a/cmd/generate_changelog/changelog.db b/cmd/generate_changelog/changelog.db index 3d98bfcd..ff8b91a3 100644 Binary files a/cmd/generate_changelog/changelog.db and b/cmd/generate_changelog/changelog.db differ diff --git a/cmd/generate_changelog/incoming/1866.txt b/cmd/generate_changelog/incoming/1866.txt deleted file mode 100644 index fe6052ed..00000000 --- a/cmd/generate_changelog/incoming/1866.txt +++ /dev/null @@ -1,7 +0,0 @@ -### PR [#1866](https://github.com/danielmiessler/Fabric/pull/1866) by [ksylvan](https://github.com/ksylvan): fix: write CLI and streaming errors to stderr - -- Fix: write CLI and streaming errors to stderr -- Route CLI execution errors to standard error output -- Print Anthropic stream errors to stderr consistently -- Add os import to support stderr error writes -- Preserve help-output suppression and exit behavior diff --git a/nix/pkgs/fabric/version.nix b/nix/pkgs/fabric/version.nix index 1ac637e7..b056d924 100644 --- a/nix/pkgs/fabric/version.nix +++ b/nix/pkgs/fabric/version.nix @@ -1 +1 @@ -"1.4.341" +"1.4.342"