|
1 | 1 | # CHANGELOG |
2 | 2 |
|
3 | 3 |
|
| 4 | +## v2.1.0 (2026-06-15) |
| 5 | + |
| 6 | +### Bug Fixes |
| 7 | + |
| 8 | +- Skip commit when no generated file changes exist |
| 9 | + ([`f9e894f`](https://github.com/UseTheFork/byte/commit/f9e894f8284835175b1064773b6cce492bcb9021)) |
| 10 | + |
| 11 | +- Check for staged changes using git diff --cached --quiet before attempting to commit generated |
| 12 | + files - If no staged changes exist, print informational message and skip commit instead of failing |
| 13 | + - Prevents release script from aborting when generated docs and models have not changed since last |
| 14 | + commit - This is the expected case when releasing without documentation or model updates |
| 15 | + |
| 16 | +### Build System |
| 17 | + |
| 18 | +- Convert release workflows to workflow_call and add local release script |
| 19 | + ([`ec38919`](https://github.com/UseTheFork/byte/commit/ec38919e65c24e9beee668b3d72c74d11c110dde)) |
| 20 | + |
| 21 | +- Convert prepare-release.yml and release.yml from push triggers to workflow_call for manual |
| 22 | + invocation - Add src/scripts/release.py for local release automation: documentation generation, |
| 23 | + git staging/committing, semantic versioning, GitHub release creation, and PyPI publishing - Add |
| 24 | + site/ to .gitignore to exclude MkDocs build output - Standardize whitespace formatting in workflow |
| 25 | + files |
| 26 | + |
| 27 | +### Documentation |
| 28 | + |
| 29 | +- Document available gateway notifications in the-gateway.md |
| 30 | + ([`ab076ad`](https://github.com/UseTheFork/byte/commit/ab076ad780090609da3fd36e303b8bff881afca8)) |
| 31 | + |
| 32 | +- Add 'Available Notifications' section documenting all six push notifications sent by the gateway - |
| 33 | + Include messages/response, messages/update_files, messages/update_context, |
| 34 | + messages/command_execution_started, messages/command_execution_completed, and messages/status - |
| 35 | + Each notification entry documents parameters and behavior following the existing gateway-requests |
| 36 | + style - Notifications section placed immediately after 'Available Requests' for logical |
| 37 | + documentation flow |
| 38 | + |
| 39 | +### Features |
| 40 | + |
| 41 | +- Refactor gateway event notifications to messages namespace and add new event types |
| 42 | + ([`32569b3`](https://github.com/UseTheFork/byte/commit/32569b3395c650b006caf720be1f38e73e4a1358)) |
| 43 | + |
| 44 | +- Rename notification channels from stream/* to messages/* for consistent messaging architecture - |
| 45 | + Add CommandExecutionStarted, UpdateFiles, and UpdateContext message handlers - Remove deprecated |
| 46 | + ToolResponse message type from event dispatcher - Update docs/index.md with comprehensive landing |
| 47 | + page content covering core principles, quick start guides, and inspirations - Enhance README.md |
| 48 | + tagline with branded ASCII art styling |
| 49 | + |
| 50 | + |
4 | 51 | ## v2.0.0 (2026-06-15) |
5 | 52 |
|
6 | 53 | ### Bug Fixes |
|
0 commit comments