diff --git a/CHANGELOG.md b/CHANGELOG.md index 316500e3..ae0ea653 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # Changelog +## v1.4.446 (2026-04-15) + +### PR [#2093](https://github.com/danielmiessler/Fabric/pull/2093) by [alecjmckanna](https://github.com/alecjmckanna): feat: add --readpattern flag to print pattern contents to terminal + +- Adds a new `--readpattern ` CLI flag that prints the raw contents of a named pattern's `system.md` file to stdout, making it easy to inspect a pattern's instructions without navigating the filesystem manually. +- Custom pattern directories are respected: the user's custom patterns directory is checked first before falling back to the main patterns directory, consistent with all other pattern lookups. + +### Direct commits + +- Docs: update Docker config mount path for appuser + +- Replace container config mount path from root to appuser +- Align setup example with non-root container home directory + +- Align pattern usage example with appuser config location +- Align REST API example with updated config mount target + +- Update English and Chinese README Docker instructions consistently + ## v1.4.445 (2026-04-13) ### PR [#2091](https://github.com/danielmiessler/Fabric/pull/2091) by [jimscard](https://github.com/jimscard) and [ksylvan](https://github.com/ksylvan): Update Dockerfile for best practices and critical CVE fixes diff --git a/cmd/fabric/version.go b/cmd/fabric/version.go index 9bfd1410..82fef873 100644 --- a/cmd/fabric/version.go +++ b/cmd/fabric/version.go @@ -1,3 +1,3 @@ package main -var version = "v1.4.445" +var version = "v1.4.446" diff --git a/cmd/generate_changelog/changelog.db b/cmd/generate_changelog/changelog.db index 2a6be4bf..2635f184 100644 Binary files a/cmd/generate_changelog/changelog.db and b/cmd/generate_changelog/changelog.db differ diff --git a/cmd/generate_changelog/incoming/2093.txt b/cmd/generate_changelog/incoming/2093.txt deleted file mode 100644 index 1a1915b3..00000000 --- a/cmd/generate_changelog/incoming/2093.txt +++ /dev/null @@ -1,4 +0,0 @@ -### PR [#2093](https://github.com/danielmiessler/Fabric/pull/2093) by [alecjmckanna](https://github.com/alecjmckanna): feat: add --readpattern flag to print pattern contents to terminal - -- Adds a new `--readpattern ` CLI flag that prints the raw contents of a named pattern's `system.md` file to stdout, making it easy to inspect a pattern's instructions without navigating the filesystem manually. -- Custom pattern directories are respected: the user's custom patterns directory is checked first before falling back to the main patterns directory, consistent with all other pattern lookups. diff --git a/nix/pkgs/fabric/version.nix b/nix/pkgs/fabric/version.nix index 9b6cdeee..f91ee5b3 100644 --- a/nix/pkgs/fabric/version.nix +++ b/nix/pkgs/fabric/version.nix @@ -1 +1 @@ -"1.4.445" +"1.4.446"