|
| 1 | +# Changelog |
| 2 | + |
| 3 | +All notable changes to Windows Telemetry Blocker are documented in this file. |
| 4 | + |
| 5 | +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). |
| 6 | + |
| 7 | +--- |
| 8 | + |
| 9 | +## [0.9] - 2026-01-24 |
| 10 | + |
| 11 | +### Added |
| 12 | +- **Safety Barriers System**: Comprehensive interrupt handling and recovery |
| 13 | + - Global state tracking for critical operations |
| 14 | + - Interrupt handler (trap) for Ctrl+C graceful shutdown |
| 15 | + - Cleanup task queue system with LIFO execution order |
| 16 | + - Emergency rollback procedures |
| 17 | + - Partial execution detection on launcher restart |
| 18 | + - State recovery and user guidance |
| 19 | + |
| 20 | +- **Enhanced Run.bat Launcher** (v1.0) |
| 21 | + - Execution state file tracking across sessions |
| 22 | + - Incomplete execution detection on startup |
| 23 | + - Recovery options (rollback, continue, exit) |
| 24 | + - Separate safety event logging |
| 25 | + - Confirmation prompts for destructive operations |
| 26 | + - Double confirmation for critical operations |
| 27 | + - Error code tracking and persistence |
| 28 | + |
| 29 | +- **Execution State Management** |
| 30 | + - Global operation tracking in PowerShell |
| 31 | + - Partial execution state storage |
| 32 | + - Removed apps tracking |
| 33 | + - Duration and error recording |
| 34 | + - Automatic cleanup task queuing |
| 35 | + |
| 36 | +- **Enhanced Logging** |
| 37 | + - Separate safety event log (telemetry-blocker-safety.log) |
| 38 | + - Execution state persistence |
| 39 | + - Timestamp tracking for all operations |
| 40 | + - Error code logging |
| 41 | + - Session start/end markers |
| 42 | + |
| 43 | +- **Apps Module Safety** |
| 44 | + - Removed apps tracking in global state |
| 45 | + - Interruption detection during removal |
| 46 | + - Removal count in completion messages |
| 47 | + - User guidance for manual reinstallation |
| 48 | + |
| 49 | +- **System Restore Point Safety** |
| 50 | + - Wrapped in critical operation handler |
| 51 | + - Automatic cleanup task registration |
| 52 | + - Graceful failure handling |
| 53 | + - User notification of restore point availability |
| 54 | + |
| 55 | +- **Documentation** |
| 56 | + - SAFETY_BARRIERS.md - Complete safety system documentation |
| 57 | + - Recovery procedures for all scenarios |
| 58 | + - Emergency manual recovery procedures |
| 59 | + - Testing recommendations |
| 60 | + - Configuration guide |
| 61 | + |
| 62 | +### Fixed |
| 63 | +- **Issue #18**: Fixed "param not recognized" error in apps.ps1 |
| 64 | + - Moved param() block to correct position (after comments, before dot-source) |
| 65 | + - Verified other modules have correct param() placement |
| 66 | + |
| 67 | +- **PowerShell Path Handling** |
| 68 | + - Added quotes around %PS_EXE% in all invocations |
| 69 | + - Handles paths with spaces (e.g., C:\Program Files) |
| 70 | + - Tested with custom PowerShell installations |
| 71 | + |
| 72 | +- **Admin Elevation** |
| 73 | + - Proper elevation flow before operations |
| 74 | + - Clear UAC prompt messaging |
| 75 | + - Elevation state verification |
| 76 | + |
| 77 | +### Changed |
| 78 | +- Version strings updated to 0.9 (production ready) |
| 79 | +- Removed "pending release" notes |
| 80 | +- Updated launcher to v1.0 (matches 0.9 release) |
| 81 | +- Menu descriptions enhanced with safety information |
| 82 | +- Error messages include recovery guidance |
| 83 | +- Log messages include operation context |
| 84 | + |
| 85 | +### Security |
| 86 | +- Safety barriers protect against interruption during operations |
| 87 | +- State recovery prevents partial modification corruption |
| 88 | +- Emergency cleanup ensures system consistency |
| 89 | +- Registry backups available for all changes |
| 90 | +- System restore points created before modifications |
| 91 | + |
| 92 | +### Documentation Updates |
| 93 | +- RELEASE_NOTES.md - Comprehensive v0.9 release documentation |
| 94 | +- SAFETY_BARRIERS.md - Complete implementation guide |
| 95 | +- README.md - Enhanced with feature descriptions |
| 96 | +- CHANGELOG.md - This file (new) |
| 97 | + |
| 98 | +--- |
| 99 | + |
| 100 | +## [0.8] - Pre-Release (Development) |
| 101 | + |
| 102 | +### Features |
| 103 | +- Core telemetry blocking functionality |
| 104 | +- Service disabling and management |
| 105 | +- App removal capabilities |
| 106 | +- Rollback system for most modules |
| 107 | +- Logging and reporting |
| 108 | +- DryRun/WhatIf testing mode |
| 109 | +- Module selection system |
| 110 | +- Registry backup |
| 111 | +- Auto-update capability |
| 112 | + |
| 113 | +### Notes |
| 114 | +- Pre-release version used for development and testing |
| 115 | +- Not recommended for production use |
| 116 | +- All features present but safety barriers incomplete |
| 117 | +- Documentation partial |
| 118 | + |
| 119 | +--- |
| 120 | + |
| 121 | +## Legend |
| 122 | + |
| 123 | +- **Added**: New features |
| 124 | +- **Changed**: Changes in existing functionality |
| 125 | +- **Deprecated**: Soon-to-be removed features |
| 126 | +- **Removed**: Removed features |
| 127 | +- **Fixed**: Bug fixes |
| 128 | +- **Security**: Security-related changes |
| 129 | +- **Documentation**: Documentation improvements |
| 130 | + |
| 131 | +--- |
| 132 | + |
| 133 | +## Versioning Scheme |
| 134 | + |
| 135 | +This project follows Semantic Versioning (MAJOR.MINOR.PATCH): |
| 136 | +- **MAJOR** (0): Significant releases, major feature additions |
| 137 | +- **MINOR** (9): Feature completeness, safety additions |
| 138 | +- **PATCH** (0): Bug fixes, minor improvements |
| 139 | + |
| 140 | +--- |
| 141 | + |
| 142 | +## How to Report Issues |
| 143 | + |
| 144 | +Found a bug or have a suggestion? Please report it: |
| 145 | +1. Check existing [Issues](https://github.com/N0tHorizon/WindowsTelemetryBlocker/issues) |
| 146 | +2. Create a new issue with detailed description |
| 147 | +3. Include logs from execution |
| 148 | +4. Specify Windows version and PowerShell version |
| 149 | +5. Mention steps to reproduce |
| 150 | + |
| 151 | +--- |
| 152 | + |
| 153 | +## Development |
| 154 | + |
| 155 | +For development roadmap and planned features, see [RELEASE_NOTES.md](RELEASE_NOTES.md) future roadmap section. |
| 156 | + |
| 157 | +--- |
| 158 | + |
| 159 | +**Last Updated**: 2026-01-24 |
| 160 | +**Current Version**: 0.9 |
0 commit comments