diff --git a/CHANGELOG.md b/CHANGELOG.md index 52ada6c3..41bf1a6e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## v1.4.373 (2026-01-04) + +### PR [#1914](https://github.com/danielmiessler/Fabric/pull/1914) by [majiayu000](https://github.com/majiayu000): feat(code_helper): add stdin support for piping file lists + +- Added stdin support for piping file lists to code_helper, enabling commands like `find . -name '*.go' | code_helper "instructions"` and `git ls-files '*.py' | code_helper "Add type hints"` +- Implemented automatic detection of stdin pipe mode with single argument (instructions) support +- Enhanced tool to read file paths from stdin line by line while maintaining backward compatibility with existing directory scanning functionality + +### PR [#1915](https://github.com/danielmiessler/Fabric/pull/1915) by [majiayu000](https://github.com/majiayu000): feat: parallelize audio chunk transcription for improved performance + +- Parallelize audio chunk transcription using goroutines for improved performance + ## v1.4.372 (2026-01-04) ### PR [#1913](https://github.com/danielmiessler/Fabric/pull/1913) by [majiayu000](https://github.com/majiayu000): fix: REST API /chat endpoint doesn't pass 'search' parameter to ChatOptions diff --git a/cmd/fabric/version.go b/cmd/fabric/version.go index 82d17786..b965ff37 100644 --- a/cmd/fabric/version.go +++ b/cmd/fabric/version.go @@ -1,3 +1,3 @@ package main -var version = "v1.4.372" +var version = "v1.4.373" diff --git a/cmd/generate_changelog/changelog.db b/cmd/generate_changelog/changelog.db index f70ebdc6..1d0d57d0 100644 Binary files a/cmd/generate_changelog/changelog.db and b/cmd/generate_changelog/changelog.db differ diff --git a/cmd/generate_changelog/incoming/1914.txt b/cmd/generate_changelog/incoming/1914.txt deleted file mode 100644 index 11d779ff..00000000 --- a/cmd/generate_changelog/incoming/1914.txt +++ /dev/null @@ -1,5 +0,0 @@ -### PR [#1914](https://github.com/danielmiessler/Fabric/pull/1914) by [majiayu000](https://github.com/majiayu000): feat(code_helper): add stdin support for piping file lists - -- Added stdin support for piping file lists to code_helper, enabling commands like `find . -name '*.go' | code_helper "instructions"` and `git ls-files '*.py' | code_helper "Add type hints"` -- Implemented automatic detection of stdin pipe mode with single argument (instructions) support -- Enhanced tool to read file paths from stdin line by line while maintaining backward compatibility with existing directory scanning functionality diff --git a/cmd/generate_changelog/incoming/1915.txt b/cmd/generate_changelog/incoming/1915.txt deleted file mode 100644 index 564e7eb6..00000000 --- a/cmd/generate_changelog/incoming/1915.txt +++ /dev/null @@ -1,3 +0,0 @@ -### PR [#1915](https://github.com/danielmiessler/Fabric/pull/1915) by [majiayu000](https://github.com/majiayu000): feat: parallelize audio chunk transcription for improved performance - -- Parallelize audio chunk transcription using goroutines for improved performance diff --git a/nix/pkgs/fabric/version.nix b/nix/pkgs/fabric/version.nix index fa0dd28a..9c2d34a9 100644 --- a/nix/pkgs/fabric/version.nix +++ b/nix/pkgs/fabric/version.nix @@ -1 +1 @@ -"1.4.372" +"1.4.373"