|
| 1 | +# Changelog |
| 2 | + |
| 3 | +All notable changes to this project will be documented in this file. |
| 4 | + |
| 5 | +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), |
| 6 | +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). |
| 7 | + |
| 8 | +## [2.0.0] - 2024-01-15 |
| 9 | + |
| 10 | +### Added |
| 11 | +- Complete project restructure with modern .NET architecture |
| 12 | +- Modular code organization (Models, Services, Interfaces, CLI) |
| 13 | +- Priority system (1-5 levels) for tasks |
| 14 | +- Tag support for better task organization |
| 15 | +- Due date tracking for tasks |
| 16 | +- Task completion status |
| 17 | +- Search functionality across descriptions and tags |
| 18 | +- Statistics and reporting features |
| 19 | + - Overall task statistics |
| 20 | + - Tasks by priority breakdown |
| 21 | + - Tasks by tag analysis |
| 22 | + - Overdue task tracking |
| 23 | + - Upcoming task notifications |
| 24 | +- Export functionality |
| 25 | + - Export to CSV format |
| 26 | + - Export to Markdown format |
| 27 | + - Export to JSON format |
| 28 | + - Import from JSON format |
| 29 | +- Configuration file support (appsettings.json) |
| 30 | +- Comprehensive unit tests with xUnit |
| 31 | + - Service layer tests |
| 32 | + - Integration tests |
| 33 | + - Export/Import tests |
| 34 | + - Statistics tests |
| 35 | +- Docker support |
| 36 | + - Dockerfile for containerized deployment |
| 37 | + - docker-compose.yml for development |
| 38 | + - .dockerignore for optimized builds |
| 39 | +- VSCode integration |
| 40 | + - tasks.json for common operations |
| 41 | + - launch.json for debugging |
| 42 | + - settings.json for editor configuration |
| 43 | + - recommended extensions |
| 44 | +- GitHub Actions CI/CD pipeline |
| 45 | + - Automated testing |
| 46 | + - Code coverage reporting |
| 47 | + - Multi-platform builds (Linux, Windows, macOS) |
| 48 | +- Build automation scripts |
| 49 | + - build.sh for Linux/macOS |
| 50 | + - build.cmd for Windows |
| 51 | +- Comprehensive documentation |
| 52 | + - Enhanced README with examples |
| 53 | + - CONTRIBUTING guidelines |
| 54 | + - ARCHITECTURE documentation |
| 55 | + - EXAMPLES with usage scenarios |
| 56 | +- EditorConfig for consistent code style |
| 57 | +- Dependency injection throughout the application |
| 58 | +- Structured logging with Microsoft.Extensions.Logging |
| 59 | +- Async/await for all I/O operations |
| 60 | + |
| 61 | +### Changed |
| 62 | +- Migrated from single file to proper .NET solution structure |
| 63 | +- Task model enhanced with additional properties |
| 64 | +- File-based storage improved with async operations |
| 65 | +- Command-line interface redesigned with better UX |
| 66 | +- Error handling and validation improved |
| 67 | +- Updated .gitignore for .NET projects |
| 68 | + |
| 69 | +### Technical Improvements |
| 70 | +- Implemented SOLID principles |
| 71 | +- Interface-based design for testability |
| 72 | +- Comprehensive error handling |
| 73 | +- Input validation at all layers |
| 74 | +- Nullable reference types enabled |
| 75 | +- XML documentation comments throughout |
| 76 | + |
| 77 | +## [1.0.0] - 2024-01-01 |
| 78 | + |
| 79 | +### Added |
| 80 | +- Initial release |
| 81 | +- Basic task management (add, list, remove) |
| 82 | +- JSON file storage |
| 83 | +- Simple command-line interface |
| 84 | +- MIT License |
| 85 | + |
| 86 | +### Features |
| 87 | +- Add tasks with descriptions |
| 88 | +- List all tasks |
| 89 | +- Remove tasks by ID |
| 90 | +- Persistent storage in tasks.json |
| 91 | + |
| 92 | +--- |
| 93 | + |
| 94 | +## Upcoming Features |
| 95 | + |
| 96 | +### [2.1.0] - Planned |
| 97 | +- Enhanced CLI output with Spectre.Console |
| 98 | + - Color-coded task display |
| 99 | + - Interactive task selection |
| 100 | + - Progress bars for operations |
| 101 | + - Rich tables for task lists |
| 102 | +- Task categories/projects |
| 103 | +- Recurring tasks support |
| 104 | +- Task notes and comments |
| 105 | +- Task history and audit log |
| 106 | + |
| 107 | +### [2.2.0] - Planned |
| 108 | +- Web API for remote access |
| 109 | +- RESTful endpoints |
| 110 | +- Authentication and authorization |
| 111 | +- Cloud storage integration |
| 112 | +- Multi-user support |
| 113 | + |
| 114 | +### [3.0.0] - Future |
| 115 | +- Database backend (SQLite/PostgreSQL) |
| 116 | +- Web interface |
| 117 | +- Mobile companion app |
| 118 | +- Real-time synchronization |
| 119 | +- Team collaboration features |
| 120 | +- Task dependencies |
| 121 | +- Gantt chart visualization |
| 122 | +- Calendar integration |
| 123 | +- Email notifications |
| 124 | +- Task templates library |
| 125 | + |
| 126 | +--- |
| 127 | + |
| 128 | +## Migration Guide |
| 129 | + |
| 130 | +### Upgrading from 1.0.0 to 2.0.0 |
| 131 | + |
| 132 | +Your existing `tasks.json` file will need to be migrated to include new fields: |
| 133 | + |
| 134 | +**Old format (1.0.0):** |
| 135 | +```json |
| 136 | +[ |
| 137 | + { |
| 138 | + "Id": 1, |
| 139 | + "Description": "Sample task" |
| 140 | + } |
| 141 | +] |
| 142 | +``` |
| 143 | + |
| 144 | +**New format (2.0.0):** |
| 145 | +```json |
| 146 | +[ |
| 147 | + { |
| 148 | + "Id": 1, |
| 149 | + "Description": "Sample task", |
| 150 | + "IsCompleted": false, |
| 151 | + "Priority": 3, |
| 152 | + "CreatedAt": "2024-01-01T10:00:00Z", |
| 153 | + "DueDate": null, |
| 154 | + "Tags": [] |
| 155 | + } |
| 156 | +] |
| 157 | +``` |
| 158 | + |
| 159 | +**Migration steps:** |
| 160 | +1. Backup your existing `tasks.json` file |
| 161 | +2. The application will automatically add default values for new fields |
| 162 | +3. Update tasks with priorities and tags as needed |
| 163 | + |
| 164 | +--- |
| 165 | + |
| 166 | +## Breaking Changes |
| 167 | + |
| 168 | +### Version 2.0.0 |
| 169 | +- **File Structure**: Solution restructured, source moved to `src/` directory |
| 170 | +- **Build Process**: Now requires .NET 8 SDK |
| 171 | +- **Command Output**: Format changed for better readability |
| 172 | +- **Configuration**: Now supports appsettings.json for configuration |
| 173 | + |
| 174 | +--- |
| 175 | + |
| 176 | +## Contributors |
| 177 | + |
| 178 | +- Task Manager Team |
| 179 | +- Code for Good Community |
| 180 | + |
| 181 | +For detailed contribution guidelines, see [CONTRIBUTING.md](CONTRIBUTING.md). |
| 182 | + |
| 183 | +--- |
| 184 | + |
| 185 | +## Support |
| 186 | + |
| 187 | +- **Issues**: [GitHub Issues](https://github.com/codeforgood-org/dotnet-task-manager/issues) |
| 188 | +- **Discussions**: [GitHub Discussions](https://github.com/codeforgood-org/dotnet-task-manager/discussions) |
| 189 | +- **Documentation**: See [README.md](README.md) and [docs/](docs/) |
0 commit comments