You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Repo audit cleanup, dead code removal, doc fixes (v0.4.5)
- Remove dead code: Get-ProcessParentId, Get-ProcessCommandLine, unused
$maxPenalty, unused $Color param in CI Write-SummaryLine
- Remove unreachable whitelist guard in Check-Processes.ps1
- Add TrustedAppDirs and Suppressions defaults to Get-DefaultConfig
- Track fix-bom.ps1 (was gitignored but referenced by docs/pre-commit)
- Update fix-bom.ps1 to use $PSScriptRoot instead of hardcoded path
- Fix README CI JSON example: add suppressed key, correct version
- Add 0.4.x to SECURITY.md supported versions
Made-with: Cursor
Copy file name to clipboardExpand all lines: CHANGELOG.md
+12Lines changed: 12 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,18 @@ All notable changes to this project will be documented in this file.
4
4
5
5
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
6
6
7
+
## [0.4.5] - 2026-03-15
8
+
9
+
### Fixed
10
+
-**README CI JSON example** -- updated to include `suppressed` key and correct version
11
+
-**SECURITY.md** -- added 0.4.x to supported versions table
12
+
-**Dead code cleanup** -- removed unused `Get-ProcessParentId`, `Get-ProcessCommandLine` from Helpers.ps1, unused `$maxPenalty` from ReportGenerator.ps1, unused `$Color` parameter from CI summary writer
13
+
-**Redundant guard in Check-Processes.ps1** -- removed unreachable `System32 + whitelist` check (already handled by earlier whitelist guard)
14
+
-**`Get-DefaultConfig` missing fields** -- added `TrustedAppDirs` and `Suppressions` defaults so configless runs don't silently skip filtering
15
+
16
+
### Changed
17
+
-**`fix-bom.ps1` now tracked** -- removed from `.gitignore` and updated to use `$PSScriptRoot` instead of hardcoded path; new clones now include the BOM-fix utility referenced by the pre-commit hook and CONTRIBUTING.md
0 commit comments