diff --git a/CHANGELOG.md b/CHANGELOG.md index c4d00911..c2b1756a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog +## v1.4.263 (2025-07-21) + +### PR [#1640](https://github.com/danielmiessler/Fabric/pull/1640) by [ksylvan](https://github.com/ksylvan): Implement Automated Changelog System for CI/CD Integration + +- Add automated changelog processing for CI/CD integration with comprehensive test coverage and GitHub client validation methods +- Implement release aggregation for incoming files with git operations for staging changes and support for version detection from nix files +- Change push behavior from opt-out to opt-in with GitHub token authentication and automatic repository detection +- Enhance changelog generation to avoid duplicate commit entries by extracting PR numbers and filtering commits already included via PR files +- Add version parameter requirement for PR processing with commit SHA tracking to prevent duplicate entries and improve formatting consistency + +### PR [#1641](https://github.com/danielmiessler/Fabric/pull/1641) by [ksylvan](https://github.com/ksylvan): Fix Fabric Web timeout error + +- Chore: extend proxy timeout in `vite.config.ts` to 15 minutes +- Increase `/api` proxy timeout to 900,000 ms +- Increase `/names` proxy timeout to 900,000 ms + + ## v1.4.262 (2025-07-21) ### PR [#1640](https://github.com/danielmiessler/Fabric/pull/1640) by [ksylvan](https://github.com/ksylvan): Implement Automated Changelog System for CI/CD Integration diff --git a/cmd/fabric/version.go b/cmd/fabric/version.go index f7763743..fc912926 100644 --- a/cmd/fabric/version.go +++ b/cmd/fabric/version.go @@ -1,3 +1,3 @@ package main -var version = "v1.4.262" +var version = "v1.4.263" diff --git a/cmd/generate_changelog/changelog.db b/cmd/generate_changelog/changelog.db index 2eea20d6..eaab032b 100644 Binary files a/cmd/generate_changelog/changelog.db and b/cmd/generate_changelog/changelog.db differ diff --git a/nix/pkgs/fabric/version.nix b/nix/pkgs/fabric/version.nix index c30af82c..af8e4f61 100644 --- a/nix/pkgs/fabric/version.nix +++ b/nix/pkgs/fabric/version.nix @@ -1 +1 @@ -"1.4.262" +"1.4.263"