mirror of
https://github.com/sourcebot-dev/sourcebot.git
synced 2025-12-11 20:05:25 +00:00
Add temporal filtering capabilities for searches by git branch/revision and repository index dates (since/until). Integrates with the refactored QueryIR-based search architecture. - Add gitRevision, since, until parameters to SearchOptions - Implement temporal repo filtering by indexedAt field - Add branch filtering via QueryIR wrapper - Add search_commits MCP tool for commit-based searches - Update list_repos with activeAfter/activeBefore filtering - Add 88 new tests (all passing) Signed-off-by: Wayne Sun <gsun@redhat.com>
3.6 KiB
3.6 KiB
Changelog
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
[Unreleased]
Added
- Added comprehensive relative date support for all temporal parameters (e.g., "30 days ago", "last week", "yesterday")
- Added
search_commitstool to search commits by actual commit time with full temporal filtering. Accepts both numeric database IDs (e.g., 123) and string repository names (e.g., "github.com/owner/repo") for therepoIdparameter, allowing direct use of repository names fromlist_reposoutput - Added
since/untilparameters tosearch_code(filters by index time - when Sourcebot indexed the repo) - Added
gitRevisionparameter tosearch_code - Added
activeAfter/activeBeforeparameters tolist_repos(filters by index time - when Sourcebot indexed the repo) - Added date range validation to prevent invalid date ranges (since > until)
- Added 30-second timeout for git operations to handle large repositories
- Added enhanced error messages for git operations (timeout, repository not found, invalid git repository, ambiguous arguments)
- Added clarification that repositories must be cloned on Sourcebot server disk for
search_commitsto work - Added comprehensive temporal parameter documentation to README with clear distinction between index time and commit time filtering
- Added comprehensive unit tests for date parsing utilities (90+ test cases)
- Added unit tests for git commit search functionality with mocking
- Added integration tests for temporal parameter validation
- Added unit tests for repository identifier resolution (both string and number types)
[1.0.11] - 2025-12-03
Changed
- Updated API client to match the latest Sourcebot release. #652
[1.0.10] - 2025-11-24
Changed
- Updated API client to match the latest Sourcebot release. #555
[1.0.9] - 2025-11-17
Added
- Added pagination and filtering to
list_repostool to handle large repository lists efficiently and prevent oversized responses that waste token context. #614
[1.0.8] - 2025-11-10
Fixed
- Fixed issue where search results exceeding token limits would be completely discarded instead of returning truncated content. #604
[1.0.7] - 2025-10-28
Changed
- Updated API client to match the latest Sourcebot release. #555
[1.0.6] - 2025-09-26
Fixed
- Fix
linkedConnections is requiredschema error.
[1.0.5] - 2025-09-15
Changed
- Updated API client to match the latest Sourcebot release. #356
[1.0.4] - 2025-08-04
Fixed
- Fixed issue where console logs were resulting in "unexpected token" errors on the MCP client. #429
[1.0.3] - 2025-06-18
Changed
- Updated API client to match the latest Sourcebot release. #356
[1.0.2] - 2025-05-28
Changed
- Added API key support. #311
[1.0.1] - 2025-05-15
Changed
- Updated API client to match the latest Sourcebot release. #307
[1.0.0] - 2025-05-07
Added
- Initial release