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
chore: bump version to 0.26.9 and update changelog
- Update version from 0.26.8 to 0.26.9
- Add changelog entry for GitHub remote detection fix and code scanning fixes
Co-authored-by: Cursor <[email protected]>
Copy file name to clipboardExpand all lines: CHANGELOG.md
+17Lines changed: 17 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,23 @@ All notable changes to this project will be documented in this file.
9
9
10
10
---
11
11
12
+
## [0.26.9] - 2026-01-27
13
+
14
+
### Fixed (0.26.9)
15
+
16
+
-**GitHub Remote Detection**: Extended URL pattern matching to support all valid GitHub URL formats
17
+
-**Added Support**: Now detects `ssh://[email protected]/owner/repo.git` and `git://github.com/owner/repo.git` formats
18
+
-**Root Cause**: Previous regex only matched `https?://` and scp-style `git@host:path` URLs, causing regression for repos using `ssh://` or `git://` schemes
19
+
-**Solution**: Extended regex pattern to include `ssh://` and `git://` schemes, with proper URL parsing for hostname validation
20
+
-**Impact**: All valid GitHub URL formats are now properly detected, ensuring GitHub adapter is selected correctly
21
+
22
+
-**Code Scanning Vulnerabilities**: Mitigated all 13 code scanning findings
23
+
-**ReDoS Fix**: Replaced regex-based section removal with line-by-line processing in `github_mapper.py`
24
+
-**URL Sanitization**: Replaced substring matching with proper URL parsing using `urllib.parse.urlparse()` in multiple files
25
+
-**Workflow Permissions**: Added explicit `permissions: contents: read` blocks to 7 GitHub Actions jobs
26
+
-**SSH Host Aliases**: Added support for `ssh.github.com` SSH host alias detection
27
+
-**Test Fixes**: Fixed async cleanup issues in test mode for progress display utilities
0 commit comments