Skip to content

Commit 3d17279

Browse files
committed
Fixes #4154 adds missing arg
1 parent 94adf83 commit 3d17279

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,17 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
2525

2626
### Fixed
2727

28-
- Fixes GitLens gets stuck after rebase ([#4078](https://github.com/gitkraken/vscode-gitlens/issues/4078))
2928
- Fixes Bitbucket Server remote - "scm/" path prefix not removed (regression) ([#3218](https://github.com/gitkraken/vscode-gitlens/issues/3218))
3029
- Fixes avoid eagerly getting "full" commit details for inline blame ([#4115])(https://github.com/gitkraken/vscode-gitlens/issues/4115))
3130
- Fixes large commit messages work poorly on Commit Graph ([#4100](https://github.com/gitkraken/vscode-gitlens/issues/4100))
3231
- Fixes _Show \* View_ commands fail intermittently ([#4127](https://github.com/gitkraken/vscode-gitlens/issues/4127))
32+
- Load more not working on incoming changes in Commits/Repositories views ([#4154](https://github.com/gitkraken/vscode-gitlens/issues/4154))
33+
34+
## [16.3.3] - 2025-03-13
35+
36+
### Fixed
37+
38+
- Fixes GitLens gets stuck after rebase ([#4078](https://github.com/gitkraken/vscode-gitlens/issues/4078))
3339

3440
## [16.3.2] - 2025-02-21
3541

src/env/node/git/sub-providers/commits.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -451,12 +451,12 @@ export class CommitsGitSubProvider implements GitCommitsSubProvider {
451451
if (log != null) {
452452
log.query = (limit: number | undefined) => this.getLog(repoPath, rev, { ...options, limit: limit });
453453
if (log.hasMore) {
454-
let opts;
454+
let opts: Omit<typeof options, 'extraArgs'> | undefined;
455455
if (options != null) {
456456
let _;
457457
({ extraArgs: _, ...opts } = options);
458458
}
459-
log.more = this.getLogMoreFn(log, opts);
459+
log.more = this.getLogMoreFn(log, rev, opts);
460460
}
461461
}
462462

0 commit comments

Comments
 (0)